@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* Header */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:linear-gradient(135deg,#7c2d12,#451a03);
    z-index:9999;
    border-bottom:3px solid #f59e0b;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.header-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    transition:all .3s ease;
}

.logo:hover{
    transform:scale(1.05);
}

.logo img{
    width:85px;
    height:85px;
    object-fit:contain;
    transition:all .3s ease;
}

.logo-text h2{
    color:#fbbf24;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
}

.logo-text span{
    color:#d97706;
    font-size:13px;
    font-weight:500;
}

/* Navbar */

.navbar ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:30px;
}

.navbar ul li a{
    text-decoration:none;
    color:#e9e4e4;
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:all .3s ease;
}

.navbar ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#f59e0b;
    border-radius:10px;
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar ul li a:hover{
    color:#fbbf24;
}

.navbar ul li a:hover::after{
    width:100%;
}

/* Donate Button */

.donate-btn{
    background:linear-gradient(135deg,#d97706,#f59e0b);
    color:#fff !important;
    padding:10px 22px;
    border-radius:50px;
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:0 6px 15px rgba(217,119,6,.2);
}

.donate-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(217,119,6,.3);
}

/* Mobile Menu */

.menu-btn{
    display:none;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
    color:#fbbf24;
    transition:all .3s ease;
}

/* Mobile */

@media(max-width:991px){

    .header-container{
        height:80px;
    }

    .logo img{
        width:65px;
        height:65px;
    }

    .logo-text h2{
        font-size:18px;
    }

    .logo-text span{
        font-size:11px;
    }

    .menu-btn{
        display:block;
    }

    .menu-btn:hover{
        transform:scale(1.1);
        color:#f59e0b;
    }

    .navbar{
        position:absolute;
        top:80px;
        left:-100%;
        width:100%;
        background:#fff;
        transition:all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        max-height:calc(100vh - 80px);
        overflow-y:auto;
    }

    .navbar.active{
        left:0;
    }

    .navbar ul{
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:15px 25px;
    }

    .navbar ul li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .navbar ul li a{
        display:block;
        padding:15px 0;
        width:100%;
        color:#333 !important;
    }

    .navbar ul li a::after{
        display:none;
    }

    .navbar ul li a:hover{
        color:#d97706 !important;
        padding-left:8px;
    }
}

@media(max-width:576px){

    .header-container{
        width:95%;
    }

    .logo-text h2{
        font-size:16px;
    }

    .logo-text span{
        display:none;
    }

    .logo img{
        width:58px;
        height:58px;
    }

    .navbar{
        top:70px;
    }

    .header-container{
        height:70px;
    }
}


.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    margin-top:90px;
    min-height:600px;
}

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-subtitle{
    background:rgba(245,158,11,.2);
    border:1px solid rgba(245,158,11,.4);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    backdrop-filter:blur(5px);
}

.hero-content h1{
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
    text-shadow:0 5px 20px rgba(0,0,0,.3);
    letter-spacing:-1px;
}

.hero-content p{
    max-width:750px;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    font-weight:300;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.btn-primary{
    background:linear-gradient(135deg,#d97706,#f59e0b);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:0 8px 20px rgba(217,119,6,.25);
    border:2px solid transparent;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(217,119,6,.35);
}

.btn-secondary{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
    padding:13px 33px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-secondary:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.1);
    box-shadow:0 8px 20px rgba(255,255,255,.2);
}
@media(max-width:768px){

    .hero{
        height:auto;
        min-height:70vh;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.2;
        margin-bottom:15px;
    }

    .hero-content p{
        font-size:15px;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        max-width:280px;
        gap:12px;
    }

    .btn-primary,
    .btn-secondary{
        text-align:center;
        padding:14px 30px;
        font-size:14px;
    }
}

@media(max-width:576px){

    .hero{
        height:auto;
        min-height:55vh;
        margin-top:72px;
    }

    .hero-content{
        padding:15px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.1;
        margin-bottom:12px;
        text-shadow:0 3px 15px rgba(0,0,0,.4);
    }

    .hero-content p{
        font-size:13px;
        line-height:1.6;
        max-width:100%;
        margin-bottom:20px;
    }

    .hero-buttons{
        width:100%;
        max-width:100%;
    }

    .btn-primary,
    .btn-secondary{
        padding:12px 28px;
        font-size:13px;
        width:100%;
    }
}

/* .about-section{
    padding:100px 0;
    background:#fff;
}

.about-section .container{
    display:flex;
    align-items:center;
    gap:60px;
} */

.about-section{
    padding:50px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.about-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.about-image{
    flex:1;
    animation:slideInLeft 0.8s ease;
}

.about-image img{
    width:100%;
    max-height:500px;
    object-fit:cover;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    transition:all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image:hover img{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(217,119,6,.2);
}

.about-content{
    flex:1;
    animation:slideInRight 0.8s ease;
}

@keyframes slideInLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideInRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}


@media(max-width:991px){

    .about-container{
        flex-direction:column;
        gap:35px;
    }

    .about-image,
    .about-content{
        width:100%;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:32px;
    }
}

@media(max-width:576px){

    .about-image img{
        max-height:350px;
    }

    .about-content h2{
        font-size:26px;
        margin:12px 0 18px;
    }

    .section-tag{
        font-size:12px;
        padding:5px 12px;
    }

    .feature{
        padding:10px 12px;
        font-size:14px;
    }
}
.section-tag{
    color:#d97706;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
    display:inline-block;
    padding:6px 14px;
    background:rgba(217,119,6,.08);
    border-radius:50px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    color:#7c2d12;
    margin:15px 0 25px;
    line-height:1.3;
    font-weight:700;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
    font-weight:400;
}

.about-features{
    margin:30px 0;
    display:grid;
    gap:12px;
}

.feature{
    margin-bottom:0;
    font-weight:500;
    color:#333;
    padding:12px 15px;
    background:#f9f5f0;
    border-radius:8px;
    border-left:4px solid #d97706;
    transition:all .3s ease;
}

.feature:hover{
    transform:translateX(8px);
    background:#fff7ed;
    box-shadow:0 4px 12px rgba(217,119,6,.1);
}

.about-btn{
    display:inline-block;
    background:linear-gradient(135deg,#d97706,#f59e0b);
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:0 8px 20px rgba(217,119,6,.25);
    margin-top:15px;
}

.about-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(217,119,6,.35);
}
@media(max-width:991px){

    .about-content h2{
        font-size:32px;
    }
}


.history-section{
    background:#fff8ef;
    padding:50px 0;
    position:relative;
    overflow:hidden;
}

.history-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-heading span{
    color:#d97706;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    display:inline-block;
    padding:6px 14px;
    background:rgba(217,119,6,.08);
    border-radius:50px;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:42px;
    color:#7c2d12;
    margin:15px 0;
    font-weight:700;
    line-height:1.3;
}

.section-heading p{
    color:#666;
    line-height:1.8;
    font-weight:400;
}

.history-timeline{
    width:90%;
    max-width:1000px;
    margin:auto;
    position:relative;
}

.history-timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#f59e0b;
    transform:translateX(-50%);
}

.timeline-item{
    display:flex;
    align-items:center;
    margin-bottom:50px;
    position:relative;
}

.timeline-item:nth-child(even){
    flex-direction:row-reverse;
}

.timeline-year{
    width:180px;
    background:linear-gradient(135deg,#d97706,#f59e0b);
    color:#fff;
    padding:15px;
    border-radius:10px;
    text-align:center;
    font-weight:600;
    z-index:2;
    box-shadow:0 5px 15px rgba(217,119,6,.2);
    transition:all .3s ease;
}

.timeline-item:hover .timeline-year{
    transform:scale(1.05);
}

.timeline-content{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:15px;
    margin:0 30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.timeline-content:hover{
    box-shadow:0 15px 35px rgba(217,119,6,.12);
    transform:translateY(-4px);
}

.timeline-content h3{
    color:#7c2d12;
    margin-bottom:10px;
    font-weight:700;
}

.timeline-content p{
    color:#555;
    line-height:1.8;
    font-weight:400;
}

@media(max-width:768px){

    .history-timeline::before{
        left:20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even){
        flex-direction:column;
        align-items:flex-start;
        padding-left:50px;
    }

    .timeline-year{
        width:auto;
        margin-bottom:15px;
        font-size:14px;
        padding:12px 18px;
    }

    .timeline-content{
        margin:0;
        width:100%;
        padding:18px 15px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading{
        margin-bottom:45px;
    }
}

@media(max-width:576px){

    .about-section,
    .history-section,
    .gallery-section,
    .aarti-section,
    .location-section{
        padding:60px 0;
    }

    .about-container,
    .location-container{
        width:95%;
    }

    .about-image img{
        max-height:350px;
    }

    .about-content h2{
        font-size:26px;
        margin:12px 0 18px;
    }

    .section-tag{
        font-size:12px;
        padding:5px 12px;
    }

    .feature{
        padding:10px 12px;
        font-size:14px;
    }

    .timeline-content{
        font-size:14px;
    }

    .timeline-content h3{
        font-size:16px;
    }

    .timeline-content p{
        font-size:13px;
    }

    .history-timeline{
        width:95%;
    }

    .section-heading h2{
        font-size:26px;
    }

    .section-heading p{
        font-size:14px;
    }

    .gallery-grid{
        width:95%;
    }

    .info-box{
        padding:15px 12px;
        gap:12px;
    }

    .icon{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .info-box h4{
        font-size:15px;
    }

    .location-map iframe{
        height:300px;
    }
}

.gallery-section{
    padding:50px 0;
    background:#fff8ef;
    position:relative;
    overflow:hidden;
}

.gallery-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.gallery-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    position:relative;
    background:#fff;
    transition:all .3s ease;
}

.gallery-item:hover{
    box-shadow:0 15px 40px rgba(217,119,6,.2);
    transform:translateY(-8px);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:all .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img{
    transform:scale(1.1) rotate(2deg);
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .gallery-item img{
        height:250px;
    }
}

@media(max-width:576px){

    .gallery-grid{
        grid-template-columns:1fr;
    }
}

/* aarti section  */

/* ==========================
   AARTI SECTION
========================== */

.aarti-section{
    padding:50px 0;
    background:linear-gradient(135deg,#fff7ed,#ffedd5);
}

.aarti-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    gap:30px;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:2px solid #f59e0b;
    transition:all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aarti-container:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(217,119,6,.18);
}

/* Left */

.aarti-left{
    flex:1.3;
    padding:30px;
    transition:all .3s ease;
}

.aarti-left:hover{
    background:#fff8f5;
}

.aarti-left h2{
    text-align:center;
    color:#7c2d12;
    font-size:32px;
    margin-bottom:20px;
    padding-bottom:15px;
    border-bottom:3px solid #f59e0b;
    font-weight:700;
    transition:all .3s ease;
}

.aarti-left h2:hover{
    color:#d97706;
}

.aarti-content{
    text-align:center;
}

.verse{
    font-size:17px;
    line-height:1.6;
    color:#444;
    margin-bottom:12px;
    font-weight:500;
    transition:all .3s ease;
    padding:8px 12px;
    border-radius:8px;
}

.verse:hover{
    background:#fff7ed;
    color:#7c2d12;
    transform:translateX(8px);
    box-shadow:0 4px 12px rgba(217,119,6,.1);
}

/* Right */

.aarti-right{
    flex:1;
    background:#fffaf5;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border-radius:25px;
    transition:all .3s ease;
}

.mata-image-wrapper{
    width:100%;
    max-width:300px;
    height:340px;
    overflow:hidden;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    position:relative;
    background:#fff;
    animation:floatImage 4s ease-in-out infinite;
}

.mata-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .5s ease;
}

.mata-image-wrapper:hover img{
    transform:scale(1.08) rotate(1deg);
}

.mantra-container{
    width:100%;
    max-width:380px;
    background:linear-gradient(135deg,#d97706,#f59e0b);
    color:#fff;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 20px rgba(217,119,6,.25);
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mantra-container:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(217,119,6,.35);
}

.mantra-container h3{
    margin-bottom:12px;
    font-size:22px;
    font-weight:700;
}

.mantra{
    font-size:18px;
    line-height:1.7;
    font-weight:600;
}

/* Mobile */

@media(max-width:991px){

    .aarti-container{
        flex-direction:column-reverse;
        border-radius:15px;
    }

    .aarti-left{
        padding:25px;
    }

    .aarti-left h2{
        font-size:26px;
        margin-bottom:15px;
        padding-bottom:12px;
    }

    .verse{
        font-size:15px;
        line-height:1.5;
    }

    .mata-image-wrapper{
        max-width:260px;
        height:280px;
    }

    .mantra{
        font-size:16px;
    }

    .aarti-right{
        padding:25px;
    }
}

@media(max-width:576px){

    .aarti-container{
        width:95%;
        gap:0;
    }

    .aarti-left{
        padding:20px;
    }

    .aarti-left h2{
        font-size:22px;
        margin-bottom:12px;
    }

    .verse{
        font-size:13px;
        line-height:1.5;
        margin-bottom:10px;
    }

    .mata-image-wrapper{
        max-width:220px;
        height:240px;
        margin-bottom:15px;
    }

    .mantra-container{
        max-width:300px;
        padding:15px;
    }

    .mantra{
        font-size:14px;
    }

    .mantra-container h3{
        font-size:18px;
        margin-bottom:10px;
    }
}
@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

.mata-image-wrapper{
    animation:floatImage 4s ease-in-out infinite;
}

/* ==========================
   LOCATION SECTION
========================== */

.location-section{
    padding:50px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.location-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.location-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.location-content{
    flex:1;
    animation:slideInLeft 0.8s ease;
}

.location-map{
    flex:1;
    animation:slideInRight 0.8s ease;
}

.location-map iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
    transition:all .3s ease;
}

.location-map:hover iframe{
    box-shadow:0 20px 50px rgba(217,119,6,.15);
}

.location-content h2{
    font-size:42px;
    color:#7c2d12;
    margin:15px 0 25px;
    font-weight:700;
}

.location-content p{
    color:#555;
    line-height:1.9;
}

.location-info{
    margin:35px 0;
}

.info-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
    padding:20px;
    margin-bottom:15px;
    background:#fff8ef;
    border-radius:15px;
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left:4px solid #d97706;
}

.info-box:hover{
    transform:translateX(10px) translateY(-2px);
    box-shadow:0 10px 25px rgba(217,119,6,.15);
    background:#fff;
}

.icon{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#d97706,#f59e0b);
    color:#fff;
    border-radius:50%;
    font-size:22px;
    flex-shrink:0;
    box-shadow:0 5px 15px rgba(217,119,6,.25);
}

.info-box h4{
    color:#7c2d12;
    margin-bottom:5px;
    font-weight:600;
}

.info-box p{
    color:#666;
    font-size:14px;
}

.location-btn{
    display:inline-block;
    padding:15px 35px;
    background:linear-gradient(135deg,#d97706,#f59e0b);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:0 8px 20px rgba(217,119,6,.25);
    margin-top:15px;
}

.location-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(217,119,6,.35);
}

@media(max-width:991px){

    .location-container{
        flex-direction:column;
        gap:40px;
    }

    .location-content h2{
        font-size:32px;
    }

    .location-map iframe{
        height:350px;
    }

}
/* ==========================
   FOOTER
========================== */

.footer{
    background:linear-gradient(135deg,#7c2d12,#451a03);
    color:#fff;
    padding-top:40px;
    margin-top:100px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:'🕉';
    position:absolute;
    top:20px;
    right:50px;
    font-size:150px;
    opacity:.05;
}

.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer-logo{
    width:90px;
    margin-bottom:15px;
    transition:all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-logo:hover{
    transform:rotate(12deg) scale(1.08);
}

.footer-col h3{
    margin-bottom:15px;
    color:#fbbf24;
    font-size:18px;
    font-weight:700;
}

.footer-col h4{
    margin-bottom:20px;
    color:#fbbf24;
    font-size:20px;
    font-weight:700;
}

.footer-col p{
    line-height:1.9;
    color:#f3f4f6;
    font-weight:400;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
    color:#f3f4f6;
    transition:all .3s ease;
}

.footer-col ul li a{
    color:#f3f4f6;
    text-decoration:none;
    transition:all .3s ease;
    display:flex;
    align-items:center;
}

.footer-col ul li a:before{
    content:'›';
    margin-right:8px;
    opacity:0;
    transition:all .3s ease;
    font-size:18px;
}

.footer-col ul li a:hover{
    color:#fbbf24;
    padding-left:6px;
}

.footer-col ul li a:hover:before{
    opacity:1;
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding:25px 15px;
    font-size:14px;
    color:#ddd;
    font-weight:400;
}

.footer-bottom p{
    margin:0;
}

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }
}

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:30px;
    }

    .footer-logo{
        margin:auto auto 15px;
        display:block;
    }

    .footer-col ul li a:hover{
        padding-left:0;
    }

    .footer-col ul li a:hover:before{
        opacity:0;
    }

    .footer::before{
        font-size:80px;
        right:20px;
    }
}


.video-section {
    padding: 50px 20px;
    background: #f9f9f9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-item iframe {
    width: 100%;
    height: 220px;
    border: none;
}







/* =========================
   PRELOADER
========================= */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Text styling */
.jai-text {
    font-size: 36px;
    font-weight: 700;
    color: red;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Animated dots */
.dots::after {
    content: "";
    animation: dots 1.2s infinite;
}

/* dots animation */
@keyframes dots {
    0%   { content: ""; }
    25%  { content: "."; }
    50%  { content: ".."; }
    75%  { content: "..."; }
    100% { content: ""; }
}

/* =========================
   MARQUEE SECTION
========================= */

.marquee-section {
    background: #fff;
    padding: 10px 0;
    border-top: 2px solid #ff0000;
    border-bottom: 2px solid #ff0000;
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
}

.marquee span {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: red;
    font-family: 'Poppins', sans-serif;
    animation: scrollText 12s linear infinite;
}

/* animation */
@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



.footer-bottom a{
    color: #ffd700; /* Yellow */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-bottom a:hover{
    color: #6f7758; /* Blue */
}


.footer-blessing{
    text-align:center;
    padding:15px 10px;
    font-size:24px;
    font-weight:700;
    color:#ffd700;
    border-top:1px solid rgba(255,255,255,0.1);
    border-bottom:1px solid rgba(255,255,255,0.1);
    letter-spacing:2px;
}

#langBtn{
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    padding:8px 15px;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    margin-left:15px;
    transition:.3s;
}

#langBtn:hover{
    background:#0056b3;
}