/* Start custom CSS for html, class: .elementor-element-5770e97 *//* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 0;
    background: url('https://fctb.org.bd/wp-content/uploads/2024/01/hero-background.jpg') no-repeat center/cover;
}

.hero-section h1 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 20px;
}

.hero-section h4 {
    color: #2d3073;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
}

.hero-section img {
    display: block;
    margin: 0 auto;
}

/* Description Section */
.description-section {
    padding: 20px 0;
    background-color: #f4f7f9;
}

.description-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
}

/* Reusable Section Styling */
section {
    padding: 20px 0;
}

section:nth-child(odd) {
    background-color: #f4f7f9;
}

section h3 {
    color: #f22233;
    font-size: 24px;
    margin-bottom: 15px;
}

section ul {
    text-align: left;
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    list-style: none;
    padding-left: 20px;
}

section ul li strong {
    color: #0e7331;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background-color: #0e7331;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f22233;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    background-color: #0e7331;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section a,
.email-section a {
    color: #2d3073;
    text-decoration: none;
}

.contact-section a:hover,
.email-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .hero-section h4 {
        font-size: 18px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-52fe95bc *//* CSS Animation for Blinking and Color Shifting */
@keyframes blinkColor {
    0% { color: #f22233; }
    25% { color: #2d3073; }
    50% { color: #0e7331; }
    75% { color: #f22233; }
    100% { color: #2d3073; }
}

.blinking-text {
    animation: blinkColor 2s infinite;
}

/* CTA Button Styling */
.cta-btn {
    padding: 15px 30px;
    background-color: #f22233;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0; /* Removed roundness */
}

.cta-btn:hover {
    background-color: #0e7331;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
section {
    padding: 40px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0; /* Removed roundness */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .hero-section h4 {
        font-size: 18px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}/* End custom CSS */