﻿body {
    margin: 0;
    font-family: 'Aileron', sans-serif; /* ✅ Font applied here */
    background: #fffcf6;
}
/*++++++++++++++++++++++++ mobile header +++++++++++++++++++++++++++*/
.sn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background-color: #ffffff;
    box-shadow: 0 3px 12px rgba(150, 150, 150, 0.25);
}

.sn-header__logo img {
    height: 101px;
    width: auto;
    margin-left: 65px;
    margin-top: 4px;
}

.sn-nav__list {
    list-style: none;
    margin: 0;
    padding: 40px;
    display: flex;
}

.sn-nav__item {
    margin-left: 20px;
    font-size: 18px;
}

.sn-nav__link {
    text-decoration: none;
    color: black;
    padding: 5px 15px;
    position: relative;
}

    .sn-nav__link:hover {
        color: #34486A;
    }
    /* earlier underline hover and active styles */
    .sn-nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: #34486A;
        transition: width 0.3s ease;
    }

    .sn-nav__link:hover::after,
    .sn-nav__link.sn-active::after {
        width: 100%;
    }

    .sn-nav__link.sn-active {
        color: #34486A;
    }

/* Highlighted box for Contacts */
.sn-nav__link--highlight {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FBC1A9;
    color: black !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: -12px;
    margin-right: 48px;
}

    .sn-nav__link--highlight:hover {
        background-color: #fff;
        color: black;
    }

.sv-header {
    display: block;
}

.main-header {
    display: none;
}
/* Right-side arrow like in the image */


/* Dropdown submenu */
.sn-nav__item--dropdown {
    position: relative;
}

.sn-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 999;
}

    .sn-submenu li {
        padding: 8px 20px;
        position: relative;
    }

        .sn-submenu li a {
            text-decoration: none;
            color: black;
            display: block;
            position: relative;
        }

            /* Same underline hover as main nav */
            .sn-submenu li a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -2px;
                width: 0;
                height: 2px;
                background: #34486A;
                transition: width 0.3s ease;
            }

            .sn-submenu li a:hover::after {
                width: 100%;
            }

            .sn-submenu li a:hover {
                color: #34486A;
            }

/* Show submenu on hover */
.sn-nav__item--dropdown:hover .sn-submenu {
    display: block;
}

/*+++++++++++++++++++++++++ footer ++++++++++++++++++++++*/

.site-footer {
    background-color: #0A2E5D; /* dark blue background */
    color: #fff;
    padding: 40px 20px;
   
}

.footer-container {
    max-width:1400px;
    margin:auto;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-address h3, .footer-form h3, .footer-map h3 {
    margin-bottom: 15px;
    font-size:27px;
}

.footer-form input, .footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}
.foo {
    font-size: 21px;
    line-height: 29px;
    margin-top: 23px;
}
.footer-form button {
    background-color: #1E6DFF; /* highlight button color */
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size:15px;
}
    .footer-form button:hover {
        background-color: #ffffff; /* highlight button color */
        color: #1E6DFF;
    }
    .footer-bottom {
        width: 100%;
        border-top: 3px solid #ffffff;
        background-color: #0A2E5D;
        padding: 20px 20px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        color: #ffffff;
        /* opacity: 0.75; */
        margin-top: 20px;
    }
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

        .footer-bottom .right-text {
            margin-top: 10px;
        }
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}


/*000000000000000000000000000000000 home page 0000000000000000000000000000000000*/

/*+++++++++++++++++++++ banner image +++++++++++++++++*/
.hero-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top:26px;
}

.hero-image {
    width: 100%;
    transform: scale(0.6);
    opacity: 0;
    animation: heroGrow 2s ease-out forwards;
    transform-origin: center center;
}

@keyframes heroGrow {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/*++++++++++++++++++++++++ about content +++++++++++++++++++++++++*/
.about {
    background: #fdfdfd;
    display: flex;
    justify-content: center;
    align-items: center;
    /*  min-height: 0vh;*/
    padding: 0px 0;
    font-family: 'Aileron', sans-serif; /* ✅ Font applied here */
}

.about-container {
    width: 1300px;
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 40px;
   
}

.about-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .about-left img {
        max-width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

.about-right {
    flex: 1.2;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

    .about-right h1 {
        font-size: 45px;
        margin-bottom: 20px;
        color: black;
        margin-top: 66px;
        
    }

    .about-right p {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align:justify;
    }

.about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #34486A; /* blue shade */
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 50px; /* makes it pill-shaped */
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

    .about-read-more .arrow {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .about-read-more:hover {
        background-color: darkred;
        color: white;
    }

        .about-read-more:hover .arrow {
            transform: translateX(5px);
        }

    /*++++++++++++++++++++++++++++++++++ Ongoing Events ++++++++++++++++++++++++++++++++++++*/
    .events {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 40px 0;
    }

.events-container {
    width: 1300px;
    text-align: center;
}

    .events-container h2 {
        font-size: 43px;
        color: #222;
        margin-bottom: 44px;
        margin-top: 6px;
        font-weight: 600;
    }

/* Event Grid */
.events-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* Event Card */
.event-card {
    flex: 1;
    min-width: 380px;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
}

.event-img {
    overflow: hidden;
    border-radius: 10px;
}

    .event-img img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.4s ease;
    }

/* ✅ Hover Zoom Effect */
.event-card:hover img {
    transform: scale(1.08);
}

.event-card p {
    margin-top: 15px;
    font-size: 21px;
    color: #222;
    font-weight: 500;
}

/*+++++++++++++++++++++ EXPLORING BRAIN AND MENTAL HEALTH +++++++++++++++++++++++*/
.explore {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.explore-container {
    width: 1300px;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Swiper */
.explore-left {
    flex: 1;
}

.explore .explore-swiper {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Right Content */
.explore-right {
    flex: 1.2;
    margin-top: -18px;
}

    .explore-right h2 {
        font-size: 28px;
        color: #333;
        font-weight: 700;
        margin-bottom: 41px;
    }

    .explore-right p {
        font-size: 17px;
        color: black;
        line-height: 28px;
        margin-bottom: 28px;
        text-align: justify;
    }
/* Read More Button */
.explore-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #34486A; /* blue shade */
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 50px; /* makes it pill-shaped */
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

    .explore-read-more .arrow {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .explore-read-more:hover {
        background-color: darkred;
        color: white;
    }

        .explore-read-more:hover .arrow {
            transform: translateX(5px);
        }


/* Swiper Controls */
.explore .swiper-button-next,
.explore .swiper-button-prev {
    color: #666;
    transition: color 0.3s ease;
}

    .explore .swiper-button-next:hover,
    .explore .swiper-button-prev:hover {
        color: #2e8b57;
    }

.explore .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.7;
}

.explore .swiper-pagination-bullet-active {
    background: darkred;
    opacity: 1;
}

/*++++++++++++++++++++++++++++++ Master Class and Skills Training Workshop 2020 +++++++++++++++++++++++++++*/
.master {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.master-container {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Heading animation (starts hidden) */
.master-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    transform: scale(0.6);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

    /* Animate when visible */
    .master-title.animate {
        transform: scale(1);
        opacity: 1;
    }

/* Paragraph fade effect */
.master-container p {
    font-size: 17px;
    color: #333;
    margin-top: 15px;
    line-height: 26px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}
    .master-container p.show {
        opacity: 1;
        transform: translateY(0);
    }

/*++++++++++++++++++++++++ World Mental Health Day 2019 ++++++++++++++++++++++++*/
.wmhd {
    width: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.wmhd-title {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}
/* Swiper Container */
.wmhd-swiper {
    width: 90%;
    max-width: 1200px;
    position: relative;
    padding-bottom: 50px; /* space for pagination below */
}

/* Slides */
.wmhd .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
}

    .wmhd .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.4s ease;
    }

        /* Hover Zoom */
        .wmhd .swiper-slide img:hover {
            transform: scale(1.05);
        }

/* ✅ Pagination (Now below images, outside swiper area) */
.wmhd .swiper-pagination {
    position: absolute;
    bottom: -25px; /* moves dots below */
    left: 0;
    width: 100%;
    text-align: center;
}

.wmhd .swiper-pagination-bullet {
    background: #999;
    opacity: 0.7;
    margin: 0 6px;
}

.wmhd .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

/* Arrows */
.wmhd .swiper-button-next,
.wmhd .swiper-button-prev {
    color: #333;
    transition: color 0.3s ease;
}

    .wmhd .swiper-button-next:hover,
    .wmhd .swiper-button-prev:hover {
        color: #007b55;
    }


/*00000000000000000000000000000000000000 About Us 000000000000000000000000000000000000*/
.aboutus-section {
    display: flex;
    justify-content: center;
    background: #ffffff;
    padding: 50px 0;
}

.aboutus-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1300px;
    max-width: 100%;
    gap: 50px;
}

.aboutus-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease-out forwards;
}

    .aboutus-text h2 {
        font-size: 42px;
        color: #1d1d1d;
        margin-bottom: 20px;
    }

    .aboutus-text p {
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 20px;
    }

.aboutus-image {
    flex: 1;
    text-align: right;
}

    .aboutus-image img {
        width: 100%;
        max-width: 550px;
        border-radius: 8px;
    }

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*000000000000000000000000000000000000000000000 vision- mission 0000000000000000000000000000000000000000000*/
.mission {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    background: #fff;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1300px;
    max-width: 100%;
    gap: 50px;
}

.mission-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease-out forwards;
}

    .mission-text h2 {
        font-size: 36px;
        color: #111;
        margin-bottom: 20px;
    }

    .mission-text p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 30px;
    }

    .mission-text ul {
        list-style-type: disc;
        padding-left: 20px;
    }

        .mission-text ul li {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 10px;
        }

.mission-image {
    flex: 1;
    text-align: right;
}

    .mission-image img {
        max-width: 100%;
        width: auto;
        border-radius: 6px;
    }

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/*0000000000000000000000000000000000 testimonials page 000000000000000000000000000000*/
.faq-section {
    padding: 80px 0;
    background: #fffaf0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
}

/* Image on Left */
.faq-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .faq-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* FAQ on Right */
.faq-container {
    flex: 1 1 55%;
   
}

/* FAQ Styling Same as Before */
.faq-item {
    background-color: #fdf0d5;
    margin-bottom: 10px;
    border: 1px solid #f0d9a6;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-title {
    background-color: #fdf0d5;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    padding: 18px 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-title::after {
        content: "\25BC";
        font-size: 14px;
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-title {
    background-color: #eaa100;
    color: #fff;
}

    .faq-item.active .faq-title::after {
        transform: rotate(180deg);
    }

.faq-body {
    display: none;
    background-color: #fff;
    padding: 20px 30px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    animation: fadeIn 0.4s ease;
    border-top: 1px solid #f0d9a6;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .faq-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faq-image {
        order: 1;
        max-width: 90%;
        margin-bottom: 30px;
    }

    .faq-container {
        order: 2;
        width: 100%;
    }
}


/*00000000000000000000000000 Scope of NSVF 0000000000000000000000000*/
.scope {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.scope-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
    max-width: 100%;
    margin: 0 auto 60px;
    gap: 60px;
}

.scope-content {
    flex: 1;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.scope-image {
    flex: 1;
    text-align: right;
    animation: slideInRight 1s ease forwards;
    opacity: 0;
}

    .scope-image img {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 15px;
    }

.scope-content h2 {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 20px;
}

.scope-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.scope-content a {
    color: #00a0e3;
    text-decoration: none;
}

    .scope-content a:hover {
        text-decoration: underline;
    }

/* Animation */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FAQ */
.scope-faq {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.faq-title {
    font-size: 21px;
    font-weight: 500;
    color: #00a0e3;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-icon {
    font-size: 20px;
    color: #00a0e3;
    transition: transform 0.3s ease;
}

.faq-body {
    display: none;
    padding: 10px 0 0 30px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* Toggle */
.faq-item.active .faq-body {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/*000000000000000000000000000000000000 Events 000000000000000000000000000000000*/
/*++++++++++++++++++++++ header ++++++++++++++++++++++*/
.eventspage {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:50px
}

    .eventspage h1 {
        font-size: 34px;
        font-weight: 700;
        color: #333; /* dark grey, visible on light bg */
        letter-spacing: 1px;
    }

/*++++++++++++++++++ hospital section +++++++++++++++++++*/
.Hospital-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.Hospital-container {
    width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Text Content */
.Hospital-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-80px);
    animation: slideInLeft 1.2s ease forwards;
    animation-delay: 0.3s;
}

.Hospital-title {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.Hospital-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Right Image */
.Hospital-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .Hospital-image img {
        width: 100%;
        max-width: 550px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s ease;
    }

        .Hospital-image img:hover {
            transform: scale(1.03);
        }

/* ✅ Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*+++++++++++++++++++++++++++++++++++ exhibition +++++++++++++++++++++++++++++++++*/
.exhibition {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.exhibition-container {
    width: 1300px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.exhibition-image img {
    width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}
    .exhibition-image img:hover {
        transform: scale(1.03);
    }
/* Initially hidden (before scroll) */
.exhibition-content {
    flex: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

    /* When visible on scroll */
    .exhibition-content.show {
        opacity: 1;
        transform: translateX(0);
    }

    .exhibition-content p {
        font-size: 17px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }

/*++++++++++++++++++++++ Several ++++++++++++++++++++++++*/
.Several {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.Several-container {
    width: 1300px;
    display: flex;
    align-items: center;
    gap: 40px;
}

    /* Image Left, Text Right */
    .Several-container.reverse {
        flex-direction: row-reverse;
    }

.Several-image img {
    width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

    .Several-image img:hover {
        transform: scale(1.03);
    }

/* Text hidden before scroll */
.Several-content {
    flex: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

    /* Text slides in when visible */
    .Several-content.show {
        opacity: 1;
        transform: translateX(0);
    }

    .Several-content p {
        font-size: 17px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }


/*+++++++++++++++++++++++++++++++++++ from +++++++++++++++++++++++++++++++++*/
.from {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.from-container {
    width: 1300px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.from-image img {
    width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

    .from-image img:hover {
        transform: scale(1.03);
    }
/* Initially hidden (before scroll) */
.from-content {
    flex: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

    /* When visible on scroll */
    .from-content.show {
        opacity: 1;
        transform: translateX(0);
    }

    .from-content p {
        font-size: 17px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }



/*++++++++++++++++++++++ “We hope that the week-long series  ++++++++++++++++++++++++*/
.hope {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.hope-container {
    width: 1300px;
    display: flex;
    align-items: center;
    gap: 40px;
}

    /* Image Left, Text Right */
    .hope-container.reverse {
        flex-direction: row-reverse;
    }

.hope-image img {
    width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

    .hope-image img:hover {
        transform: scale(1.03);
    }

/* Text hidden before scroll */
.hope-content {
    flex: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

    /* Text slides in when visible */
    .hope-content.show {
        opacity: 1;
        transform: translateX(0);
    }

    .hope-content p {
        font-size: 17px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }

/*000000000000000000000000000000000000000 print 00000000000000000000000000000000*/
/*+++++++++++++++++++ print header +++++++++++++++++*/
.print {
    width: 100%;
    text-align: center;
  padding:50px 0 ;
}

    .print h2 {
        font-size: 46px;
        font-weight: 700;
        color: #000;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        margin-top: 93px;
    }
/*+++++++++++++++++++++++ Mumbai Mirror 12/2/2019 ++++++++++++++++++++++*/
.mirrion {
    padding: 0px 0;
}

.mirrion-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    justify-items: center;
}

.mirrion-box {
    text-align: center;
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 15px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-70px);
    transition: all 0.8s ease;
    width: 90%;
    max-width: 500px;
}

    .mirrion-box.show {
        opacity: 1;
        transform: translateY(0);
    }

    .mirrion-box img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
        transition: transform 0.5s ease;
    }

    .mirrion-box:hover img {
        transform: scale(1.04);
    }

    .mirrion-box h2 {
        font-size: 26px;
        color: #333;
        font-weight: 700;
    }

/*00000000000000000000000000000000000 digital 00000000000000000000000000000*/
/*+++++++++++++++++++ digital header +++++++++++++++++*/
.digi {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    text-align: center;
    margin-top: 50px;
}

    .digi h2 {
        font-size: 42px;
        font-weight: 700;
        color: #222;
        letter-spacing: 1px;
        
    }

@media (max-width: 768px) {
    .digi h2 {
        font-size: 26px;
    }
}

/*+++++++++++++++++++++++++++++ digital links +++++++++++++++++++++++++++++*/

.digital {
    padding: 40px 0;
}

.digital-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    text-align: center;
}

    .digital-container h1 {
        font-size: 28px;
        font-weight: 700;
        color: black;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.digital-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
}

    .digital-table thead tr {
        background-color: #d9ebf8;
    }

    .digital-table th,
    .digital-table td {
        border: 1px solid #dcdcdc;
        padding: 10px 15px;
        vertical-align: middle;
    }

    .digital-table th {
        font-weight: 600;
        color: #000;
    }

    .digital-table td a {
        color: #0645ad;
        text-decoration: none;
        word-break: break-all;
    }

        .digital-table td a:hover {
            text-decoration: underline;
        }

.entries {
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .digital-table th,
    .digital-table td {
        font-size: 13px;
        padding: 8px;
    }

    .digital-container h1 {
        font-size: 22px;
    }
}


/*000000000000000000000000000000000000000000000 television 00000000000000000000000000000000000000*/
.television {
    text-align: center;
    padding: 50px 0;
    background: #fff;
}

.television-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: 1px;
}

.television-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 70%;
    margin: auto;
}

.television-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .television-video:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .television-video iframe {
        width: 100%;
        height: 370px;
        border: none;
        display: block;
    }

@media (max-width: 992px) {
    .television-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .television-video iframe {
        height: 260px;
    }
}


/*0000000000000000000000000000000000000000000 nsvf-meetings 00000000000000000000000000000000000000*/
.table-container {
    width: 1300px;
    margin:auto;
    max-height: 600px; 
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-top:80px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

    .table thead th {
        position: sticky;
        top: 0;
        background: #eaf2ff;
        color: #222;
        font-weight: 600;
        text-align: left;
        padding: 14px 18px;
        border-bottom: 2px solid #d6e1f0;
        z-index: 2;
    }

    .table td {
        padding: 14px 18px;
        vertical-align: top;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        font-size: 15px;
        line-height: 1.6;
    }

    .table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .table tr:hover {
        background-color: #f1f7ff;
    }

/* Scrollbar style */
.table-container::-webkit-scrollbar {
    width: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c5cde0;
    border-radius: 4px;
}

    .table-container::-webkit-scrollbar-thumb:hover {
        background: #9da8c2;
    }


/*++++++++++++++++++++++++++++  upcoming events section  ++++++++++++++++++++++++++*/
.upcome {
    text-align: center;
    padding: 50px 0;
}

    .upcome h2 {
        font-size: 38px;
        font-weight: 800;
        color: #000;
        margin-bottom: 70px;
    }

.upcome-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 234px;
}

.upcome-box {
    width: 443px;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

    .upcome-box img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        transition: all 0.4s ease;
    }

    .upcome-box:hover img {
        transform: scale(1.05);
        opacity: 0.95;
    }

    .upcome-box:hover {
        box-shadow: 0 8px 18px rgba(0,0,0,0.2);
        transform: translateY(-5px);
    }

@media (max-width: 900px) {
    .upcome-container {
        flex-direction: column;
        align-items: center;
    }

    .upcome-box {
        width: 85%;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++ gallery +++++++++++++++++++++++++++++++++++++++++*/
.gallery-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .grid-item img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }
}


/*++++++++++++++++++++++++++++++ toggle headder ++++++++++++++++++++++++*/

/* Header */
/*.brown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fdfaf3;
    padding: 10px 20px;
    position: fixed;*/ /* ✅ header ab fixed ho gaya */
    /*top: 0;*/ /* ✅ top se chipka */
    /*left: 0;
    width: 100%;*/ /* ✅ full width */
    /*z-index: 10000;*/ /* ✅ sabse upar */
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/ /* optional shadow for depth */
/*}*/

/* Space adjustment so content doesn't hide behind header */
/*body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fdfaf3;
    padding-top: 80px;*/ /* ✅ adjust height same as header height */
/*}*/

/* Logo */
/*.logo img {
    width: 80px;
    height: auto;
}*/

/* Toggle Button */
/*.toggle.brown {
    width: 41px;
    height: 33px;
    background: #34486A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    position: fixed;
    right: 12px;
    top: 13px;
    z-index: 1100;
}

    .toggle.brown span {
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
    }*/

/* Slide Menu (from left) */
/*.brown-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #34486A;
    color: #fff;
    transition: left 0.5s ease;
    z-index: 1000;
    padding-top: 80px;
}

    .brown-menu.active {
        left: 0;
    }

    .brown-menu .close-btn {
        position: absolute;
        top: 77px;
        right: 15px;
        font-size: 48px;
        cursor: pointer;
        color: #fff;
        font-weight: bold;
        line-height: 1;
        z-index: 1200;
    }*/
    /* Menu Items */
    /*.brown-menu ul {
        list-style: none;
        padding: 17px;
        text-align: left;
    }

        .brown-menu ul li {
            margin: 30px 0;
            position: relative;
        }

            .brown-menu ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 21px;
                letter-spacing: 1px;
                transition: color 0.3s;
            }

                .brown-menu ul li a:hover {
                    color: #85AA5E;
                }*/

/* Submenu Base */
/*.submenu {
    display: none;
    background: #34486A;
    margin-top: 10px;
    padding: 10px 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Submenu Items */
/*.submenu li {
    margin: 10px 0;
}

.submenu a {
    font-size: 14px;
}*/

/* Arrow Style */
/*.arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

    .arrow.rotate {
        transform: rotate(180deg);
    }*/

/* Visibility toggle for different headers */
/*.sv-header {
    display: block;
}

.brown-header {
    display: none;*/ /* ✅ ensure header visible */
/*}*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fdfaf3;
  padding-top: 80px;
}

/* Header */
.brown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfaf3;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: opacity 0.4s ease;
}

.logo img {
  width: 80px;
  height: auto;
}

/* Toggle Button */
.toggle.brown {
    width: 41px;
    height: 33px;
    background: #2C4468;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    position: fixed;
    right: 12px;
    top: 13px;
    z-index: 12000;
}
    .toggle.brown span {
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
        transition: all 0.4s ease;
        transform-origin: center;
        position: relative;
    }

/* Toggle → Cross animation */
.toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.toggle.active span:nth-child(2) {
    opacity: 0;
}

.toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* Fullscreen Brown Menu */
.brown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2C4468;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.brown-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Menu Items */
.brown-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.brown-menu ul li {
  margin: 30px 0;
}

.brown-menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s;
}

/*.brown-menu ul li a:hover {
  color: darkred;
}
*/
/* Submenu */
.submenu {
  display: none;
  margin-top: 10px;
  animation: fadeIn 0.3s ease;
}

.submenu.open {
  display: block;
}

.submenu li {
  margin: 10px 0;
}

.submenu a {
  font-size: 18px;
  color: #f8e6c1;
}

.arrow {
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s;
}

.arrow.rotate {
  transform: rotate(180deg);
}
.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2100;
}

    .close-btn:hover {
        transform: rotate(90deg);
    }

/* Menu Line (optional) */
.menu-line {
    width: 60%;
    border: 0;
    border-top: 2px solid #ffffff;
    margin-top: 40px;
}

/* Hide header when menu open */
.header-hide {
    opacity: 0;
    pointer-events: none;
}
.sv-header {
    display:block;
}
.brown-header {
    display:none;
}
/*############  BACK TO TOP BUTTON ###########*/
#back-to-top-section {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}




.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background-color: #34486A;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease-in-out;
}


    .back-to-top:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
        background-color: #ffffff;
        color: #34486A;
    }


@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
    }
}

/*############# thank you ##############*/

.thank-page-v2 {
  /*  width: 100%;*/
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    /*background-color: #fff;*/
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 100px;
    font-weight: 900;
    color: #34486A;
    text-shadow: 6px 6px 15px rgba(13, 62, 255, 0.3);
    /*  font-family: 'Brush Script MT', cursive;*/
    margin-bottom: 30px;
}

.thank-text {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
}

.nice-day {
    font-size: 24px;
    color: #222;
    font-weight: 600;
}



@media (max-width: 768px) {
    .main-thank {
        font-size: 60px;
    }

    .thank-text {
        font-size: 20px;
    }

    .nice-day {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-thank {
        font-size: 46px;
    }

    .thank-text {
        font-size: 18px;
    }

    .nice-day {
        font-size: 16px;
    }
}

.hero-banner {
    display:block;
}
.mobile-banner {
    display:none;
}