﻿html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .navbar-brand {
    font-family: 'Playfair Display', 'Segoe UI', serif;
}

::selection {
    background: #c89b3c;
    color: white;
}



/* =========================
        NAVBAR
========================= */

.custom-nav {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 15px 0;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.06);
    z-index: 999;
    transition: 0.3s ease;
}

.navbar-brand {
    color: #c89b3c !important;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.brand-om {
    display: inline-block;
    animation: omPulse 3s ease-in-out infinite;
}

@keyframes omPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.nav-link {
    position: relative;
    color: #333 !important;
    margin-left: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #c89b3c;
    transition: width 0.35s ease;
}

.nav-link:hover {
    color: #c89b3c !important;
}

.nav-link:hover::after {
    width: 100%;
}



/* =========================
        HERO SECTION
========================= */

.hero-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #fffaf2;
}

.hero-title {
    font-size: 65px;
    font-weight: bold;
    line-height: 1.2;
    color: #222;
}

.hero-text {
    margin-top: 20px;
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.hero-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}



/* =========================
        BUTTONS
========================= */

.btn-book {
    margin-top: 30px;
    background: #c89b3c;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

    .btn-book:hover {
        background: #111;
        color: white;
        transform: translateY(-3px);
    }

.btn-read {
    background: #c89b3c;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

    .btn-read:hover {
        background: black;
        color: white;
    }



/* =========================
        ABOUT SECTION
========================= */

.about-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
}

.about-text {
    margin-top: 20px;
    line-height: 2;
    color: #666;
    font-size: 18px;
}



/* =========================
        TITLES
========================= */

.section-title {
    font-size: 45px;
    font-weight: bold;
    color: #222;
}



/* =========================
        SERVICES
========================= */

/*.services-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fafafa;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    font-size: 70px;
    margin-bottom: 20px;
}
*/

/* =========================
        SERVICES PAGE
========================= */
.services-page-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.service-page-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

    .service-page-card:hover {
        transform: translateY(-10px);
    }

.service-page-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-page-content {
    padding: 30px;
    text-align: center;
}

.service-page-icon {
    font-size: 45px;
    color: #c89b3c;
    margin-bottom: 20px;
}

.service-page-content h3 {
    margin-bottom: 15px;
    font-weight: bold;
}

.service-page-content p {
    color: #666;
    line-height: 1.8;
}


/* =========================
        COUNTER
========================= */
.counter-section {
    background: #c89b3c;
    color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

    .counter-section h2 {
        font-size: 50px;
        font-weight: bold;
    }

    .counter-section p {
        margin-top: 10px;
        font-size: 18px;
    }




/* =========================
        CONTACT PAGE
========================= */
.contact-page-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fafafa;
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

    .contact-form-box h2 {
        margin-bottom: 30px;
        font-weight: bold;
    }

.custom-input {
    height: 55px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

textarea.custom-input {
    height: auto;
}


/* =========================
        FOOTER
========================= */
.footer {
    position: relative;
    background: linear-gradient(160deg, #1a1206, #0d0904 75%);
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    padding: 80px 0 0;
    margin-top: 0;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(200, 155, 60, 0.10), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(200, 155, 60, 0.08), transparent 45%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: #d9ad50;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.footer p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #d9ad50;
    padding-left: 6px;
}

.footer hr {
    border-color: rgba(200, 155, 60, 0.20);
    margin: 10px 0 0;
}

.footer-bottom {
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom strong {
    color: #d9ad50;
}



/* =========================
        HOME BOTTOM CTA
========================= */

.contact-section {
    padding: 20px 0 110px;
}

.contact-box {
    position: relative;
    overflow: hidden;
    padding: 55px 55px;
    border-radius: 28px;

    background:
        linear-gradient(110deg, rgba(55, 35, 12, 0.72), rgba(105, 68, 20, 0.62)),
        url('/images/temple.jpg') center 58% / cover no-repeat;

    border: 1px solid rgba(200, 155, 60, 0.45);
    box-shadow: 0 25px 55px rgba(40, 25, 8, 0.22);
}

.contact-box::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: -110px;
    top: -135px;

    border: 1px solid rgba(200, 155, 60, 0.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(200, 155, 60, 0.05),
        0 0 0 70px rgba(200, 155, 60, 0.04);

    pointer-events: none;
}

.contact-box .row {
    position: relative;
    z-index: 2;
}

.contact-box h2 {
    color: white;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    font-size: 16px;
}

.contact-box .btn-book {
    background: #c89b3c;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.contact-box .btn-book:hover {
    background: white;
    color: #222;
}

@media (max-width: 768px) {
    .contact-box {
        text-align: center;
        padding: 40px 28px;
    }

    .contact-box .text-end {
        text-align: center !important;
        margin-top: 25px;
    }
}



/* =========================
        MOBILE RESPONSIVE
========================= */

@media(max-width:768px) {
    .hero-title {
        font-size: 42px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-section {
        text-align: center;
    }

    .hero-img {
        margin-top: 40px;
    }

    .section-title {
        font-size: 35px;
    }

    .contact-box {
        text-align: center;
    }
}




/* =========================
        ABOUT PAGE
========================= */
.page-banner {
    background: #fffaf2;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.page-banner h1 {
    font-size: 55px;
    font-weight: bold;
    color: #222;
}

.page-banner p {
    margin-top: 10px;
    color: #777;
}

.about-page-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-page-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}

.about-page-title {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 25px;
}

.about-page-text {
    color: #666;
    line-height: 2;
    font-size: 18px;
}

.about-points {
    margin-top: 30px;
}

.point-box {
    background: #fffaf2;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    font-weight: 600;
}

.mission-section {
    background: #fafafa;
    padding-top: 100px;
    padding-bottom: 100px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
}

    .mission-card:hover {
        transform: translateY(-10px);
    }

    .mission-card h3 {
        margin-bottom: 20px;
    }


/* =========================
        TEAM PAGE
========================= */
.team-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

.team-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-content {
    padding: 30px;
}

    .team-content h3 {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .team-content h5 {
        color: #c89b3c;
        margin-bottom: 15px;
    }

    .team-content p {
        color: #666;
    }


/* =========================
        PRODUCTS PAGE
========================= */

.products-section {
    padding: 110px 0;
    background: linear-gradient(to bottom,#fffdf9,#faf7f1);
}

.product-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(200,155,60,.18);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: all .4s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 50px rgba(200,155,60,.20);
    border-color: #c89b3c;
}

.product-img-box {
    position: relative;
    overflow: hidden;
    background: #fff8ef;
}

.product-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .6s;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-img-box::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:80px;
    background:linear-gradient(transparent,rgba(0,0,0,.18));
}

.premium-badge{
    position:absolute;
    top:15px;
    left:15px;
    z-index:2;

    background:linear-gradient(90deg,#b8860b,#d4af37);
    color:#fff;

    padding:8px 18px;
    border-radius:50px;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;

    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.product-content {
    padding: 28px;
    text-align: center;
}

.product-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.product-desc {
    color: #666;
    line-height: 1.8;
    min-height: 65px;
    font-size: 15px;
}

.product-price {
    color: #c89b3c;
    font-size: 30px;
    font-weight: 800;
    margin: 20px 0;
}

/* Product page only button */
.product-btn{
    width:100%;
    background:linear-gradient(90deg,#b8860b,#d4af37);
    color:#fff;
    border:none;
    border-radius:50px;
    padding:14px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    transition:.35s;
}

.product-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   FULL HOME MANDALA BACKGROUND
========================= */

.home-mandala-page {
    position: relative;

    background-image:
        linear-gradient(
            rgba(255, 250, 242, 0.82),
            rgba(255, 250, 242, 0.82)
        ),
        url('/images/mandala-pattern.png');

    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}

.home-mandala-page > section {
    position: relative;
    background: transparent !important;
}

.home-mandala-page .counter-section {
    background: rgba(200, 155, 60, 0.94) !important;
}

/* =========================
   PREMIUM HOME TRANSITIONS
========================= */

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-70px);
}

.reveal-right {
    transform: translateX(70px);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-img {
    animation: templeFloat 4s ease-in-out infinite;
}

@keyframes templeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.service-card {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.service-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 20px 45px rgba(200, 155, 60, 0.22);
}

.gallery-img {
    cursor: pointer;
}

.btn-book,
.btn-read {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-book:hover,
.btn-read:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(200, 155, 60, 0.35);
}
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1 !important;
    transform: none !important;
}

/* =========================
   HOME SERVICE BLOCK CARDS
========================= */

.services-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.service-card {
    background: rgba(255, 255, 255, 0.88);
    padding: 35px 30px;
    border-radius: 22px;
    text-align: center;
    height: 100%;

    border: 1px solid rgba(200, 155, 60, 0.22);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

    transition: transform 0.4s ease,
                box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(200, 155, 60, 0.28);
}

.service-icon {
    font-size: 45px;
    color: #c89b3c;
    margin-bottom: 18px;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}


/* =========================
   TEMPLE COUNTER BACKGROUND
========================= */

.home-mandala-page .counter-section {
    position: relative;

    background:
        linear-gradient(
            rgba(35, 20, 5, 0.68),
            rgba(35, 20, 5, 0.68)
        ),
        url('/images/temple.jpg') center center / cover no-repeat
        !important;

    color: white;
}

.home-mandala-page .counter-section h2 {
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
}

.home-mandala-page .counter-section p {
    color: white;
}

/* =========================
   PREMIUM SERVICE CARDS
========================= */

.service-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(200, 155, 60, 0.25);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #c89b3c, #f1d58a);
    transition: 0.5s ease;
    transform: translateX(-50%);
}

.service-card:hover::before {
    width: 100%;
}



.service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.28);

    transition: 0.4s ease;
}

.service-card:hover .service-icon {
    background: #c89b3c;
    color: white;
    transform: rotate(8deg) scale(1.08);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(95, 65, 15, 0.18);
}
/* =========================
   PREMIUM ABOUT DESIGN
========================= */

.premium-about-banner {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(255, 250, 242, 0.80),
            rgba(255, 250, 242, 0.80)
        ),
        url('/images/mandala-pattern.png')
        center center / cover no-repeat !important;
}

.premium-about-banner h1 {
    font-size: 64px;
    margin-top: 12px;
}

.about-small-label {
    color: #c89b3c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.premium-about-section {
    padding: 120px 0;
    background: #fffdf9;
}

.about-image-frame {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(200, 155, 60, 0.35);
    border-radius: 32px;
}

.about-image-frame::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 110px;
    height: 110px;
    border-top: 3px solid #c89b3c;
    border-left: 3px solid #c89b3c;
    border-radius: 25px 0 0 0;
}

.about-page-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
}

.about-experience-badge {
    position: absolute;
    right: -25px;
    bottom: 40px;

    width: 170px;
    padding: 22px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #c89b3c;
    color: white;

    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(80, 50, 5, 0.25);
}

.about-experience-badge strong {
    font-size: 38px;
}

.about-experience-badge span {
    font-size: 13px;
    line-height: 1.4;
}

.about-page-title {
    font-size: 52px;
    margin-top: 14px;
}

.point-box {
    display: flex;
    align-items: center;
    gap: 15px;

    background: white;
    border: 1px solid rgba(200, 155, 60, 0.18);
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);

    transition: 0.4s ease;
}

.gold-check {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(200, 155, 60, 0.15);
    color: #c89b3c;

    font-weight: bold;
}

.point-box:hover {
    transform: translateX(10px);
    border-color: #c89b3c;
}

.premium-mission-section {
    padding: 120px 0;

    background:
        linear-gradient(
            rgba(255, 250, 242, 0.92),
            rgba(255, 250, 242, 0.92)
        ),
        url('/images/mandala-pattern.png')
        center / cover no-repeat !important;
}

.mission-heading {
    margin-bottom: 60px;
}

.mission-card {
    height: 100%;
    padding: 55px 35px;

    border: 1px solid rgba(200, 155, 60, 0.22);
    border-radius: 25px;

    background: rgba(255, 255, 255, 0.85);

    transition: 0.45s ease;
}

.mission-icon {
    width: 85px;
    height: 85px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 38px;

    background: rgba(200, 155, 60, 0.12);
}

.mission-card:hover {
    transform: translateY(-14px);

    border-color: #c89b3c;

    box-shadow:
        0 25px 55px
        rgba(100, 65, 10, 0.18);
}

@media(max-width: 768px) {

    .premium-about-banner h1 {
        font-size: 45px;
    }

    .about-page-title {
        font-size: 40px;
    }

    .about-experience-badge {
        right: 10px;
    }
}
/* =========================
   PREMIUM TEAM DESIGN
========================= */

.premium-team-banner {
    position: relative;
    padding: 110px 0;

    background:
        linear-gradient(
            rgba(255, 250, 242, 0.82),
            rgba(255, 250, 242, 0.82)
        ),
        url('/images/mandala-pattern.png')
        center center / cover no-repeat !important;
}

.team-small-label {
    display: inline-block;

    color: #c89b3c;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.premium-team-banner h1 {
    font-size: 64px;
    font-weight: 800;

    color: #222;

    margin-bottom: 18px;
}

.premium-team-banner p {
    font-size: 18px;
    color: #666;
}


.premium-team-section {
    padding: 120px 0;

    background: #fffdf9;
}

.team-heading {
    max-width: 700px;

    margin: 0 auto 65px;
}

.team-heading h2 {
    font-size: 48px;
    font-weight: 800;

    margin-bottom: 18px;
}

.team-heading p {
    color: #777;

    font-size: 18px;
    line-height: 1.8;
}


.premium-team-card {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    border:
        1px solid
        rgba(200, 155, 60, 0.20);

    background: white;

    box-shadow:
        0 15px 45px
        rgba(60, 40, 10, 0.08);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.premium-team-card:hover {
    transform: translateY(-14px);

    box-shadow:
        0 30px 65px
        rgba(100, 65, 10, 0.18);
}


.team-image-box {
    position: relative;

    overflow: hidden;
}

.premium-team-card .team-img {
    width: 100%;
    height: 390px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.premium-team-card:hover .team-img {
    transform: scale(1.08);
}


.team-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 55%,
            rgba(20, 12, 3, 0.55)
        );
}


.experience-badge {
    position: absolute;

    left: 22px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 10px 16px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(8px);

    color: #8d681d;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.12);
}

.experience-badge i {
    color: #c89b3c;

    font-size: 18px;
}


.premium-team-card .team-content {
    padding: 35px 30px 38px;

    text-align: center;
}

.team-role {
    color: #c89b3c;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.premium-team-card .team-content h3 {
    font-size: 29px;

    margin-top: 10px;
    margin-bottom: 16px;

    font-weight: 800;
}


.team-divider {
    width: 45px;
    height: 2px;

    margin: 0 auto 18px;

    background: #c89b3c;
}


.team-experience {
    color: #777;

    margin-bottom: 25px;
}

.team-experience i {
    color: #c89b3c;

    margin-right: 6px;
}


.team-contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 27px;

    border-radius: 50px;

    background: #c89b3c;

    color: white;

    font-weight: 700;

    text-decoration: none;

    transition: 0.35s ease;
}

.team-contact-btn:hover {
    background: #222;

    color: white;

    transform: translateY(-3px);
}

.team-contact-btn i {
    transition: transform 0.35s ease;
}

.team-contact-btn:hover i {
    transform: translateX(5px);
}


@media(max-width: 768px) {

    .premium-team-banner h1 {
        font-size: 44px;
    }

    .team-heading h2 {
        font-size: 38px;
    }

    .premium-team-card .team-img {
        height: 350px;
    }
}

/* CREATIVE KEYFRAMES */

@keyframes bannerClipReveal {

    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes titleCreativeReveal {

    from {
        opacity: 0;
        transform:
            translateY(80px)
            rotate(3deg);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            rotate(0);
    }
}

@keyframes softCreativeReveal {

    from {
        opacity: 0;
        letter-spacing: 12px;
    }

    to {
        opacity: 1;
    }
}

@keyframes creativeCardReveal {

    from {
        opacity: 0;

        transform:
            translateY(100px)
            rotate(4deg)
            scale(0.90);

        clip-path:
            inset(100% 0 0 0 round 28px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            rotate(0)
            scale(1);

        clip-path:
            inset(0 0 0 0 round 28px);
    }
}
/* =========================
   SAFE ABOUT TRANSITIONS
========================= */

.about-image-frame.about-reveal {
    animation: aboutImageReveal 1.2s
        cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-content-reveal {
    animation: aboutContentReveal 1.2s
        cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mission-heading.mission-reveal {
    animation: missionHeadingReveal 1s
        cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mission-card.mission-reveal {
    animation: missionCardReveal 1.1s
        cubic-bezier(0.22, 1, 0.36, 1) both;
}


@keyframes aboutImageReveal {

    from {
        opacity: 0;
        transform: translateX(-90px) scale(0.94);
        clip-path: inset(0 100% 0 0 round 32px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        clip-path: inset(0 0 0 0 round 32px);
    }
}


@keyframes aboutContentReveal {

    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes missionHeadingReveal {

    from {
        opacity: 0;
        transform: translateY(55px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes missionCardReveal {

    from {
        opacity: 0;
        transform: translateY(90px) scale(0.92);
        clip-path: inset(100% 0 0 0 round 25px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        clip-path: inset(0 0 0 0 round 25px);
    }
}



/* =========================
   PREMIUM SERVICES PAGE
========================= */

.premium-services-banner {
    position: relative;
    padding: 85px 0 75px;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(255, 250, 242, 0.92),
            rgba(255, 250, 242, 0.92)
        ),
        url('/images/mandala-pattern.png') center / 650px no-repeat;
}

.services-small-label {
    display: inline-block;
    color: #c89b3c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.premium-services-banner h1 {
    font-size: 58px;
    font-weight: 800;
    color: #222;
    margin-bottom: 16px;
}

.services-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.services-title-divider span {
    width: 55px;
    height: 1px;
    background: #c89b3c;
}

.services-title-divider i {
    color: #c89b3c;
    font-size: 18px;
}

.premium-services-banner p {
    color: #777;
    margin: 0;
}


/* =========================
   SERVICES SECTION
========================= */

.premium-services-section {
    position: relative;
    padding: 80px 0 95px;
    background: #fffdf9;
}

.service-grid-item {
    display: flex;
}

.premium-service-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid rgba(200, 155, 60, 0.18);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 15px 35px rgba(34, 34, 34, 0.07);
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 155, 60, 0.55);
    box-shadow:
        0 24px 50px rgba(200, 155, 60, 0.18);
}

.service-image-box {
    position: relative;
    height: 205px;
    overflow: hidden;
}

.premium-service-card .service-page-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-service-card:hover .service-page-img {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 18, 4, 0.20),
        transparent 55%
    );
    pointer-events: none;
}


/* =========================
   SERVICE CARD CONTENT
========================= */

.premium-service-card .service-page-content {
    position: relative;
    padding: 30px 28px 32px;
    text-align: center;
}

.premium-service-card .service-page-icon {
    width: 58px;
    height: 58px;
    margin: -58px auto 20px;
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fffaf0;
    border: 4px solid white;

    color: #c89b3c;
    font-size: 27px;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.10);
}

.premium-service-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

.premium-service-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
    min-height: 52px;
    margin-bottom: 22px;
}

.service-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 11px 23px;
    border-radius: 50px;

    background: #c89b3c;
    color: white;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.service-book-btn i {
    transition: transform 0.35s ease;
}

.service-book-btn:hover {
    background: #222;
    color: white;
    transform: translateY(-2px);
}

.service-book-btn:hover i {
    transform: translateX(5px);
}


/* =========================
   SERVICES CTA
========================= */

.services-cta {
    max-width: 1050px;
    margin: 70px auto 0;
    padding: 38px 45px;

    display: flex;
    align-items: center;
    gap: 28px;

    border-radius: 28px;

    background:
        linear-gradient(
            120deg,
            #b98527,
            #d7aa48
        );

    box-shadow:
        0 22px 50px rgba(185, 133, 39, 0.25);
}

.services-cta-decoration {
    flex-shrink: 0;
}

.services-diya {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    font-size: 35px;
}

.services-cta-content {
    flex: 1;
}

.services-cta-content h2 {
    color: white;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 7px;
}

.services-cta-content p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.7;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: white;
    color: #9b6d1e;

    padding: 14px 25px;
    border-radius: 50px;

    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.services-cta-btn:hover {
    background: #222;
    color: white;
    transform: translateY(-3px);
}


/* =========================
   SERVICES MOBILE
========================= */

@media (max-width: 768px) {

    .premium-services-banner {
        padding: 65px 0 60px;
    }

    .premium-services-banner h1 {
        font-size: 42px;
    }

    .premium-services-section {
        padding: 60px 0 70px;
    }

    .premium-service-card {
        max-width: 420px;
    }

    .services-cta {
        margin-top: 55px;
        padding: 35px 25px;
        text-align: center;
        flex-direction: column;
    }

    .services-cta-content h2 {
        font-size: 26px;
    }
}
/* =========================
   SAFE SERVICES TRANSITIONS
========================= */

.premium-services-banner.services-banner-reveal {
    animation: servicesBannerReveal 1s
        cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-grid-item.services-card-reveal {
    animation: servicesCardReveal 1.15s
        cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services-cta.services-cta-reveal {
    animation: servicesCtaReveal 1.2s
        cubic-bezier(0.22, 1, 0.36, 1) both;
}


@keyframes servicesBannerReveal {

    from {
        opacity: 0;
        transform: translateY(-55px) scale(0.97);
        clip-path: inset(0 0 100% 0);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        clip-path: inset(0 0 0 0);
    }
}


@keyframes servicesCardReveal {

    from {
        opacity: 0;
        transform: translateY(90px) scale(0.92) rotate(2deg);
        clip-path: inset(100% 0 0 0 round 24px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
        clip-path: inset(0 0 0 0 round 24px);
    }
}


@keyframes servicesCtaReveal {

    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.95);
        clip-path: inset(0 100% 0 0 round 28px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        clip-path: inset(0 0 0 0 round 28px);
    }
}
/* =========================
   SERVICES BANNER CLEAN PREMIUM FIX
========================= */

.premium-services-banner {
    position: relative;
    padding: 95px 0 85px !important;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #fffdf8 0%,
        #fff8e9 50%,
        #fffdf8 100%
    ) !important;
}


/* LEFT ORNAMENT */

.premium-services-banner::before {
    content: "❈";
    position: absolute;

    left: -70px;
    top: 50%;

    transform: translateY(-50%) rotate(25deg);

    font-size: 310px;
    line-height: 1;

    color: rgba(200, 155, 60, 0.10);

    pointer-events: none;
}


/* RIGHT ORNAMENT */

.premium-services-banner::after {
    content: "❈";
    position: absolute;

    right: -70px;
    top: 50%;

    transform: translateY(-50%) rotate(-25deg);

    font-size: 310px;
    line-height: 1;

    color: rgba(200, 155, 60, 0.10);

    pointer-events: none;
}


.premium-services-banner .container {
    position: relative;
    z-index: 2;
}


.services-small-label {
    color: #c89b3c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 6px;
}


.premium-services-banner h1 {
    font-size: 62px;
    font-weight: 800;
    color: #222;

    margin-top: 12px;
    margin-bottom: 18px;
}


.services-title-divider {
    margin-bottom: 18px;
}


.services-title-divider span {
    width: 65px;
    background: rgba(200, 155, 60, 0.65);
}


.premium-services-banner p {
    color: #777;
    font-size: 15px;
}
/* =========================
   PREMIUM SPIRITUAL CTA FIX
========================= */

.services-cta {
    position: relative;
    overflow: hidden;

  background:
    linear-gradient(
        110deg,
        rgba(55, 35, 12, 0.68),
        rgba(105, 68, 20, 0.58)
    ),
    url('/images/temple.jpg') center 58% / cover no-repeat !important;

    border: 1px solid rgba(200, 155, 60, 0.45);

    box-shadow:
        0 25px 55px rgba(40, 25, 8, 0.22) !important;
}

.services-cta::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: -110px;
    top: -135px;

    border: 1px solid rgba(200, 155, 60, 0.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(200, 155, 60, 0.05),
        0 0 0 70px rgba(200, 155, 60, 0.04);

    pointer-events: none;
}

.services-cta-decoration,
.services-cta-content,
.services-cta-action {
    position: relative;
    z-index: 2;
}

.services-diya {
    font-size: 0 !important;

    background: rgba(200, 155, 60, 0.15) !important;
    border: 1px solid rgba(200, 155, 60, 0.40);
}

.services-diya::before {
    content: "ॐ";
    font-size: 31px;
    color: #d9ad50;
}

.services-cta-content h2 {
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.services-cta-content p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.services-cta-btn {
    background: #c89b3c !important;
    color: #ffffff !important;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}

.services-cta-btn:hover {
    background: #ffffff !important;
    color: #222 !important;
}
/* =========================
        PREMIUM GALLERY
========================= */

.gallery-section{

    padding:110px 0;

    background:#fffdf9;

}
.gallery-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    border:1px solid rgba(200,155,60,.18);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.45s;

    height:100%;
}

.gallery-card:hover{

    transform:translateY(-12px);

    border-color:#c89b3c;

    box-shadow:0 25px 55px rgba(200,155,60,.18);
}

.gallery-img-box{

    position:relative;

    overflow:hidden;

    height:320px;

    background:#fff8ef;
}

.gallery-img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;
}

.gallery-card:hover .gallery-img{

    transform:scale(1.08);
}

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,0,0,.45);

    opacity:0;

    transition:.4s;
}

.gallery-card:hover .gallery-overlay{

    opacity:1;
}

.gallery-overlay i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#c89b3c;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;
}

.gallery-content{

    padding:22px;

    text-align:center;
}

.gallery-content h4{

    font-size:24px;

    font-weight:700;

    color:#222;

    margin:0;
}

.premium-badge{

    position:absolute;

    top:15px;

    left:15px;

    z-index:2;

    background:linear-gradient(90deg,#b8860b,#d4af37);

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;
}
