/*==================================================
    ShivShakti Mandir Nyas
    Premium Temple Website
====================================================*/

/*-------------------------
    Google Font
--------------------------*/

:root{

    --primary:#E65100;
    --secondary:#FF9800;
    --gold:#D4AF37;
    --cream:#FFF8F0;
    --dark:#2B2B2B;
    --brown:#4E342E;
    --white:#ffffff;
    --shadow:0 10px 35px rgba(0,0,0,.12);
    --radius:14px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--dark);
    overflow-x:hidden;

}

/* Hindi Font */

.hindi{

    font-family:'Noto Sans Devanagari',sans-serif;

}

/*----------------------------------
    Top Bar
-----------------------------------*/

.top-bar{

    background:linear-gradient(90deg,#E65100,#FF9800);

    color:#fff;

    height:45px;

    display:flex;

    align-items:center;

    overflow:hidden;

    font-size:14px;

    position:relative;

    z-index:1100;

}

.marquee{

    white-space:nowrap;

    animation:marquee 25s linear infinite;

    font-weight:500;

}

@keyframes marquee{

0%{

transform:translateX(100%);

}

100%{

transform:translateX(-100%);

}

}

/* Language Button */

.lang-btn{

    border:none;

    color:#fff;

    background:rgba(255,255,255,.18);

    margin-left:8px;

    border-radius:50px;

    padding:4px 15px;

    transition:.3s;

}

.lang-btn:hover{

    background:#fff;

    color:var(--primary);

}

.lang-btn.active{

    background:#fff;

    color:var(--primary);

    font-weight:600;

}

/*----------------------------------
    Navbar
-----------------------------------*/

.custom-navbar{

    transition:.4s;

    padding:18px 0;

    background:transparent;

}

.custom-navbar.scrolled{

    background:#fff;

    box-shadow:var(--shadow);

    padding:12px 0;

}

/* Logo */

.navbar-brand{

    display:flex;

    flex-direction:column;

    color:#fff;

    text-decoration:none;

}

.custom-navbar.scrolled .navbar-brand{

    color:var(--primary);

}

.navbar-brand i{

    font-size:28px;

    color:var(--gold);

}

.navbar-brand span{

    font-size:24px;

    font-weight:700;

    line-height:1;

}

.navbar-brand small{

    font-size:12px;

    letter-spacing:2px;

}

/* Nav Links */

.nav-link{

    color:#fff;

    margin:0 12px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.custom-navbar.scrolled .nav-link{

    color:#333;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.nav-link:hover{

    color:var(--gold);

}

/* Donate Button */

.donate-btn{

    background:linear-gradient(45deg,#FF9800,#E65100);

    color:#fff;

    border-radius:40px;

    padding:12px 28px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(230,81,0,.35);

}

.donate-btn:hover{

    transform:translateY(-3px);

    color:#fff;

    box-shadow:0 15px 30px rgba(230,81,0,.45);

}

/*----------------------------------
    Hero
-----------------------------------*/

.hero{

    height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:url('../images/homehero.jpg') center center;

    background-size:cover;

    background-attachment:scroll;
	
	

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,0);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.55));

}

.hero-content{

    position:relative;

    z-index:5;

    color:#fff;

}

.hero-content h5{

    color:var(--gold);

    font-size:28px;

    margin-bottom:15px;

}

.hero-content h1{

    font-size:70px;

    font-weight:700;

    margin-bottom:25px;

    text-shadow:0 5px 18px rgba(0,0,0,.35);

}

.hero-content p{

    font-size:22px;

    max-width:750px;

    margin:auto;

    line-height:1.8;

    opacity:.95;

}

/* Hero Buttons */

.hero-btn{

    background:linear-gradient(45deg,#FF9800,#E65100);

    color:#fff;

    border-radius:50px;

    padding:15px 36px;

    margin:10px;

    font-weight:600;

    transition:.35s;

}

.hero-btn:hover{

    color:#fff;

    transform:translateY(-4px);

}

.hero-btn-outline{

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    padding:15px 36px;

    margin:10px;

    transition:.35s;

}

.hero-btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*----------------------------------
    Scroll Down
-----------------------------------*/

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:34px;

    animation:float 2s infinite;

    z-index:10;

}

@keyframes float{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,10px);

}

}

/*----------------------------------
    Section Heading
-----------------------------------*/

.section-title{

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:var(--brown);

    font-weight:700;

}

.section-title p{

    color:#666;

    max-width:700px;

    margin:auto;

}

/*----------------------------------
    Card Style
-----------------------------------*/

.card{

    border:none;

    border-radius:var(--radius);

    transition:.4s;

    box-shadow:var(--shadow);

}

.card:hover{

    transform:translateY(-10px);

}

/*----------------------------------
    Footer (future use)
-----------------------------------*/

footer{

    background:#3E2723;

    color:#ddd;

    padding:70px 0;

}

footer h5{

    color:var(--gold);

    margin-bottom:20px;

}

footer a{

    color:#ddd;

    text-decoration:none;

}

footer a:hover{

    color:#fff;

}

/*----------------------------------
    Responsive
-----------------------------------*/

@media(max-width:991px){

.hero{

background-attachment:scroll;

}

.hero-content h1{

font-size:46px;

}

.hero-content p{

font-size:18px;

}

.navbar{

background:#fff !important;

box-shadow:var(--shadow);

}

.navbar-brand{

color:var(--primary)!important;

}

.nav-link{

color:#333!important;

margin:10px 0;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:34px;

}

.hero-content h5{

font-size:22px;

}

.hero-content p{

font-size:16px;

}

.hero-btn,

.hero-btn-outline{

display:block;

width:100%;

margin:12px auto;

}

.top-bar{

display:none;

}

}
/*=========================================
        Welcome Section
=========================================*/

.welcome-section{

    padding:100px 0;

    background:#FFF8F0;

}

.section-subtitle{

    display:inline-block;

    background:#FFF0E3;

    color:#E65100;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.welcome-title{

    font-size:48px;

    font-weight:700;

    color:#333;

    line-height:1.3;

}

.welcome-title span{

    color:#E65100;

}

.welcome-text{

    margin-top:25px;

    font-size:17px;

    color:#666;

    line-height:1.9;

}

.welcome-image{

    overflow:hidden;

    border-radius:20px;

}

.welcome-image img{

    transition:.6s;

}

.welcome-image:hover img{

    transform:scale(1.05);

}

.feature-box{

    background:#fff;

    padding:25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(230,81,0,.18);

}

.feature-box i{

    font-size:36px;

    color:#E65100;

    margin-bottom:15px;

}

.feature-box h5{

    font-weight:600;

    margin-bottom:12px;

}

.feature-box p{

    color:#666;

    font-size:15px;

    margin:0;

}

.about-btn{

    background:linear-gradient(135deg,#E65100,#FF9800);

    color:#fff;

    padding:14px 34px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(230,81,0,.3);

}
/*=========================================
        Statistics Section
=========================================*/

.stats-section{

    padding:100px 0;

    background:linear-gradient(135deg,#E65100,#FF9800);

    position:relative;

    overflow:hidden;

}

.stats-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:url('../images/pattern.png');

    opacity:.05;

}

.stat-card{

    position:relative;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:40px 25px;

    color:#fff;

    transition:.4s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);

}

.stat-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    color:#E65100;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.stat-card h2{

    font-size:52px;

    font-weight:700;

    margin-bottom:10px;

}

.stat-card h5{

    font-weight:600;

    margin-bottom:15px;

}

.stat-card p{

    opacity:.9;

    margin:0;

}
/*=========================================
        Divine Services
=========================================*/

.services-section{

    padding:100px 0;

    background:#fff;

}

.section-badge{

    display:inline-block;

    background:#FFF0E3;

    color:#E65100;

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

}

.section-heading{

    font-size:46px;

    font-weight:700;

    color:#2B2B2B;

}

.section-description{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:17px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    border:1px solid #f2f2f2;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(230,81,0,.15);

    border-color:#FF9800;

}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#E65100,#FF9800);

    color:#fff;

    font-size:36px;

    margin-bottom:25px;

}

.service-card h4{

    font-weight:600;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}
/*=========================================
        Trust Members
=========================================*/

.trust-section{

    padding:100px 0;

    background:#FFF8F0;

}

.trust-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

}

.trust-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(230,81,0,.15);

}

.trust-image{

    height:320px;

    overflow:hidden;

}

.trust-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.trust-card:hover img{

    transform:scale(1.08);

}

.trust-content{

    padding:30px;

    text-align:center;

}

.trust-content h4{

    font-weight:700;

    margin-bottom:10px;

}

.trust-content span{

    display:inline-block;

    background:#FFF0E3;

    color:#E65100;

    padding:6px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

}

.trust-content p{

    color:#666;

    line-height:1.8;

}
/*=========================================
        Temple Timings
=========================================*/

.timing-section{

    padding:100px 0;

    background:#ffffff;

}

.timing-card{

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:40px 25px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    border-top:5px solid #E65100;

    height:100%;

}

.timing-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(230,81,0,.15);

}

.timing-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#E65100,#FF9800);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:40px;

    margin-bottom:25px;

}

.timing-card h4{

    font-weight:600;

    margin-bottom:15px;

}

.timing-card h2{

    color:#E65100;

    font-weight:700;

    margin-bottom:10px;

}

.timing-card p{

    color:#777;

}

/*=========================================
        Temple Gallery
=========================================*/

.gallery-section{

    background:#FFF8F0;

    padding:100px 0;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    position:relative;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.45),
    transparent);

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::after{

    opacity:1;

}

/*=========================================
        Mission Section
=========================================*/

.mission-section{

    padding:100px 0;

    background:#ffffff;

}

.mission-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border-top:4px solid #E65100;

}

.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(230,81,0,.15);

}

.mission-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#E65100,#FF9800);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:20px;

}

.mission-card h4{

    font-weight:600;

    margin-bottom:15px;

}

.mission-card p{

    color:#666;

    line-height:1.8;

}

/*=========================================
        Donation Section
=========================================*/

.donation-section{

    padding:100px 0;

    background:linear-gradient(135deg,#FFF4E8,#FFFDF8);

}

.donate-main-btn{

    background:#E65100;

    color:#fff;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.donate-main-btn:hover{

    background:#C84A00;

    color:#fff;

}

.donate-outline-btn{

    border:2px solid #E65100;

    color:#E65100;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.donate-outline-btn:hover{

    background:#E65100;

    color:#fff;

}

.donation-box{

    background:#fff;

    padding:40px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.donation-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#E65100,#FF9800);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    margin-bottom:25px;

}

/*=========================================
        Contact Section
=========================================*/

.contact-section{

    background:#ffffff;

    padding:100px 0;

}

.contact-info{

    background:#FFF8F0;

    padding:35px;

    border-radius:20px;

    height:100%;

}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-item .icon{

    width:60px;

    height:60px;

    background:linear-gradient(135deg,#E65100,#FF9800);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.contact-item h5{

    font-weight:600;

    margin-bottom:8px;

}

.contact-form{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.form-control{

    border-radius:12px;

    padding:14px;

    border:1px solid #ddd;

}

.form-control:focus{

    border-color:#E65100;

    box-shadow:none;

}

.contact-btn{

    background:#E65100;

    color:#fff;

    padding:14px 36px;

    border-radius:50px;

    font-weight:600;

}

.contact-btn:hover{

    background:#C84A00;

    color:#fff;

}

/*=========================================
        Footer
=========================================*/

.footer{

    background:#1E1E1E;

    color:#ddd;

    padding:80px 0 25px;

}

.footer-logo{

    width:70px;

}

.footer h4,
.footer h5{

    color:#fff;

    margin-bottom:20px;

}

.footer p{

    color:#cfcfcf;

    line-height:1.8;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#FF9800;

    padding-left:6px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#333;

    color:#fff;

    margin-right:8px;

    transition:.3s;

}

.footer-social a:hover{

    background:#E65100;

    transform:translateY(-3px);

}

.footer hr{

    border-color:rgba(255,255,255,.1);

    margin:40px 0 20px;

}

.footer-bottom{

    text-align:center;

}

.footer-sloka{

    color:#FFB74D;

    font-size:18px;

    font-weight:600;

    margin-top:10px;

}
/*=========================================
        Page Hero
=========================================*/

.page-hero{

    position:relative;

    padding:180px 0 120px;

    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.60)),
        url("../images/about/banner.jpg") center center/cover no-repeat;

}

.page-overlay{

    position:absolute;

    inset:0;

}

.page-hero-content{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:#FFD54F;

    backdrop-filter:blur(8px);

    font-weight:600;

    margin-bottom:25px;

}

.page-hero h1{

    color:#fff;

    font-size:56px;

    font-weight:700;

    margin-bottom:20px;

}

.page-hero p{

    color:#F5F5F5;

    font-size:20px;

    max-width:750px;

    margin:auto;

    line-height:1.9;

}

.breadcrumb-wrapper{

    margin-top:35px;

}

.breadcrumb{

    margin:0;

    background:none;

}

.breadcrumb a{

    color:#FFD54F;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#fff;

}

.breadcrumb-item+.breadcrumb-item::before{

    color:#ddd;

}

@media(max-width:768px){

.page-hero{

    padding:150px 0 90px;

}

.page-hero h1{

    font-size:38px;

}

.page-hero p{

    font-size:17px;

}

}
/*=========================================
        ABOUT PAGE
=========================================*/

.about-page-section{

    background:#fff;

}

.about-content-box{

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 10px 40px rgba(0,0,0,.06);

}

.about-content-box p{

    font-size:17px;

    line-height:2.1;

    text-align:justify;

    color:#555;

    margin-bottom:28px;

}

.about-content-box p:last-child{

    margin-bottom:0;

}

.about-quote{

    background:#FFF8F1;

    border-radius:20px;

    padding:45px;

    border:1px solid rgba(230,81,0,.15);

}

.about-quote i{

    font-size:34px;

    color:#E67E22;

    margin-bottom:20px;

}

.about-quote h4{

    color:#B45309;

    font-size:28px;

    line-height:1.7;

    font-weight:600;

    margin-bottom:15px;

}

.about-quote span{

    color:#777;

    font-weight:500;

}

@media(max-width:768px){

.about-content-box{

    padding:30px;

}

.about-quote{

    padding:30px;

}

.about-quote h4{

    font-size:22px;

}

}

/*=========================================
        OUR INSPIRATION
=========================================*/

.inspiration-section{

    background:#FFFDF9;

}

.inspiration-image{

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.inspiration-image img{

    transition:.5s;

}

.inspiration-image:hover img{

    transform:scale(1.05);

}

.inspiration-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.inspiration-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.inspiration-item i{

    width:60px;

    height:60px;

    background:#E67E22;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.inspiration-item h5{

    font-size:20px;

    font-weight:600;

    margin-bottom:8px;

}

.inspiration-item p{

    color:#666;

    margin:0;

    line-height:1.8;

}

/*=========================================
        VISION & MISSION
=========================================*/

.vision-section{

    background:#FFFDF9;

}

.vision-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.vision-card:hover{

    transform:translateY(-8px);

}

.vision-icon{

    width:80px;

    height:80px;

    background:linear-gradient(135deg,#f39c12,#e67e22);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.vision-card h3{

    font-weight:700;

    margin-bottom:20px;

}

.vision-card p{

    line-height:2;

    color:#666;

    margin:0;

}

.objective-box{

    background:#fff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.objective-list{

    list-style:none;

    padding:0;

    margin:0;

}

.objective-list li{

    position:relative;

    padding-left:35px;

    margin-bottom:18px;

    line-height:1.9;

}

.objective-list li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#E67E22;

    font-weight:bold;

    font-size:18px;

}

/*=========================================
        CORE VALUES
=========================================*/

.values-section{

    background:#fff;

}

.value-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.07);

    transition:.35s;

    height:100%;

    border:1px solid #f5f5f5;

}

.value-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(230,126,34,.15);

}

.value-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#f39c12,#e67e22);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.value-card h4{

    font-size:24px;

    font-weight:600;

    margin-bottom:15px;

}

.value-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}

/*=========================================
        AREAS OF SERVICE
=========================================*/

.service-area-section{

    background:#FFFDF8;

}

.service-area-card{

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    height:100%;

    border:1px solid #f2f2f2;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.service-area-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(230,126,34,.15);

}

.service-area-card i{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    font-size:30px;

    color:#fff;

    background:linear-gradient(135deg,#f39c12,#e67e22);

}

.service-area-card h5{

    font-size:21px;

    font-weight:600;

    margin-bottom:15px;

    color:#2c2c2c;

}

.service-area-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

/*=========================================
        REGISTRATION
=========================================*/

.registration-section{

    background:#ffffff;

}

.legal-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    height:100%;

}

.legal-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:linear-gradient(135deg,#f39c12,#e67e22);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:20px;

}

.legal-card h4{

    font-weight:600;

    margin-bottom:25px;

}

.legal-table{

    margin:0;

}

.legal-table th{

    width:45%;

    color:#444;

    font-weight:600;

    border:none;

    padding:14px 0;

}

.legal-table td{

    border:none;

    padding:14px 0;

    color:#777;

}

.legal-note{

    background:#FFF8EE;

    padding:30px;

    border-radius:20px;

    border-left:5px solid #E67E22;

}

.legal-note i{

    color:#E67E22;

    font-size:36px;

    margin-bottom:15px;

}

.legal-note p{

    margin:0;

    line-height:1.9;

    color:#555;

}

/*=========================================
        ACHIEVEMENTS
=========================================*/

.achievement-section{

    background:#FFFBF5;

}

.achievement-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.achievement-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(230,126,34,.15);

}

.achievement-card i{

    font-size:42px;

    color:#E67E22;

    margin-bottom:20px;

}

.achievement-card h3{

    font-size:42px;

    font-weight:700;

    color:#E67E22;

    margin-bottom:10px;

}

.achievement-card h5{

    margin:0;

    font-weight:600;

}

/*=========================================
        JOIN OUR MISSION
=========================================*/

.cta-section{

    background:#FFF8EF;

}

.cta-wrapper{

    background:linear-gradient(135deg,#D97706,#F59E0B);

    border-radius:30px;

    padding:70px 50px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(217,119,6,.25);

}

.cta-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,rgba(255,255,255,.18),transparent 35%),
        radial-gradient(circle at bottom left,rgba(255,255,255,.12),transparent 30%);

    pointer-events:none;

}

.cta-wrapper>*{

    position:relative;

    z-index:2;

}

.cta-wrapper h2{

    font-size:2.4rem;

    font-weight:700;

}

.cta-text{

    max-width:820px;

    font-size:1.08rem;

    line-height:2;

    color:rgba(255,255,255,.95);

}

.cta-feature{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:20px;

    padding:30px 25px;

    height:100%;

    transition:.3s;

}

.cta-feature:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}

.cta-feature i{

    font-size:42px;

    margin-bottom:20px;

}

.cta-feature h5{

    font-weight:600;

    margin-bottom:12px;

}

.cta-feature p{

    margin:0;

    line-height:1.8;

    color:rgba(255,255,255,.92);

}

.cta-wrapper .btn{

    min-width:220px;

}

@media (max-width:768px){

    .cta-wrapper{

        padding:50px 25px;

    }

    .cta-wrapper h2{

        font-size:1.9rem;

    }

}

/*=========================================
        PAGE HERO
=========================================*/

.mandir-hero{

    position:relative;

    background:url('assets/images/mandir-banner.jpg') center center/cover;

    padding:170px 0 120px;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60));

}

.mandir-hero .container{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-weight:600;

    backdrop-filter:blur(8px);

    margin-bottom:25px;

}

.mandir-hero h1{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin-bottom:25px;

}

.mandir-hero p{

    color:#f2f2f2;

    line-height:2;

    max-width:850px;

    margin:auto;

    margin-bottom:35px;

}

.breadcrumb{

    background:none;

}

.breadcrumb a{

    color:#FFD54F;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#fff;

}

/*=========================================
        TEMPLE INTRODUCTION
=========================================*/

.temple-intro{

    background:#fff;

}

.temple-image img{

    width:100%;

    border-radius:25px;

}

.intro-highlight{

    background:#FFF8EF;

    border-left:4px solid #E67E22;

    border-radius:15px;

    text-align:center;

    padding:22px;

    margin-top:20px;

}

.intro-highlight h3{

    color:#E67E22;

    font-size:34px;

    font-weight:700;

    margin-bottom:8px;

}

.intro-highlight span{

    font-weight:600;

    color:#555;

}

/*=========================================
        TEMPLE HISTORY
=========================================*/

.history-section{

    background:#FFFDF9;

}

.timeline{

    position:relative;

    max-width:1000px;

    margin:0 auto;

    padding:20px 0;

}

.timeline::before{

    content:"";

    position:absolute;

    top:0;

    bottom:0;

    left:50%;

    width:4px;

    background:linear-gradient(to bottom,#F39C12,#E67E22);

    transform:translateX(-50%);

}

.timeline-item{

    position:relative;

    width:50%;

    padding:20px 40px;

}

.timeline-item.left{

    left:0;

    text-align:right;

}

.timeline-item.right{

    left:50%;

}

.timeline-content{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    position:relative;

}

.timeline-year{

    display:inline-block;

    background:#E67E22;

    color:#fff;

    padding:6px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:15px;

}

.timeline-content h4{

    margin-bottom:15px;

    font-weight:700;

}

.timeline-content p{

    color:#666;

    line-height:1.9;

    margin:0;

}

.timeline-item::after{

    content:"";

    position:absolute;

    top:45px;

    width:18px;

    height:18px;

    background:#fff;

    border:4px solid #E67E22;

    border-radius:50%;

    z-index:2;

}

.timeline-item.left::after{

    right:-9px;

}

.timeline-item.right::after{

    left:-9px;

}

@media(max-width:991px){

    .timeline::before{

        left:20px;

    }

    .timeline-item{

        width:100%;

        left:0 !important;

        text-align:left;

        padding-left:60px;

        padding-right:0;

        margin-bottom:30px;

    }

    .timeline-item::after{

        left:11px;

    }

}

/*=========================================
        DEITIES
=========================================*/

.deity-section{

    background:#fff;

}

.deity-card{

    background:#fff;

    padding:35px 25px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.deity-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(230,126,34,.15);

}

.deity-card img{

    width:140px;

    height:140px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #FFF3E0;

    margin-bottom:25px;

}

.deity-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.deity-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

/*=========================================
        ARCHITECTURE
=========================================*/

.architecture-section{

    background:#FFFDF8;

}

.architecture-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.arch-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

    align-items:flex-start;

}

.arch-item i{

    width:65px;

    height:65px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#F39C12,#E67E22);

    color:#fff;

    font-size:24px;

}

.arch-item h5{

    font-weight:700;

    margin-bottom:8px;

}

.arch-item p{

    margin:0;

    color:#666;

    line-height:1.8;

}

/*=========================================
        TEMPLE RULES
=========================================*/

.rules-section{

    background:#FFFDF9;

}

.rule-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    height:100%;

}

.rule-list{

    list-style:none;

    padding:0;

    margin:0;

}

.rule-list li{

    position:relative;

    padding-left:38px;

    margin-bottom:22px;

    line-height:1.9;

}

.rule-list li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#E67E22;

    font-size:20px;

    font-weight:bold;

}

/*=========================================
        VISIT
=========================================*/

.visit-section{

background:#fff;

}

.visit-card{

background:#FFF8EF;

border-radius:20px;

padding:35px;

text-align:center;

height:100%;

transition:.35s;

}

.visit-card:hover{

transform:translateY(-8px);

}

.visit-card i{

font-size:42px;

color:#E67E22;

margin-bottom:20px;

}

.visit-card h5{

font-weight:700;

margin-bottom:15px;

}

.visit-card p{

margin:0;

line-height:1.9;

}

/*=========================================
        FAQ
=========================================*/

.faq-section{

background:#FFFDF9;

}

.accordion-item{

border:none;

margin-bottom:20px;

border-radius:18px !important;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.07);

}

.accordion-button{

font-weight:600;

padding:22px;

background:#fff;

}

.accordion-button:not(.collapsed){

background:#FFF3E0;

color:#E67E22;

box-shadow:none;

}

.accordion-body{

line-height:1.9;

color:#666;

}

/*=========================================
        INNER PAGE HERO
=========================================*/

.inner-page-hero{

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 500px;

    padding: 160px 0 100px;

    overflow: hidden;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}

.donation-hero{

    background-image: url("../images/donation-banner.jpg");

}

.hero-overlay{

    position: absolute;

    inset: 0;

    background: linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.55)
    );

}

.inner-page-hero .container{

    position: relative;

    z-index: 2;

}

.hero-badge{

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(255,255,255,.18);

    backdrop-filter: blur(8px);

    color: #fff;

    font-size: .95rem;

    font-weight: 600;

    letter-spacing: .5px;

}

.hero-title{

    color: #fff;

    font-size: clamp(2.5rem,5vw,4rem);

    font-weight: 700;

    margin: 25px 0;

    line-height: 1.2;

}

.hero-description{

    max-width: 760px;

    margin: auto;

    color: rgba(255,255,255,.92);

    font-size: 1.1rem;

    line-height: 1.9;

}

.breadcrumb{

    margin-top: 35px;

}

.breadcrumb-item a{

    color: #FFD580;

    text-decoration: none;

}

.breadcrumb-item.active{

    color: #fff;

}

.breadcrumb-item + .breadcrumb-item::before{

    color: rgba(255,255,255,.7);

}

/*=========================================
        WHY DONATE
=========================================*/

.why-donate{

    background:#fff;

}

.donate-image{

    position:relative;

}

.donate-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.donation-quote{

    margin-top:35px;

    padding:25px 30px;

    border-left:5px solid #E67E22;

    background:#FFF8F1;

    border-radius:0 18px 18px 0;

    position:relative;

}

.donation-quote i{

    color:#E67E22;

    font-size:26px;

    margin-bottom:15px;

}

.donation-quote p{

    margin:0;

    line-height:1.9;

    font-style:italic;

    color:#555;

}

/*=========================================
        DONATION PURPOSES
=========================================*/

.donation-purpose{
    background:#FFFBF5;
}

.purpose-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    height:100%;
    text-align:center;
    border:1px solid rgba(230,126,34,.12);
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:all .35s ease;
    overflow:hidden;
}

.purpose-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#F39C12,#E67E22,#D35400);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.purpose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.purpose-card:hover::before{
    transform:scaleX(1);
}

.purpose-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#F39C12,#E67E22);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    box-shadow:0 12px 30px rgba(230,126,34,.30);
    transition:.35s;
}

.purpose-card:hover .purpose-icon{
    transform:rotateY(180deg) scale(1.08);
}

.purpose-card h4{
    font-size:1.45rem;
    font-weight:700;
    color:#8B4513;
    margin-bottom:18px;
}

.purpose-card p{
    margin:0;
    color:#555;
    font-size:1rem;
    line-height:1.9;
}

/* Responsive */

@media (max-width:991px){

    .purpose-card{
        padding:35px 25px;
    }

}

@media (max-width:767px){

    .purpose-card{
        padding:30px 22px;
    }

    .purpose-icon{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .purpose-card h4{
        font-size:1.25rem;
    }

    .purpose-card p{
        font-size:.95rem;
        line-height:1.8;
    }

}

/*=========================================
        CONTACT HERO
=========================================*/

.contact-hero{

    background-image: url("../images/contact-banner.jpg");

}

/*=========================================
        CONTACT INFORMATION
=========================================*/

.contact-info-section{
    background:#FFFDF8;
}

.contact-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    border:1px solid rgba(230,126,34,.12);
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:all .35s ease;
    overflow:hidden;
}

.contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#F39C12,#E67E22,#D35400);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.contact-card:hover::before{
    transform:scaleX(1);
}

.contact-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#F39C12,#E67E22);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 12px 30px rgba(230,126,34,.30);
    transition:.35s ease;
}

.contact-card:hover .contact-icon{
    transform:rotateY(180deg) scale(1.08);
}

.contact-card h5{
    font-size:1.35rem;
    font-weight:700;
    color:#8B4513;
    margin-bottom:18px;
}

.contact-card p{
    margin:0;
    color:#666;
    line-height:1.9;
    font-size:1rem;
}

.contact-card a{
    color:#666;
    text-decoration:none;
    transition:.3s;
}

.contact-card a:hover{
    color:#E67E22;
}

/* Responsive */

@media (max-width:991px){

    .contact-card{
        padding:35px 25px;
    }

}

@media (max-width:767px){

    .contact-card{
        padding:30px 22px;
    }

    .contact-icon{
        width:70px;
        height:70px;
        font-size:26px;
        margin-bottom:20px;
    }

    .contact-card h5{
        font-size:1.2rem;
    }

    .contact-card p{
        font-size:.95rem;
        line-height:1.8;
    }

}

/*=========================================
        VISIT TEMPLE
=========================================*/

.visit-temple{
    background:#fff;
}

.visit-info-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(230,126,34,.12);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
}

.visit-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}

.visit-info-card i{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    background:linear-gradient(135deg,#F39C12,#E67E22);
    color:#fff;
    font-size:24px;
}

.visit-info-card h6{
    font-weight:700;
    color:#8B4513;
    margin-bottom:10px;
}

.visit-info-card p{
    margin:0;
    color:#666;
    line-height:1.8;
}

.map-wrapper{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.map-wrapper iframe{
    width:100%;
    height:500px;
    border:0;
}

/*=========================================
        CONTACT FORM
=========================================*/

.contact-form-section{
    background:#FFFDF8;
}

.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form-box .form-control{
    border-radius:12px;
    padding:14px 18px;
    border:1px solid #ddd;
    box-shadow:none;
}

.contact-form-box .form-control:focus{
    border-color:#E67E22;
    box-shadow:0 0 0 .2rem rgba(230,126,34,.15);
}

.contact-form-box textarea{
    resize:none;
}

.contact-form-box .btn-primary{
    background:linear-gradient(135deg,#F39C12,#E67E22);
    border:none;
    border-radius:50px;
    padding:14px 40px;
    font-weight:600;
}

.contact-form-box .btn-primary:hover{
    background:linear-gradient(135deg,#E67E22,#D35400);
}

@media(max-width:768px){

    .contact-form-box{
        padding:30px 20px;
    }

    .map-wrapper iframe{
        height:350px;
    }

}