html,
body{

    width:100%;
    overflow-x:hidden;

}
section{

    width:100%;
    overflow:hidden;

}

img{

    max-width:100%;
    height:auto;
    display:block;

}
.hero-section{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-slider{

    position:absolute;

    inset:0;

}

.hero-slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    opacity:0;

    transform:scale(1.08);

    transition:
        opacity 1.5s ease,
        transform 5s ease;

}

.hero-slide.active{

    opacity:1;

    transform:scale(1);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        );

    z-index:2;

}

.hero-content{

    position:relative;

    z-index:3;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.hero-card{

    width:100%;

    max-width:850px;

    text-align:center;

    padding:50px;

    border-radius:20px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.2);

    box-shadow:
        0 10px 40px rgba(0,0,0,.25);

}

.hero-subtitle{

    color:#ffd17a;

    font-size:20px;

    display:block;

    margin-bottom:15px;

}

.hero-card h1{

    color:#fff;

    font-size:64px;

    font-weight:700;

    margin-bottom:20px;

}

.hero-card p{

    color:#f3f3f3;

    font-size:18px;

    line-height:1.8;

    max-width:650px;

    margin:auto auto 35px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn{

    text-decoration:none;

    padding:15px 35px;

    border-radius:50px;

    transition:.4s;

}

.primary-btn{

    background:#ff7b35;

    color:#fff;

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

}

.secondary-btn:hover{

    background:#fff;

    color:#000;

}

@media(max-width:991px){

    .hero-card h1{

        font-size:48px;

    }

}

@media(max-width:768px){

    .hero-card{

        padding:35px 25px;

    }

    .hero-card h1{

        font-size:38px;

    }

    .hero-card p{

        font-size:16px;

    }

}

@media(max-width:576px){

    .hero-card h1{

        font-size:30px;

    }

}
.home-donation-section{

    padding:50px 0;
    background:#faf8f6;

}

.home-donation-container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

.home-section-tag{

    display:block;
    text-align:center;
    color:#ff6b35;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;

}

.home-section-title{

    text-align:center;
    font-size:58px;
    line-height:1.15;
    font-weight:300;
    color:#2d2d2d;
    margin-bottom:60px;
    font-family:Georgia, serif;

}

.home-donation-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.home-donation-card{

    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;

}

.home-donation-card:hover{

    transform:translateY(-8px);

}

.home-card-image{

    height:250px;
    position:relative;
    overflow:hidden;

}

.home-card-image::after{

    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:120px;

    background:linear-gradient(
        transparent,
        rgba(255,255,255,.95),
        #fff
    );

}

.home-card-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.home-donation-card:hover .home-card-image img{

    transform:scale(1.08);

}

.home-card-content{

    padding:15px 30px 30px;
    text-align:center;

}

.home-card-content h3{

    font-size:24px;
    font-weight:400;
    line-height:1.4;
    color:#2c2c2c;
    margin-bottom:18px;
    font-family:Georgia, serif;

}

.home-card-content p{

    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:28px;

}

.home-donate-btn{

    display:inline-block;
    text-decoration:none;
    background:#ff6b35;
    color:#fff;
    padding:14px 38px;
    border-radius:50px;
    font-size:16px;
    font-weight:500;
    transition:.3s;

}

.home-donate-btn:hover{

    background:#e65420;
    transform:translateY(-2px);

}
@media(max-width:1200px){

    .home-donation-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .home-section-title{

        font-size:42px;

    }

    .home-donation-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .home-donation-section{

        padding:70px 0;

    }

    .home-section-title{

        font-size:34px;

    }

    .home-card-image{

        height:220px;

    }

}
/* ==================================
   Temple Sponsor Section
================================== */

.temple-sponsor-section{

    background:#fff;

    padding:100px 0 0;

    overflow:hidden;

    position:relative;

}

.temple-container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

.temple-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

    position:relative;

    z-index:2;

}

.temple-tag{

    display:inline-block;

    color:#ff6b35;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.temple-left h2{

    font-size:72px;

    line-height:1.08;

    font-weight:300;

    color:#2d2d2d;

    font-family:Georgia, serif;

}

.temple-right p{

    font-size:18px;

    line-height:2;

    color:#444;

    margin-bottom:35px;

}

.temple-donate-btn{

    display:inline-block;

    padding:14px 38px;

    background:#ff6b35;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

}

.temple-donate-btn:hover{

    background:#ea5622;

    transform:translateY(-3px);

}

.temple-bg-image{

    width:100%;

margin-top:-320px;

    position:relative;

    z-index:1;

}

.temple-bg-image img{

    width:100%;

    height:800px;

    object-fit:cover;

    object-position:top center;

    display:block;

}
@media(max-width:992px){

    .temple-content{

        grid-template-columns:1fr;

        gap:40px;

    }

    .temple-left h2{

        font-size:54px;

    }

}

@media(max-width:768px){

    .temple-sponsor-section{

        padding:70px 0 0;

    }

    .temple-left h2{

        font-size:40px;

    }

    .temple-right p{

        font-size:16px;

        line-height:1.8;

    }

}

@media(max-width:576px){

    .temple-left h2{

        font-size:34px;

    }

}
/* ===========================
   About Temple Section
=========================== */

.about-temple-section{

    padding:50px 0;

    background:#fff;

}

.about-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:100px;

    align-items:center;

}

/* Image Side */

.about-image-wrapper{

    position:relative;

    width:520px;

    height:520px;

    margin:auto;

}

.rotating-svg{

    position:absolute;

    width:100%;

    height:100%;

    top:0;
    left:0;

    animation:rotateMandala 30s linear infinite;

}

.about-main-image{

    position:absolute;

    width:340px;

    height:340px;

    object-fit:cover;

    border-radius:50%;

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

/* Content */

.about-tag{

    color:#ff6b35;

    font-size:14px;

    letter-spacing:2px;

    font-weight:600;

}

.about-content-side h2{

    font-size:62px;

    line-height:1.12;

    font-weight:300;

    margin:20px 0 30px;

    color:#222;

    font-family:Georgia, serif;

}

.about-content-side p{

    font-size:18px;

    line-height:2;

    color:#555;

    margin-bottom:20px;

}

.about-btn{

    display:inline-block;

    margin-top:15px;

    text-decoration:none;

    background:#ff6b35;

    color:#fff;

    padding:14px 35px;

    border-radius:50px;

    transition:.3s;

}

.about-btn:hover{

    background:#e25723;

    transform:translateY(-3px);

}

/* Rotation */

@keyframes rotateMandala{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}
@media(max-width:991px){

    .about-container{

        grid-template-columns:1fr;

        gap:60px;

    }

    .about-content-side{

        text-align:center;

    }

    .about-content-side h2{

        font-size:48px;

    }

}

@media(max-width:768px){

    .about-image-wrapper{

        width:380px;
        height:380px;

    }

    .about-main-image{

        width:250px;
        height:250px;

    }

    .about-content-side h2{

        font-size:38px;

    }

}

@media(max-width:480px){

    .about-image-wrapper{

        width:300px;
        height:300px;

    }

    .about-main-image{

        width:200px;
        height:200px;

    }

    .about-content-side h2{

        font-size:32px;

    }

}/* ==========================
   Temple Service Section
========================== */

.services-section{

    position:relative;

    background:#5b180d;

    padding:60px 0;

    overflow:hidden;

}

.services-container{

    width:90%;

    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    position:relative;

    z-index:2;

}

/* Card */

.service-card{

    background:#7a2a18;

    border-radius:30px;

    min-height:430px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:45px 30px;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}
.service-card p{

    color:#f6e8e2;

    font-size:17px;

    line-height:1.8;

    margin-bottom:25px;

    max-width:300px;

}

.service-card p strong{

    color:#ffd36b;

    font-weight:600;

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-icon{

    width:170px;

    height:auto;

    margin-bottom:25px;

}

.service-card h3{

    color:#fff;

    font-size:28px;

    font-weight:400;

    line-height:1.4;

    margin-bottom:25px;

    font-family:Georgia, serif;

}

.service-card a{

    color:#fff;

    text-decoration:none;

    font-size:22px;

    font-family:Georgia, serif;

}

/* Side Decoration */

.service-pattern{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    z-index:1;

}

.pattern-left{

    left:0;

    width:170px;

}

.pattern-right{

    right:0;

    width:170px;

}
/* Laptop */

@media(max-width:1200px){

    .services-container{

        grid-template-columns:repeat(3,1fr);

        gap:15px;

    }

    .service-card{

        min-height:360px;

        padding:30px 20px;

    }

    .service-icon{

        width:120px;

    }

    .service-card h3{

        font-size:22px;

    }

    .service-card p{

        font-size:15px;

    }

    .service-pattern{

        display:none;

    }

}
@media(max-width:767px){

    .services-container{

        grid-template-columns:1fr;

    }

    .service-card{

        min-height:320px;

    }

}
/*=========================
    Trustees Section
==========================*/

.trustees-section{

    padding:50px 0;

    background:#faf8f4;

}

.trustees-section .container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

.section-subtitle{

    display:block;

    text-align:center;

    color:#f36b2a;

    font-size:15px;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:15px;

}

.section-title{

    text-align:center;

    font-size:58px;

    font-family:Georgia, serif;

    font-weight:400;

    color:#2b2b2b;

    margin-bottom:20px;

}

.trustees-desc{

    max-width:760px;

    margin:auto;

    text-align:center;

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:60px;

}

/* Cards */

.trustees-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.trustee-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.trustee-card:hover{

    transform:translateY(-12px);

}

.trustee-image{

    overflow:hidden;

}

.trustee-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.5s;

}

.trustee-card:hover .trustee-image img{

    transform:scale(1.08);

}

.trustee-content{

    padding:28px;

    text-align:center;

}

.trustee-content h3{

    font-size:28px;

    font-family:Georgia, serif;

    color:#2d2d2d;

    margin-bottom:10px;

    font-weight:500;

}

.trustee-content span{

    color:#f36b2a;

    font-size:17px;

    font-weight:600;

}
@media(max-width:992px){

    .section-title{

        font-size:42px;

    }

    .trustees-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .trustees-grid{

        grid-template-columns:1fr;

    }

    .trustee-image img{

        height:350px;

    }

    .section-title{

        font-size:34px;

    }

}

/*==================================
 Social Activity
===================================*/

.social-activity-section{

    padding:50px 0;

    background:#fdf7f2;

}

.social-activity-section .container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

.social-top-text{

    max-width:900px;

    margin:20px auto 70px;

    text-align:center;

    line-height:2;

    color:#555;

    font-size:18px;

}

.social-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.social-tag{

    display:inline-block;

    color:#f36b2a;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:18px;

}

.social-content h3{

    font-size:58px;

    font-family:Georgia, serif;

    font-weight:400;

    color:#2c2c2c;

    line-height:1.15;

    margin-bottom:25px;

}

.social-content p{

    font-size:18px;

    line-height:2;

    color:#555;

    margin-bottom:25px;

}

.social-list{

    list-style:none;

    margin:0;
    padding:0;

}

.social-list li{

    position:relative;

    padding-left:34px;

    margin-bottom:18px;

    font-size:18px;

    color:#333;

    font-weight:500;

}

.social-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#ff6b35;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

}

.social-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 35px;

    background:#ff6b35;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.35s;

}

.social-btn:hover{

    background:#e75a25;

    transform:translateY(-3px);

}

.social-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 15px 45px rgba(0,0,0,.12);

}

.social-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.social-image:hover img{

    transform:scale(1.08);

}
@media(max-width:992px){

    .social-wrapper{

        grid-template-columns:1fr;

    }

    .social-content{

        order:2;

    }

    .social-image{

        order:1;

    }

    .social-content h3{

        font-size:42px;

    }

}

@media(max-width:768px){

    .social-activity-section{

        padding:80px 0;

    }

    .social-content h3{

        font-size:34px;

    }

    .social-top-text{

        font-size:16px;

    }

    .social-content p{

        font-size:16px;

    }

    .social-list li{

        font-size:16px;

    }

}
/*=====================================
        HOME GALLERY
======================================*/

.home-gallery-section{

    padding:50px 0;
    background:#fdf7f2;

}

.home-gallery-container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

.home-gallery-tag{

    display:block;
    text-align:center;
    color:#f36b2a;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:15px;

}

.home-gallery-title{

    text-align:center;
    font-size:58px;
    font-family:Georgia,serif;
    font-weight:400;
    color:#2b2b2b;
    line-height:1.15;
    margin-bottom:20px;

}

.home-gallery-text{

    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
    color:#666;
    line-height:1.9;
    font-size:18px;

}

.home-gallery-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.home-gallery-card{

    position:relative;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
    height:430px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.home-gallery-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.home-gallery-card:hover img{

    transform:scale(1.12);

}

.home-gallery-overlay{

    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:30px;
    background:linear-gradient(transparent,rgba(0,0,0,.75));

}

.home-gallery-overlay h3{

    color:#fff;
    font-size:28px;
    font-family:Georgia,serif;
    font-weight:400;

}

.home-gallery-btn-wrap{

    text-align:center;
    margin-top:55px;

}

.home-gallery-btn{

    display:inline-block;
    padding:15px 38px;
    background:#f36b2a;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;

}

.home-gallery-btn:hover{

    background:#de5c22;

}

/*==========================
      Reveal Animation
===========================*/

.home-reveal{

    opacity:0;
    transition:1s;

}

.home-reveal.home-left{

    transform:translateX(-80px);

}

.home-reveal.home-right{

    transform:translateX(80px);

}

.home-reveal.home-bottom{

    transform:translateY(80px);

}

.home-reveal.active{

    opacity:1;
    transform:translate(0);

}

/*==========================
      Responsive
===========================*/

@media(max-width:1200px){

    .home-gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .home-gallery-grid{

        grid-template-columns:1fr;

    }

    .home-gallery-card{

        height:320px;

    }

    .home-gallery-title{

        font-size:38px;

    }

}

@media(max-width:576px){

    .home-gallery-title{

        font-size:32px;

    }

    .home-gallery-text{

        font-size:16px;

    }

}