/********** Template CSS **********/

/*** Spinner ***/

:root {
            --gold: #B8860B;
            --gold-light: #D4A574;
            --rose-pink: #E8B4B8;
            --blush: #F5E6E0;
            --cream: #FDF8F6;
            --champagne: #F7E7CE;
            --dark-brown: #3D2C29;
            --medium-brown: #8B7355;
            --border-color: #E8DCD5;
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
        }
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
   display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}
.navbar .logo {
    height: 100px;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--gold)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--gold);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--gold);
}

.navbar .btn-primary:hover {
   background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: #fff;
}


/*** Hero Header ***/
.hero-header {
   background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--champagne) 100%);
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--gold);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: #fff;
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--gold);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--dark-brown) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: #fff !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--gold);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


 /* ============================================
           FOOTER
           ============================================ */
        .footer {

            background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--champagne) 100%);
            color: #000;
            padding: 80px 0 0;
        }

        .footer-brand {
            margin-bottom: 20px;
        }

        .footer-brand img {
            height: 80px;
            
        }

        .footer-text {
            font-size: 14px;
            color:#252525;
            line-height: 1.8;
        }

        .footer-title {
            font-family: var(--font-heading);
            font-size: 20px;
            color: #252525;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color:#252525;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .footer-contact-item i {
            color: var(--gold);
            margin-right: 15px;
            margin-top: 3px;
        }

        .footer-contact-item p {
            color: #252525;
            margin: 0;
            font-size: 14px;
        }

        .footer-bottom {
            border-top: 3px  #252525;
            padding: 25px 0;
            margin-top: 60px;
        }

        .footer-bottom p {
            font-size: 14px;
            color: #252525;
            margin: 0;
        }

        .social-links {
            margin-top: 30px;
        }

        .footer .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #252525;
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--gold);
        }


        /* ============================================
           WHY CHOOSE US SECTION
           ============================================ */
        .why-choose-section {
            background-color: #fff;
        }

        .feature-card {
            padding: 40px 30px;
            background-color: var(--cream);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--blush);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 28px;
            color: var(--gold);
        }

        .feature-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .hero-stats {
            display: flex;
            gap: 50px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--medium-brown);
        }
    .about-section {
            background-color: var(--cream);
        }
        
        @media (max-width: 767px) {
           
            .hero-stats {
                flex-wrap: wrap;
                gap: 30px;
            }

            .stat-item {
                flex: 0 0 calc(50% - 15px);
            }

            .py-6 {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /*makup courses css*/
        
        
/* Section */
.blog-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* 4-column grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Common card */
.blog-card {
    min-height: 540px;
}

/* Content card */
.content-card {
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--champagne) 100%);
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meta {
    
    color: #2f2f2f;
    margin-bottom: 18px;
}

.content-card h2 {
    
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1f1f1f;
}

.content-card p {
   
    line-height: 1.8;
    color: #2f2f2f;
    margin-bottom: 35px;
}
.blog-grid .btn-primary::before,
.blog-grid .btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.blog-grid .btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
   
}

.blog-grid .btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    
}

/* Image card */
.blog-grid .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 40px 30px;
    }
}


.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 28px;              /* more breathing space */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), #f6c453, var(--gold));
    box-shadow: 0 10px 25px rgba(218,165,32, 0.35);
    position: relative;
    overflow: hidden;
    animation: glowBlink 1.8s infinite ease-in-out, floatMove 3.5s ease-in-out infinite;
}

/* Soft blink + glow */
@keyframes glowBlink {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 0 rgba(218,165,32, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 22px rgba(218,165,32, 0.85);
    }
    100% {
        opacity: 0.6;
        box-shadow: 0 0 0 rgba(218,165,32, 0.3);
    }
}

/* Floating up-down motion */
@keyframes floatMove {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Shimmer shine effect */
.coming-soon-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    animation: shimmer 2.2s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}
/* Icon styling */
.coming-soon-badge .icon {
    font-size: 14px;
    line-height: 1;
    opacity: 0.9;
}
/* New 3-column grid */
.course-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.social-icons {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px; /* space between icons */
}

.social-icons a {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-icons a:hover {
    color: #e91e63;
}
/* Responsive */
@media (max-width: 1200px) {
    .course-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .course-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Services Section*/

/* ============================================
           SERVICES SECTION
           ============================================ */
        .services-section {
             background-color: var(--cream);
        }
        
       .service.py-5 {
            padding-bottom: 0 !important;
        }
        #salon-services{
            padding-top:60px;
        }
        .service-card {
            background-color: var(--cream);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border-radius:15px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1);
        }

        .service-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
             object-position: center; /* IMPORTANT */
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(245, 230, 224, 0.8);  /* your shade with opacity */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-brown);
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-list li {
            font-size: 13px;
            color: var(--medium-brown);
            padding: 6px 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            padding-left: 20px;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li::before {
             content: "\2726"; /* ✦ */
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 10px;
        }
        
        .bridal-editorial {
    background: var(--cream);
    padding: 100px 0;
}

/* Content Card */
.bridal-card {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.bridal-card h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 15px 0 20px;
    color: var(--dark-brown);
}

.bridal-card h2 span {
    color: var(--gold);
}

.bridal-points {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.bridal-points li {
    padding-left: 22px;
    margin-bottom: 12px;
    position: relative;
    color: var(--medium-brown);
    font-size: 17px;
}

.bridal-points li::before {
    content: "\2726"; /* ✦ */
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Image Composition */
.bridal-images {
    position: relative;
    height: 460px;
}

.image-main {
    width: 70%;
    height:100%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.image-main img {
    width: 100%;
    height: 120%;
   object-fit: cover;
    object-position: center 20%; /* 🔥 PERFECT BALANCE */
}

.image-secondary {
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 38%;
    border-radius: 22px;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------- Responsive Fix ---------- */

/* Tablets */
@media (max-width: 991px) {

    .bridal-editorial {
        padding: 70px 0;
    }

    .bridal-card {
        margin-bottom: 40px;
    }

    .bridal-images {
        height: 360px;
    }

    .image-main {
        width: 75%;
    }

    .image-secondary {
        width: 45%;
        right: 0;
        bottom: -30px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .bridal-editorial {
        padding: 60px 0;
    }

    /* Stack layout */
    .bridal-images {
        height: auto;
        margin-top: 30px;
    }

    .image-main,
    .image-secondary {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .image-secondary {
        border: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .bridal-card {
        padding: 30px;
        text-align: left;
    }

    .bridal-card h2 {
        font-size: 28px;
    }
}
 /* ============================================
           GALLERY SECTION
           ============================================ */
        .gallery-section {
           /* background-color: var(--blush);*/
        }
        .gallerypage-section {
             background-color: var(--cream);
        }
        .gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: #fff;
}

.gallery-image {
  width: 100%;
  height: 380px;                 /* Bigger & premium */
  object-fit: cover;            /* Clean grid */
  object-position:top;  /* Keeps face visible */
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-section .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}
@media (max-width: 768px) {
  .gallery-image {
    height: 260px;
  }
}
.gallery-item-box {
    display: none;
}

        .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;   /* IMPORTANT */
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  font-size: 38px;
  color: #fff;
  background: rgba(184, 134, 11, 0.9);  /* gold bg */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
        /* Lightbox */
.lightbox {
  position: fixed;          /* MUST be fixed */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;          /* Very high */
}


.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}
#photos{
    padding-top:60px;
}

/* ============================================
           FAQ SECTION
           ============================================ */
        .faq-section {
            background-color: var(--cream);
           padding-top:50px;
           margin-top:50px;
           padding-bottom:40px;
        }

        .accordion-item {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid var(--border-color);
        }

        .accordion-button {
            background-color: transparent;
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--dark-brown);
            padding: 25px 0;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: var(--gold);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B8860B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 0 0 25px 0;
            font-size: 15px;
            color: var(--medium-brown);
        }

        .text-gold {
            color: var(--gold);
            font-style: italic;
        }
        
.testimonial-text {
  max-height: 90px;   /* adjust this height */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.testimonial-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  
}

.testimonial-text.expanded {
  max-height: 1000px; /* large enough to show full content */
}

.testimonial-text.expanded::after {
  display: none;
}
.read1{
    color:#fff;
}

/* ============================================
           CONTACT SECTION
           ============================================ */
        .contact-section {
            /*background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);*/
            background-color: var(--cream);
            margin-bottom:40px;
        }

        .contact-info-card {
            background-color: var(--dark-brown);
            color: #fff;
            padding: 50px;
            height: 100%;
        }

        .contact-info-card h3 {
            font-size: 28px;
            color: #fff;
            margin-bottom: 30px;
            padding-top:40px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-info-item i {
            font-size: 20px;
            color: var(--gold);
            margin-right: 15px;
            margin-top: 3px;
        }

        .contact-info-item p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .contact-info-item a {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-info-item a:hover {
            color: var(--gold);
        }

        .social-links {
            margin-top: 30px;
        }

       .contact-info-card .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--gold);
        }

        .contact-form-card {
            background-color: #fff;
            padding: 50px;
            height: 100%;
        }

        .contact-form-card h3 {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .form-label {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--dark-brown);
            margin-bottom: 8px;
        }

        .form-control,
        .form-select {
            border: 1px solid var(--border-color);
            border-radius: 0;
            padding: 14px 18px;
            font-size: 14px;
            color: var(--dark-brown);
            background-color: var(--cream);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.15);
        }

        textarea.form-control {
            min-height: 120px;
        }


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

/* Highlight Service Row */
/* Highlighted service */
.highlight-animate {
  position: relative;
  padding: 8px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff8e1, #ffffff);
  font-weight: 600;

  animation: floatZoom 2.8s ease-in-out infinite;
}

/* Trending badge */
.badge-trending {
  background: linear-gradient(135deg, #d4af37, #f5e1a4);
  color: #000;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
  font-weight: 600;
  animation: pulseGlow 1.8s infinite;
}

/* Glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(212,175,55,0.3); }
  50% { box-shadow: 0 0 12px rgba(212,175,55,0.7); }
  100% { box-shadow: 0 0 0 rgba(212,175,55,0.3); }
}

/* Zoom + float animation */
@keyframes floatZoom {
  0%   { transform: scale(1) translateY(0); }
  50%  { transform: scale(1.05) translateY(-3px); }
  100% { transform: scale(1) translateY(0); }
}

.filter-btn {
    background: #fff;
    border: 1px solid #d4af37;
    padding: 8px 20px;
    margin: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4af37;
    color: #fff;
}
.gallerypage-container{
    margin-bottom:40px;
}

.contact-sectionpage{
    margin-bottom:40px;
}
.close-btn {
    position: absolute;
    top: 8px;        /* 👈 inside, not outside */
    right: 8px;      /* 👈 inside */
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}
.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 350px;   /* 👈 control size here */
}

.lightbox-content video {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.recognized-section{
    margin-top:30px;
    margin-bottom:30px;
}

.recognized-section h5{
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:25px;
}

.recognized-logos{
    row-gap:25px;
}

.recognized-logos .col-4{
    display:flex;
    justify-content:center;
    align-items:center;
}

.recognized-logo{
    width:100%;
    max-width:150px;   /* increased */
    height:80px;       /* increased */
    object-fit:contain;
    transition:0.3s ease;
}

.recognized-logo:hover{
    transform:scale(1.05);
}

/* Mobile */
@media(max-width:768px){

    .recognized-logo{
        max-width:110px;
        height:60px;
    }

}