:root {
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --dark-green: #0A4D00;
    --light-bg: #F9F9F9;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--green) 100%);
   padding: 60px 0px;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    z-index: -3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
} */

.hero-title {
    font-size: 34px;
    color: #093f02;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
}

.hero-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid var(--white);
    outline: 2px solid var(--saffron);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.bring-services-btn {
    background-color: var(--green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--green);
}

.bring-services-btn:hover {
    color: var(--saffron);
    background: var(--white);
}

/* About Section */
.about-sec {
    padding: 60px 0;
}

.about-sec .ceo-img {
    border-radius: 50%;
    background: #9e9e9e0d;
    width: 444px;
    max-width: 100%;
}

.about-sec .ceo-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.about-sec .ceo-details h3 {
    color: var(--saffron);
    position: relative;
    font-size: 20px;
}

.about-sec .section-heading {
    color: var(--saffron);
    margin-bottom: 54px;
    font-size: 2.5rem;
}

.about-sec .section-heading span {
    color: var(--green);
}

.about-sec .ceo-details h3::before {
    position: absolute;
    content: " ";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: var(--green);
    bottom: 30%;
    left: -3%;
}

.about-sec .about h3 {
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--dark-green);
}

.about-sec .about p {
    font-size: 20px;
}



/* Mission & Vision */
.mission-vision-section {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.mv-card {
    background: var(--white);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid var(--green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mv-card.mission {
    border-top-color: var(--saffron);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.mv-icon.mission {
    background: linear-gradient(135deg, var(--saffron) 0%, #FF7722 100%);
}

.mv-icon.vision {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background-color: var(--white);
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--saffron);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 24px 0;
    background: #9e9e9e1f;
}

.join-us {
    border-radius: 8px;
    display: flex;
    padding: 20px 0;
    color: var(--white);
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(201deg, var(--dark-green), var(--green));
}

.join-us h2 {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0;
}

.contact-section .register-btn a {
    color: var(--white);
    background: var(--saffron);
    padding: 10px 15px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid var(--saffron);
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.contact-section .register-btn a:hover {
    background: #ffffff0d;
    color: var(--white);
}

.contact-section .register-btn a i {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}
.faq-section h2{
    font-size: 38px;
}

.faq-section .accordion {
    background-color: transparent;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    background: var(--white);
    border-radius: 10px;
}

.accordion-button {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--saffron) 0%, #FF7722 100%);
    border: 2px solid var(--green);
    border-radius: 10px !important;
    padding: 18px 24px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--saffron) 0%, #FF7722 100%);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--green);
}

.accordion-body {
    background: var(--light-bg);
    border-radius: 0 0 10px 10px;
    color: var(--text-dark);
    padding: 20px;
    font-size: 1rem;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

/* Utility Classes */
.text-saffron {
    color: var(--saffron);
}

.text-green {
    color: var(--green);
}

.bg-saffron {
    background-color: var(--saffron);
}

.bg-green {
    background-color: var(--green);
}

.border-saffron {
    border-color: var(--saffron);
}

.border-green {
    border-color: var(--green);
}

.text-muted {
    color: #6c757d;
}

/* Responsive Adjustments */
@media screen and (max-width: 1199px) {
    .about-sec .ceo-img {
        width: 375px;
    }

    .join-us h2 {
        font-size: 26px;
    }

    .contact-section .register-btn a {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-img {
        margin-top: 30px;
        max-height: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-sec .ceo-img {
        width: 100%;
        max-width: 300px;
    }

    .join-us h2 {
        font-size: 20px;
    }

    .contact-section .register-btn a {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-img {
        max-height: 250px;
        border-width: 4px;
        outline-width: 1px;
    }

    .about-sec {
        padding: 40px 0;
    }

    .about-sec .about h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-sec .about p {
        font-size: 16px;
    }

    .join-us {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 15px 0;
    }

    .join-us h2 {
        text-align: center;
        font-size: 18px;
    }

    .mission-vision-section {
        padding: 40px 0;
    }

    .mv-card {
        margin-bottom: 20px;
    }

    .features-section {
        padding: 40px 0;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .faq-section {
        padding: 40px 0;
    }

    .accordion-button {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .accordion-body {
        font-size: 0.95rem;
        padding: 15px;
    }
}

@media screen and (max-width: 575px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-img {
        max-height: 200px;
        border-width: 3px;
        outline-width: 1px;
    }

    .about-sec {
        padding: 30px 0;
    }
 
    .about-sec .section-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .about-sec .ceo-img {
        max-width: 250px;
    }

    .about-sec .about h3 {
        font-size: 20px;
    }
    .about-sec .ceo-details h3::before {

        left: -5%;
    }
    .about-sec .about p {
        font-size: 14px;
    }

    .about-sec .about .button-part {
        margin-top: 20px;
    }

    .about-sec .about .button-part a {
        font-size: 14px;
        padding: 8px 15px;
    }

    .mission-vision-section {
        padding: 30px 0;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .features-section {
        padding: 30px 0;
    }

    .feature-card {
        padding: 15px;
    }

    .contact-section {
        padding: 20px 0;
    }

    .join-us h2 {
        font-size: 16px;
    }

    .contact-section .register-btn a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .faq-section {
        padding: 30px 0;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .accordion-body {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 20px;
    }

    .hero-img {
        max-height: 180px;
        border-width: 3px;
        outline-width: 1px;
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .hero-content {
        padding: 0 5px;
    }

    .bring-services-btn {
        font-size: 13px;
        padding: 8px 15px;
    }

    .about-sec {
        padding: 20px 0;
    }

    .about-sec .section-heading {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .about-sec .ceo-img {
        max-width: 200px;
    }

    .about-sec .ceo-details h3 {
        font-size: 1.2rem;
    }

    .about-sec .ceo-details h4 {
        font-size: 1rem;
    }

    .about-sec .ceo-details h3::before {
        width: 10px;
        height: 10px;
    }

    .about-sec .about h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .about-sec .about p {
        font-size: 13px;
        line-height: 20px;
    }

    .about-sec .about .button-part {
        margin-top: 15px;
    }

    .about-sec .about .button-part a {
        font-size: 12px;
        padding: 7px 12px;
    }

    .mission-vision-section {
        padding: 20px 0;
    }

    .mv-card {
        padding: 15px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .mv-card h4 {
        font-size: 1.2rem;
    }

    .mv-card p {
        font-size: 0.9rem;
    }

    .features-section {
        padding: 20px 0;
    }

    .feature-card {
        padding: 12px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .feature-card h5 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .contact-section {
        padding: 15px 0;
    }

    .join-us {
        padding: 12px 0;
        gap: 10px;
    }

    .join-us h2 {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-section .register-btn a {
        font-size: 12px;
        padding: 7px 10px;
    }

    .contact-section .register-btn a i {
        font-size: 1rem;
        margin-right: 5px;
    }

    .faq-section {
        padding: 20px 0;
    }

    .accordion-item {
        margin-bottom: 10px;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .accordion-body {
        font-size: 0.85rem;
        padding: 12px;
    }

    .accordion-button::after {
        width: 1rem;
        height: 1rem;
        background-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}