/* Your original styles, plus new section styles */
* {
    
   
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9; /* Consistent light background */
    color: #333;
    line-height: 1.6;
}


/* --- Hide elements initially before animation --- */
    .scroll-animate-item {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}



/* --- NEW Section Styling for better presentation with animations --- */
.header-section {
    background-image: url(../../images/back1.jpg);
    padding: 100px ;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 10px;
    border-bottom: 1px solid #eee;
}
.header-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.header-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.about-section, .vision-mission-section, .why-choose-us-section, .cta-section {
    padding: 60px 0;
    border-radius: 10px;
    background-color: #fff; /* White background for content sections */
    border-bottom: 1px solid #f0f0f0;
}
.about-section:last-of-type, .vision-mission-section:last-of-type, .why-choose-us-section:last-of-type {
    border-bottom: none;
}

.about-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

h2 { /* Apply to main section titles */
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}
h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 70px;
    height: 3px;
    background-color: #ED9455; /* Your original orange accent */
    border-radius: 2px;
}
.section-title { /* For the h2 tags in sections like "Our Vision & Mission" */
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    color: #333;
    font-weight: 700;
}
.section-title::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    background-color: #ED9455; /* Your original orange accent */
    margin: 15px auto 0;
    border-radius: 3px;
}

.feature-icon {
    font-size: 2.8rem;
    color: #ED9455; /* Use your orange accent for icons */
    margin-bottom: 15px;
}
.feature-box {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background-color: #fefefe;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.feature-box:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.feature-box h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-box p {
    font-size: 0.95em;
    color: #666;
}

.img-fluid-custom {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Call to Action Section - Using your accent color */
.cta-section {
    margin-top: 10px;
    background-color: #ED9455; /* Your orange accent color */
    color: #fff;
    text-align: center;
    padding: 50px 0;
}
.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 25px;
}
.cta-section h2::after {
    background-color: #fff; /* White underline on accent background */
}
.cta-section .btn-cta { /* Custom class for CTA buttons */
    background-color: #fff;
    color: #ED9455;
    border: 2px solid #fff;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0 10px; /* Spacing between buttons */
}
.cta-section .btn-cta:hover {
    background-color: #f0f0f0;
    color: #c07a3c;
}
.cta-section .btn-outline-cta { /* Custom class for outline CTA button */
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.cta-section .btn-outline-cta:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }
    #navbar ul {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
    #navbar li {
        margin: 5px 0;
    }
    .header-section h1 {
        font-size: 2.5rem;
    }
    .header-section p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
}