:root {
    --primary-gold: #c5a059;
    --transition: 0.3s ease;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:'Playfair Display', serif;}
body{background:#000;overflow-x:hidden;}

/* ================= HEADER ================= */

header {
    position: fixed; /* Changed from absolute to fixed to stay at top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 50px; /* Slightly reduced padding for a sleeker sticky look */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000; /* Solid black background */
    transition: all 0.3s ease; /* Smooth transition if you add scroll effects later */
}

/* Ensure mobile view also has smaller padding to fit screen */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 40px; /* Adjust logo size for mobile if needed */
        width: auto;
    }
}

.header-left{display:flex;align-items:center;gap:25px;flex:1;}
.header-center{flex:1;display:flex;justify-content:center;}
.header-right{flex:1;display:flex;justify-content:flex-end;align-items:center;}

.toggle-btn,.search-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:var(--transition);
}

/* LOGO */

.logo{text-align:center;color:#fff;letter-spacing:4px;text-transform:uppercase;}
.logo span{font-size:28px;font-weight:700;display:block;}
.logo small{font-size:12px;letter-spacing:8px;}

/* DOWNLOAD BUTTON */

.download-btn{
    background:rgba(197,160,89,0.8);
    color:#fff;
    padding:12px 24px;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    border:1px solid var(--primary-gold);
    animation:blinker 2s linear infinite;
}
@keyframes blinker{50%{opacity:0.4;}}

/* ================= SIDEBAR ================= */

.side-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:380px;
    height:100%;
    background:#fff;
    z-index:2001;
    transition:0.4s ease;
    padding:50px 40px;
}

.side-menu.active{left:0;}

.menu-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
    border-bottom:1px solid #ddd;
    padding-bottom:15px;
}

.menu-items{list-style:none;}
.menu-items>li{border-bottom:1px solid #eee;}
.menu-items a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    display:flex;
    justify-content:space-between;
    padding:18px 0;
}

.dropdown-content{display:none;list-style:none;padding-left:20px;}
.dropdown-content li a{font-size:14px;padding:10px 0;color:#555;}
.has-dropdown.open .dropdown-content{display:block;}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:none;
    z-index:2000;
}

/* ================= HERO ================= */

/* =========================
   CORE SLIDER
========================= */
.hero-slider {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
}

/* Overlay */
.swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* =========================
   DESKTOP (≥1025px)
========================= */
@media (min-width: 1025px) {
    .slide-1 { background-image: url('../images/products/banner_1.webp'); }
    .slide-2 { background-image: url('../images/products/banner_2.webp'); }
    .slide-3 { background-image: url('../images/products/banner_3.webp'); }

    .hero-content {
        margin-top: auto;
        margin-left: auto;
        margin-right: 60px;
        margin-bottom: 60px;
        text-align: left;
    }
}

/* =========================
   TABLET (769px - 1024px)
========================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-1 { background-image: url('../images/products/tab_view_banner_one.webp'); }
    .slide-2 { background-image: url('../images/products/hero_banner_tab_view_second.webp'); }
    .slide-3 { background-image: url('../images/products/tab_hero_banner_three.webp'); }

    .hero-content {
        margin-top: auto;
        margin-left: auto;
        margin-right: 40px;
        margin-bottom: 40px;
        max-width: 350px;
        padding: 25px;
        text-align: left;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {
    .slide-1 { background-image: url('../images/products/mobile_banner.webp'); }
    .slide-2 { background-image: url('../images/products/mobile_banner_1.webp'); }
    .slide-3 { background-image: url('../images/products/mobile_banner_2.webp'); }

    .hero-content {
        margin: auto auto 40px auto;
        text-align: center;
        max-width: 85%;
        padding: 20px;
    }
}

/* =========================
   COMMON CONTENT STYLE
========================= */
.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    box-sizing: border-box;
}

/* Text Styles */
.hero-content h1 {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    /* Removed visibility:hidden so text shows up */
}

/* Optional: If you want to keep the hidden state for animations later */
/* .hero-content h1 { visibility: visible !important; } */

/* FIXED BUTTON */

.btn-wrap{
    display:inline-block;
    padding:15px 45px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    background:rgba(255,255,255,0.05);
    transition:0.4s;
}
.btn-wrap:hover{background:#fff;color:#000;}

/* ================= SEARCH ================= */

.search-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:3000;
}

.search-overlay.active{opacity:1;visibility:visible;}

.search-box{
    width:90%;
    max-width:600px;
    display:flex;
    gap:15px;
}

.search-box input{
    flex:1;
    padding:18px;
    font-size:18px;
    border:none;
}

.search-box button{
    padding:18px 30px;
    border:none;
    background:var(--primary-gold);
    font-weight:bold;
}

.search-close{
    position:absolute;
    top:40px;
    right:50px;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    header{padding:20px;}
    .header-left{order:2;flex:0;}
    .header-center{order:1;justify-content:flex-start;}
    .header-right{display:none;}
    .logo span{font-size:22px;}
    .logo small{letter-spacing:4px;font-size:10px;}
    .hero-content h1{font-size:42px;}
    .hero-content p{font-size:15px;}
    .side-menu{width:85%;}
    .search-box{flex-direction:column;}
}



/* --- Main Footer Container --- */
        footer {
            background-color: var(--footer-bg);
            padding: 80px 20px 40px;
            font-family: 'Poppins', sans-serif;
            color: white;
            text-align: center;
            border-top: 1px solid white;
        }

        /* --- Top Contact Info Section --- */
        .footer-contact-info {
            margin-bottom: 40px;
        }

        .footer-phone {
            font-size: 18px;
            margin-bottom: 10px;
            display: block;
            color: white;
            text-decoration: none;
        }

        .footer-email {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 5vw, 42px);
            margin-bottom: 20px;
            display: block;
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-email:hover { color: var(--social-hover); }

        .footer-address {
            font-size: 14px;
            color: #777;
            max-width: 400px;
            margin: 0 auto 30px;
            line-height: 1.6;
            /* text-transform: lowercase; */
        }

        /* --- Social Media Icons --- */
        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--social-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: 0.3s;
            font-size: 18px;
        }

        .social-link:hover {
            background: var(--social-hover);
            transform: translateY(-3px);
        }

        /* --- Navigation Middle Bar --- */
        .footer-nav-container {
            border-bottom: 1px solid white;
            padding-bottom: 30px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin-inline: auto;
        }

        .footer-nav-list {
            list-style: none;
            display: flex;
            gap: 30px;
            padding: 0;
            margin: 0;
        }

        .footer-nav-list a {
            text-decoration: none;
            color: white;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: 0.3s;
        }

        .footer-nav-list a:hover { color: var(--social-hover); }

        /* --- Bottom Copyright Section --- */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            font-size: 13px;
            color: #888;
        }

        .payment-icons {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .payment-icons img {
            height: 22px;
            filter: grayscale(0.2);
            transition: 0.3s;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            footer { padding: 60px 20px 30px; }
            
            .footer-nav-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-nav-list {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-email { font-size: 24px; }
        }



        .banner-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            padding: 80px 50px;
            background-color: #ffffff;
            flex-wrap: wrap;
        }

        .banner-box {
            position: relative;
            flex: 1;
            min-width: 450px;
            height: 450px;
            overflow: hidden;
            cursor: pointer;
        }

        /* The Image Layer */
        .banner-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Different Format Movement on Hover */
        .banner-box:hover .banner-img {
            transform: scale(1.1) translateX(10px);
        }

        /* Overlay */
        .banner-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 60px;
            color: white;
            transition: background 0.5s ease;
        }

        .banner-box:hover .banner-overlay {
            background: rgba(0, 0, 0, 0.4);
        }

        /* Text Styles */
        .banner-overlay h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 15px;
            max-width: 500px;
        }

        .banner-overlay p {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
            width: 400px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Button Style */
        .btn-link {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid white;
            padding-bottom: 5px;
            display: inline-block;
            width: fit-content;
            transition: 0.3s;
        }

        .btn-link:hover {
            color: #c5a059;
            border-color: #c5a059;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .banner-box { min-width: 100%; height: 400px; }
            .banner-container { padding: 40px 20px; gap: 20px; }
        }

        @media (max-width: 480px) {
            .banner-overlay { padding: 0 30px; }
            .banner-overlay h2 { font-size: 32px; }

            .banner-overlay p {
           
            width: 100%;
            
        }

        }



       /* ✅ UPDATED CSS (WhatsApp button added, rest design unchanged) */

/* --- Section Container --- */
.jewelry-selection {
  padding: 100px 5%;
  text-align: center;
  background-color: white;
}

/* --- Titles --- */
.subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: goldenrod;
  margin-bottom: 12px;
  font-weight: 600;
  display: block;
}

.main-title {
  font-size: clamp(28px, 4vw, 42px);
  color: black;
  margin-bottom: 60px;
}

/* --- Grid Layout --- */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.prod-card {
  position: relative;
  text-align: center;
  background: white;
}

/* --- Image Wrapper --- */
.img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  margin-bottom: 25px;
  background: #fafafa;
  transition: 0.5s ease;
}

/* Default Image */
.img-default {
  width: 85%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* Hover Image */
.img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

/* --- Hover Logic --- */
.prod-card:hover .img-wrap {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.prod-card:hover .img-default {
  opacity: 0;
}
.prod-card:hover .img-hover {
  opacity: 1;
}

.action-tray {
  position: absolute;
  top: 50%;               /* Center vertically */
  right: 15px;            /* Position on the right side */
  transform: translateY(-50%) translateX(20px); /* Initial hidden state: offset to the right */
  display: flex;
  flex-direction: column; /* Stack icons vertically */
  gap: 10px;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 10;
}

/* Hover Logic for Action Tray */
.prod-card:hover .action-tray {
  opacity: 1;
  transform: translateY(-50%) translateX(0); /* Slide into view */
}

.icon-btn {
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.3s;
}

.icon-btn:hover {
  background: goldenrod;
  color: white;
}

/* --- Badge & Details --- */
.sale-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: goldenrod;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  z-index: 5;
}

.cat-tag {
  font-size: 10px;
  text-transform: uppercase;
  color: goldenrod;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.item-name {
  font-size: 16px;
  font-weight: 500;
  color: black;
  margin-bottom: 5px;
}

.item-material {
  font-size: 12px;
  color: gray;
  margin-bottom: 14px;
}

/* ✅ WhatsApp Enquiry Button (replaces price) */
.wa-enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.wa-enquiry-btn i {
  font-size: 16px;
}

.wa-enquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  opacity: 0.95;
}

/* --- Responsive Queries --- */
@media (max-width: 1100px) {
  .selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .selection-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .jewelry-selection {
    padding: 60px 20px;
  }
}

/* Keep your existing typography preference */
.prod-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}


        /* ================= B2B SECTION ================= */

.b2b-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/products/b2b-section.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-left: 8%;
    overflow: hidden;
}

.b2b-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.5) 40%,
        rgba(0,0,0,0.2) 70%,
        rgba(0,0,0,0.1) 100%
    );
    z-index: 1;
}

.b2b-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.b2b-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    display: block;
    margin-bottom: 15px;
}

.b2b-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.b2b-description {
    font-size: 18px;
    line-height: 1.7;
    font-family: sans-serif;
    opacity: 0.9;
    margin-bottom: 40px;
}

.b2b-btn {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    transition: 0.4s ease;
}

.b2b-btn:hover {
    background: #fff;
    color: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .b2b-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .b2b-section {
        padding-left: 20px;
        padding-right: 20px;
        height: 90vh;
    }

    .b2b-title {
        font-size: 38px;
    }

    .b2b-description {
        font-size: 15px;
    }

    .b2b-btn {
        padding: 12px 28px;
        font-size: 12px;
    }
}



/* Legacy Section */
.legacy {
    background: #f3f3f3;
    padding: 80px 20px;
}

/* Centered container with fixed width */
.legacy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Side 60% */
.legacy-left {
    width: 60%;
}

.legacy-left h2 {
    margin-bottom: 20px;
    font-size: 34px;
}

.legacy-left p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-family: sans-serif;
    font-size: 18px;
    color: #474747;
}

/* Right Side 40% */
.legacy-right {
    width: 40%;
}

.legacy-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .legacy-container {
        flex-direction: column;
        text-align: center;
    }

    .legacy-left,
    .legacy-right {
        width: 100%;
    }

    .legacy-right {
        margin-top: 30px;
    }
}



/* ================= TESTIMONIAL SECTION ================= */

.testimonial {
    background: #f3f3f3;
    padding: 120px 20px;
    text-align: center;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: #c5a059;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimonial-title {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 60px;
}

.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content {
    max-width: 700px;
    position: relative;
}

.testimonial-item {
    display: none;
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    font-family: sans-serif;
}

.testimonial-item.active {
    display: block;
}

.testimonial-author {
    display: block;
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #333;
}

.testimonial-arrow {
    background: none;
    border: none;
    font-size: 32px;
    color: #888;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.testimonial-arrow.left {
    left: -80px;
}

.testimonial-arrow.right {
    right: -80px;
}

.testimonial-arrow:hover {
    color: #c5a059;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .testimonial-title {
        font-size: 40px;
    }

    .testimonial-item {
        font-size: 18px;
    }

    .testimonial-arrow.left {
        left: -40px;
    }

    .testimonial-arrow.right {
        right: -40px;
    }
}

@media (max-width: 768px) {

    .testimonial {
        padding: 80px 20px;
    }

    .testimonial-title {
        font-size: 32px;
    }

    .testimonial-item {
        font-size: 16px;
    }

    .testimonial-arrow {
        font-size: 24px;
    }

    .testimonial-arrow.left {
        left: -20px;
    }

    .testimonial-arrow.right {
        right: -20px;
    }
}


/* ================= CATEGORIES SECTION ================= */

.categories-section {
    background: #ffffff;
    padding: 100px 0;
    font-family: 'Playfair Display', serif;
}

/* Center Container */

.categories-section .categories-header,
.categories-section .categories-grid,
.categories-section .categories-features {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ================= HEADER ================= */

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.categories-subtitle {
    font-size: 19px;
    font-weight: bolder;
    letter-spacing: 4px;
    color: #1c2a39;
}

.categories-link {
    font-size: 19px;
    font-weight: bolder;
    letter-spacing: 3px;
    text-decoration: none;
    color: #1c2a39;
}

/* ================= IMAGE GRID ================= */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.category-item {
    position: relative;
    overflow: hidden;
}

.category-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.5s ease;
    border-radius: 0;
}

/* Hover Border Radius Effect */

.category-item:hover img {
    border-top-left-radius: 20%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Title Over Image */

.category-item h3 {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    font-size: 28px;
    font-weight: 400;
}

/* ================= FEATURE SECTION ================= */

.categories-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.feature-box {
    transition: 0.3s ease;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1c2a39;
    transition: 0.3s ease;
}

.feature-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1c2a39;
    transition: 0.3s ease;
}

.feature-box p {
    font-size: 14px;
    color: #777;
    font-family: sans-serif;
}

/* Hover Color Change */

.feature-box:hover .feature-icon,
.feature-box:hover h4 {
    color: #c5a059;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

    .category-item img {
        height: 420px;
    }

    .categories-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .categories-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-item img {
        height: 350px;
    }

    .categories-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .category-item h3 {
        left: 20px;
        bottom: 20px;
        font-size: 22px;
    }
}


/* ================= SECTION ================= */
.categories-section {
    background: #fff;
    padding: 80px 0;
    font-family: 'Playfair Display', serif;
    overflow: hidden;
}

/* ================= HEADER ================= */
.categories-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
    color: #1c2a39;
}

.categories-link {
    font-size: 16px;
    letter-spacing: 3px;
    text-decoration: none;
    color: #1c2a39;
}

/* ================= SWIPER ================= */
.categoriesSwiper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.swiper-wrapper {
    align-items: stretch;
}

/* ================= SLIDE ================= */
.swiper-slide {
    display: flex;
}

/* ================= ITEM ================= */
.category-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

/* IMAGE */
.category-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.category-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* TITLE */
.category-item h3 {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
    font-size: 24px;
    z-index: 2;
}

/* HOVER EFFECT */
.category-item:hover img {
    transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .category-item img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .category-item img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .category-item img {
        height: 280px;
    }

    .category-item h3 {
        font-size: 18px;
    }
}



.blogs {
  background: #f7f7f7;
  padding: 80px 20px;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}

.blogs-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.blogs-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c28b2c;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.blogs-title {
  font-size: 42px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 60px;
}

.blogs-slider {
  overflow: hidden;
  position: relative;
}

.blogs-track {
  display: flex;
  gap: 40px;
  animation: scroll 18s linear infinite;
}

/* PAUSE ON HOVER */
.blogs:hover .blogs-track {
  animation-play-state: paused;
}

.blog-item {
  min-width: calc(33.333% - 26px);
  background: transparent;
  text-align: left;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-item:hover .blog-heading {
  color: #c28b2c;
}

.blog-item:hover .blog-btn {
  opacity: 0.7;
}

.blog-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-date {
  font-size: 14px;
  color: #999;
  margin: 20px 0 10px;
  font-family: 'Poppins', sans-serif;
}

.blog-heading {
  font-size: 26px;
  font-weight: 500;
  color: #222;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.blog-btn {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #000;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.3s ease;
}

/* AUTO LOOP ANIMATION */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-item {
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .blog-item {
    min-width: 100%;
  }
  .blogs-title {
    font-size: 30px;
  }
}


.swiper-pagination-bullet-active{
    color: goldenrod !important;
}



.logo img {
    max-height: 60px; /* Adjust as needed */
    width: auto;
    display: block;
}



/* Member Section */
.member-section {
    background: #ffffff;
    padding: 80px 20px;
}

/* Centered container */
.member-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.member-title {
    font-size: 32px;
    letter-spacing: 8px;
    margin-bottom: 60px;
}

/* Logos Row */
.member-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Individual Item */
.member-item {
    width: 33.33%;
    text-align: center;
}

.member-item img {
    /* max-width: 180px; */
    height: auto;
    margin-bottom: 20px;
}

.member-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .member-logos {
        flex-direction: column;
    }

    .member-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .member-title {
        font-size: 24px;
        letter-spacing: 4px;
    }
}


#trust img{
    height: 120px;
}


.event-slider {
    padding: 80px 20px;
    background: #f7f7f7;
}

.event-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.event-track {
    display: flex;
    transition: transform 0.6s ease;
}

.event-item {
    padding: 10px;
    box-sizing: border-box;
}

.event-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.event-info {
    padding: 15px 5px;
    text-align: center;
}

.event-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.event-info p {
    margin: 0 0 4px;
    font-size: 15px;
}

.event-info span {
    font-size: 14px;
}

/* Responsive widths */
@media (min-width: 1024px) {
    .event-item {
        min-width: 33.333%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .event-item {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .event-item {
        min-width: 100%;
    }
}

/* Dots */
.event-dots {
    text-align: center;
    margin-top: 30px;
}

.event-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.event-dots span.active {
    background: #000;
}



.breadcum {
    width: 100%;
    padding: 180px 60px;
   
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), 
                      url('../images/breadcum_banner.webp'); /* Optional leaf texture */
    text-align: center;
    display: flex;
    justify-content: center;
    object-fit: cover;
    align-items: center;
}

.breadcum-content h1 {
    
    font-size: 3rem;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.breadcum-content ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.breadcum-content li {
    color: #666;
}

.breadcum-content li a {
    text-decoration: none;
    color: #fffbfb;
    transition: color 0.3s ease;
}

.breadcum-content li a:hover {
    color: #000;
}

.breadcum-content li.separator {
    color: #ffffff;
}

.breadcum-content li.active {
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breadcum {
        padding: 120px 15px;
    }
    .breadcum-content h1 {
        font-size: 2.2rem;
    }
}




.about-internal {
    background-color: #ffffff;
    padding: 80px 0;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side Styling */
.about-left {
    flex: 1;
    position: relative;
}

.main-img-wrapper {
    position: relative;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    overflow: visible;
}

.model-img {
    width: 100%;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    display: block;
}

.curved-text {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    pointer-events: none;
}

.curved-text text {
    fill: #1a1a1a;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.know-more-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Right Side Styling */
.about-right {
    flex: 1.2;
}

.sub-title {
    font-size: 14px;
    letter-spacing: 4px;
    color: #666;
    display: block;
    margin-bottom: 15px;
}

.main-title {
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.description {
    
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-box {
    background-color: #f9f3eb; /* Light beige from image */
    padding: 20px 10px;
    text-align: center;
}

.stat-box h3 {
    font-size: 24px;
    margin: 0;
    color: #000;
}

.stat-box p {
    /* font-family: sans-serif; */
    font-size: 14px;
    margin: 5px 0 0;
    text-transform: uppercase;
    color: #444;
}

.quote {
    font-style: italic;
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

/* Shop Button & Small Image */
.action-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-btn {
    background: #000;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.shop-btn span {
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.small-preview img {
    width: 150px;
    height: 150px;
    border-radius: 100px 100px 0 0;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .about-flex { flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .main-title { font-size: 36px; }
}




.video-sec {
    background-color: #f2e3d5; /* Match the beige background in your image */
    background-image: url('image_0f897d.png'); /* Using the leaf texture from previous steps */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.video-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Left Side: 40% Width */
.video-wrapper {
    position: relative;
    flex: 0 0 40%; /* Fixed basis at 40% */
    max-width: 40%; /* Ensures it doesn't grow beyond 40% */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Adds depth to the video card */
}

/* Right Side: 60% Width */
.video-content {
    flex: 0 0 60%; /* Fixed basis at 60% */
    max-width: 60%;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    height: 300px;
    line-height: 0; /* Removes bottom gap */
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video {
    display: block;
    border-radius: 12px;
    height: 300px;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

.play-btn svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* Hide play button when video is playing */
.video-thumbnail.is-playing .play-btn {
    opacity: 0;
    pointer-events: none;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Logic to hide thumbnail when iframe is active */
.play-btn:focus + .video-thumbnail, 
.play-btn:active + .video-thumbnail {
    display: none;
}



.sub-heading {
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: #444;
    display: block;
    margin-bottom: 15px;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 500;
}

.description {
   
    font-size: 22px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.know-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #b38b6d; /* Muted brown from image */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.know-more span {
    background: white;
    color: #b38b6d;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.know-more:hover {
    background-color: #967155;
}

/* Responsiveness */
@media (max-width: 992px) {
    .video-container {
        flex-direction: column;
        text-align: center;
    }
    .video-wrapper {
        width: 100%;
    }
    .video-content {
        width: 100%;
    }
    .know-more {
        justify-content: center;
    }
}




.mission-vision {
    background-color: #ffffff;
    padding: 80px 0;
   
}

.mission-vision .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.mv-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.mv-card {
    flex: 1;
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    color: #b38b6d; /* Muted gold/brown theme color */
    margin-bottom: 20px;
}

.mv-card h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card p {
   
    font-size: 19px;
    line-height: 1.5;
    color: #555;
}

.mv-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

.mv-footer p {
    font-size: 20px;
   
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.signature h4 {
    font-size: 20px;
    margin: 0;
    color: #1a1a1a;
}

.signature span {
   
    font-size: 13px;
    color: #b38b6d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .mv-grid {
        flex-direction: column;
    }
    
    .mv-card {
        padding: 30px 20px;
    }

    .mv-footer p {
        font-size: 16px;
    }
}



.collections {
    background-color: #0f0f0f; /* Modern deep dark background */
    color: #ffffff;
    padding: 100px 0;
   
}

.collections .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Colors */
.gold-text {
    color: #c5a059; /* Elegant gold accent */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
   
}

/* Specialities Section */
.specialities-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.specialities-header h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.specialities-header p {
    color: #a0a0a0;
   
    line-height: 1.8;
}

/* Collection Grid */
.collection-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.collection-text {
    background: #1a1a1a;
    padding: 60px;
    border: 1px solid #2a2a2a;
}

.collection-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.collection-text p {
    color: #a0a0a0;
    font-family: sans-serif;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

/* Category Chips */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tags span {
    border: 1px solid #333;
    padding: 8px 15px;
    font-size: 12px;
    text-transform: uppercase;
   
    color: #c5a059;
    transition: 0.3s;
}

.category-tags span:hover {
    background: #c5a059;
    color: #000;
    border-color: #c5a059;
}

/* Experience Card */
.experience-card {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.8)), 
                url('image_0f10d8.jpg'); /* Using your previous image as a background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px;
    border: 1px solid #c5a059;
}

.card-inner h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.card-inner p {
    font-family: sans-serif;
    color: #d1d1d1;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.btn-explore {
    display: inline-block;
    padding: 12px 30px;
    background: #c5a059;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

/* Footer Section */
.collection-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 40px;
}

.collection-footer p {
    font-style: italic;
    color: #888;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .collection-main {
        grid-template-columns: 1fr;
    }
    
    .specialities-header h2 {
        font-size: 32px;
    }

    .collection-text {
        padding: 40px 20px;
    }
}




.why-choose {
    background-color: #ffffff;
    padding: 100px 0;
    
    overflow: hidden;
}

.why-choose .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header .sub-title {
    color: #b38b6d;
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.why-choose-header h2 {
    font-size: 38px;
    color: #1a1a1a;
    font-weight: 400;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Content Area */
.text-area .highlight-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    border-left: 4px solid #b38b6d;
    padding-left: 20px;
}

.text-area .main-body {
    font-family: sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Counter Grid Area */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.counter-item {
    background: #fdfaf7;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #f3ece5;
    transition: all 0.3s ease;
}

.counter-item:hover {
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(179, 139, 109, 0.1);
    border-color: #b38b6d;
}

.count-box {
    margin-bottom: 10px;
}

.count-box .number {
    font-size: 45px;
    color: #1a1a1a;
    font-weight: 600;
}

.count-box .suffix {
    font-size: 24px;
    color: #b38b6d;
    margin-left: 2px;
}

.counter-item p {
    font-family: sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-choose-header h2 {
        font-size: 32px;
    }

    .counter-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose {
        padding: 60px 0;
    }
}


.category-page {
    background-color: #ffffff;
    padding: 80px 0;
    
}

.category-page .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-header .sub-title {
    color: #b38b6d;
    font-family: sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.category-header h1 {
    font-size: 45px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.category-header p {
    font-family: sans-serif;
    max-width: 600px;
    margin: 0 auto;
    color: #777;
    line-height: 1.6;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    transition: transform 0.4s ease;
    border: 1px solid #f2f2f2;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card .img-box {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    background: #f9f9f9;
}

.product-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .img-box img {
    transform: scale(1.1);
}

.product-card .info {
    padding: 20px;
    text-align: center;
}

.product-card .info h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.product-card .info p {
    font-family: sans-serif;
    font-size: 13px;
    color: #b38b6d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation for the second 8 images */
.scroll-reveal {
    animation: fadeIn linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 30%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Logic */
@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .category-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure the link covers the whole area without changing text styles */
.product-link {
    text-decoration: none;
    color: inherit; /* Keeps your <h3> and <p> colors as defined */
    display: block;
    width: 100%;
    height: 100%;
}

/* Optional: Slight zoom effect on the image when hovering the card */
.product-card:hover .img-box img {
    transform: scale(1.05);
}

.img-box img {
    transition: transform 0.3s ease-in-out;
}






.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section 1: Single Product Detail --- */
.single-product-detail {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Playfair Display', serif;
}

.product-flex {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center; /* Vertical alignment: Middle for Desktop */
}

.product-gallery {
    flex: 1.2; /* Gallery takes slightly more space */
    min-width: 300px;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.main-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: crosshair;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
}
#main-product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease-out; /* Slightly faster for better feel */
    pointer-events: none; /* Prevents image from interfering with container mouse events */
}

/* Hover Zoom Scale */
.main-image-container:hover #main-product-img {
    transform: scale(2.2); /* Higher scale for clearer jewelry details */
}

/* Button Styling */
.cta-btn {
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.thumbnail-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 5px 0;
}

.thumb {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thumb.active {
    border-color: #b38b6d;
    opacity: 1;
}

.thumb-nav {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    position: absolute;
    z-index: 10;
    display: none;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.thumb-nav:hover {
    background: #b38b6d;
}

.thumb-nav.prev { left: -20px; }
.thumb-nav.next { right: -20px; }

/* --- Product Info Content --- */
.product-info .category-tag {
    color: #b38b6d;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 600;
}

.product-info h1 {
    font-size: 42px;
    margin: 15px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.product-info .description {
    font-family: sans-serif;
    color: #555555;
    font-size: 16px;
    margin-bottom: 25px;
}

.product-meta {
    margin-bottom: 35px;
    font-family: sans-serif;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.product-meta span {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #1a1a1a;
}

.cta-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-btn:hover {
    background: #b38b6d;
    transform: translateY(-2px);
}

/* --- Section 2: Related Slider --- */
.products-related {
    padding: 80px 0;
    background: #fdfaf7;
    text-align: center;
}

.products-related h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 40px;
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    animation: scrollAnimation 30s linear infinite;
    width: max-content;
}

.slide-item {
    flex: 0 0 280px;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #eeeeee;
}

.slide-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 12px;
}

@keyframes scrollAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    position: relative;
    border-top: 6px solid #b38b6d;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.modal h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    font-size: 24px;
}

.modal form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #dddddd;
}

.modal .cta-btn {
    width: 100%;
    justify-content: center;
}

/* --- MOBILE & TABLET RESPONSIVE --- */

@media (max-width: 992px) {
    .product-flex {
        gap: 40px;
    }
    .product-info h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .single-product-detail {
        padding: 40px 0;
    }
    
    .product-flex {
        flex-direction: column; /* Stack vertically on mobile */
        align-items: flex-start;
    }

    .product-gallery, .product-info {
        width: 100%;
        min-width: 100%;
    }

    .product-info {
        text-align: center; /* Optional: Center text on mobile */
    }

    .product-info h1 {
        font-size: 28px;
    }

    .info-inner {
        padding-top: 20px;
    }

    .thumb {
        width: 65px;
        height: 65px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .products-related h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .single-product-detail {
        padding: 30px 0;
    }
    .thumbnails {
        gap: 8px;
    }
    .thumb {
        width: 60px;
        height: 60px;
    }
    .product-info h1 {
        font-size: 24px;
    }
}




/* --- Career Page Section --- */
.career-page {
    padding: 100px 0;
    background-color: #ffffff;
   
    color: #1a1a1a;
}

/* Header Styling */
.career-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.career-header .sub-title {
    display: block;
    color: #b38b6d; /* Gold */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    
    font-weight: 700;
    margin-bottom: 15px;
}

.career-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.career-header p {
   
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Values Grid */
.career-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.value-card {
    background: #fdfaf7; /* Very light cream/gold */
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0e6dd;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(179, 139, 109, 0.1);
    border-color: #b38b6d;
}

.value-card .icon-box {
    font-size: 40px;
    color: #b38b6d;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    font-family: sans-serif;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Apply Box Section */
.apply-box {
    background: #1a1a1a; /* Dark */
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background element for apply box */
.apply-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(179, 139, 109, 0.2);
    border-radius: 50%;
}

.apply-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.apply-content p {
   
    font-size: 16px;
    color: #ccc;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #b38b6d; /* Gold */
    color: #ffffff;
    padding: 20px 45px;
    text-decoration: none;
    
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.apply-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: scale(1.05);
}

/* --- Responsive Adjustments --- */

@media (max-width: 992px) {
    .career-values {
        grid-template-columns: repeat(2, 1fr);
    }
    .career-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .career-page {
        padding: 60px 0;
    }
    .career-values {
        grid-template-columns: 1fr;
    }
    .career-header h1 {
        font-size: 32px;
    }
    .apply-box {
        padding: 50px 20px;
    }
    .apply-content h2 {
        font-size: 28px;
    }
    .apply-btn {
        padding: 15px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}



/* --- New Exhibition Section --- */
.new-exhibition {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.exhibition-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.exhibition-header .sub-title {
    color: #b38b6d; /* Gold */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.exhibition-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.exhibition-header p {
    font-family: sans-serif;
    color: #666;
    line-height: 1.7;
}

/* --- Grid Layout --- */
.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exhibition-card {
    background: #fff;
    transition: all 0.4s ease;
}

.event-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5; /* Maintains the flyer shape from your image */
    border: 1px solid #eee;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    padding: 15px;
    text-align: center;
    transition: all 0.4s ease;
}

.event-overlay .location {
    color: #b38b6d;
    font-size: 13px;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effects */
.exhibition-card:hover .event-img img {
    transform: scale(1.1);
}

.exhibition-card:hover .event-overlay {
    bottom: 0;
}

.exhibition-card:hover {
    transform: translateY(-10px);
}

/* Info Styling */
.event-info {
    padding: 25px 15px;
    text-align: center;
}

.event-info h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.event-info .event-date {
    font-family: sans-serif;
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.event-info .stall-no {
    display: inline-block;
    padding: 5px 15px;
    background: #fdfaf7;
    border: 1px solid #f0e6dd;
    color: #b38b6d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: sans-serif;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .exhibition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exhibition-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .new-exhibition {
        padding: 60px 0;
    }
    .exhibition-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .exhibition-header h2 {
        font-size: 28px;
    }
}




/* --- Internal Contact Us Section --- */
.internal-contact-us {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-header .sub-title {
    color: #b38b6d; /* Signature Gold */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
    font-family: sans-serif;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

/* --- Top Grid (Map & Details) --- */
.contact-grid-top {
    display: flex;
    gap: 50px;
    align-items: center; /* Vertical middle alignment */
    margin-bottom: 80px;
}

.map-box {
    flex: 1.4;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.details-box {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item .icon {
    font-size: 22px;
    color: #b38b6d;
    margin-top: 5px;
}

.info-item .text label {
    display: block;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item .text a, 
.info-item .text p {
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    font-weight: 500;
}

.info-item .text a:hover {
    color: #b38b6d;
}

/* Social Links */
.social-circles {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #fcc27a; /* Muted Gold/Peach from image */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-link:hover {
    background: #b38b6d;
    transform: translateY(-5px);
}

/* --- Form Styles --- */
.contact-form-wrapper {
    background: #fdfaf7;
    padding: 60px;
    border: 1px solid #f0e6dd;
}

.form-title {
    text-align: center;
    margin-bottom: 40px;
}

.form-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #b38b6d;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.full-width {
    grid-column: span 2;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    font-family: sans-serif;
    font-size: 15px;
    background: #fff;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #b38b6d;
    outline: none;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.submit-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 18px 50px;
    border: none;
    font-family: sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #b38b6d;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .contact-grid-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .map-box, .details-box {
        width: 100%;
    }
    .contact-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .internal-contact-us {
        padding: 60px 0;
    }
    .contact-form-wrapper {
        padding: 40px 20px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .info-item .text a, 
    .info-item .text p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 32px;
    }
    .map-box iframe {
        height: 300px;
    }
}




/* --- Aditya Blogs Section --- */
.aditya-blogs {
    padding: 100px 0;
    background-color: #ffffff;
   
}

.blog-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.blog-header .sub-title {
    color: #b38b6d; /* Signature Gold */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.blog-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.blog-header p {
    font-family: sans-serif;
    color: #666;
    line-height: 1.7;
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    text-decoration: none; /* Removes underline from whole box */
    color: inherit;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f0e6dd;
    transition: all 0.4s ease;
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
}

.blog-content .category {
    color: #b38b6d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: sans-serif;
    display: block;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: 0.3s;
}

.blog-content p {
    font-family: sans-serif;
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Hover Effects --- */
.blog-card:hover {
    box-shadow: 0 15px 40px rgba(179, 139, 109, 0.15);
    transform: translateY(-8px);
    border-color: #b38b6d;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-card:hover h3 {
    color: #b38b6d;
}

.blog-card:hover .read-more {
    gap: 12px; /* Slight arrow movement */
    color: #b38b6d;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aditya-blogs {
        padding: 60px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .blog-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 20px;
    }
    .blog-content h3 {
        font-size: 19px;
    }
}




/* --- Single Blog Detail Section --- */
.single-blog {
    padding: 80px 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Header */
.blog-detail-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.blog-detail-header .category-tag {
    color: #b38b6d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    font-family: sans-serif;
    display: block;
    margin-bottom: 15px;
}

.blog-detail-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-meta {
    font-family: sans-serif;
    color: #888;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.post-meta i {
    color: #b38b6d;
    margin-right: 5px;
}

/* Featured Image */
.featured-image {
    width: 100%;
    margin-bottom: 60px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Layout Wrapper */
.blog-main-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-content-area {
    flex: 2;
    font-family: 'Playfair Display', serif;
}

.blog-sidebar {
    flex: 0.8;
}

/* Typography & Content Elements */
.blog-content-area p {
    font-family: sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.blog-content-area .lead-text {
    font-size: 21px;
    color: #1a1a1a;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    border-left: 4px solid #b38b6d;
    padding-left: 20px;
}

.blog-content-area h3 {
    font-size: 28px;
    margin: 40px 0 20px;
}

blockquote {
    background: #fdfaf7;
    border-left: 5px solid #b38b6d;
    padding: 30px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    color: #1a1a1a;
}

.content-image {
    margin: 40px 0;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
}

.content-image small {
    display: block;
    margin-top: 10px;
    color: #888;
    font-family: sans-serif;
    font-style: italic;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 40px;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #eee;
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #b38b6d;
    display: inline-block;
    padding-bottom: 5px;
}

.share-links {
    display: flex;
    gap: 15px;
}

.share-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.share-links a:hover {
    background: #b38b6d;
    color: #fff;
    border-color: #b38b6d;
}

.blog-footer-tags {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-family: sans-serif;
}

.blog-footer-tags a {
    color: #b38b6d;
    text-decoration: none;
    margin-left: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .blog-main-wrapper {
        flex-direction: column;
    }
    .blog-sidebar {
        order: 2;
    }
    .blog-detail-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .single-blog {
        padding: 40px 0;
    }
    .blog-detail-header h1 {
        font-size: 28px;
    }
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    .blog-content-area p {
        font-size: 16px;
    }
    blockquote {
        font-size: 18px;
        padding: 20px;
    }
}



/* --- Thank You Aditya Section --- */
.thank-you-aditya {
    padding: 100px 0;
    background-color: #fdfaf7; /* Soft cream background */
    min-height: 80vh;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.thank-you-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #f0e6dd;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* Success Icon Animation */
.success-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #b38b6d;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Content Styling */
.thank-you-content h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-family: sans-serif;
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 2px;
    background: #b38b6d;
    margin: 30px auto;
}

.reference {
    font-family: sans-serif;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999 !important;
}

/* Action Buttons */
.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.next-steps h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #b38b6d;
    color: #fff;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Social Footer */
.thank-you-social {
    margin-top: 50px;
}

.thank-you-social p {
    font-family: sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #b38b6d;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #1a1a1a;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .thank-you-aditya {
        padding: 60px 20px;
    }
    
    .thank-you-wrapper {
        padding: 40px 20px;
    }

    .thank-you-content h1 {
        font-size: 28px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}



/* --- Error Aditya Section --- */
.error-aditya {
    padding: 50px 0;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    
}

.error-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Visuals */
.error-visual {
    margin-bottom: 40px;
    position: relative;
}

.error-code {
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: #fdfaf7; /* Very light cream */
    letter-spacing: -5px;
    display: block;
    user-select: none;
}

.visual-line {
    width: 60px;
    height: 3px;
    background: #b38b6d; /* Gold */
    margin: -20px auto 0;
    position: relative;
    z-index: 2;
}

/* Content */
.error-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.error-content p {
    font-family: sans-serif;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Search Bar */
.error-search {
    max-width: 450px;
    margin: 0 auto 50px;
}

.error-search form {
    display: flex;
    border-bottom: 2px solid #eee;
    transition: 0.3s;
}

.error-search form:focus-within {
    border-color: #b38b6d;
}

.error-search input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-family: sans-serif;
    font-size: 16px;
    outline: none;
}

.error-search button {
    background: transparent;
    border: none;
    color: #b38b6d;
    cursor: pointer;
    font-size: 18px;
    padding: 0 10px;
}

/* Buttons */
.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-solid, .btn-outline {
    padding: 18px 35px;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-solid {
    background: #1a1a1a;
    color: #fff;
}

.btn-outline {
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
}

.btn-solid:hover {
    background: #b38b6d;
    color: #fff;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
}

.support-text {
    font-family: sans-serif;
    color: #999;
    font-size: 14px;
}

.support-text a {
    color: #b38b6d;
    text-decoration: none;
    font-weight: 600;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .error-aditya {
        padding: 80px 0;
    }

    .error-code {
        font-size: 100px;
    }

    .error-content h1 {
        font-size: 32px;
    }

    .error-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-solid, .btn-outline {
        width: 100%;
    }
}



/* --- Partner / B2B Intro Section --- */
.partner {
    background-color: #ffffff; /* Requested White Background */
    padding: 100px 0;
   
    overflow: hidden;
}

/* Container limits width and centers content */
.partner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Content area slightly wider than image */
    gap: 60px;
    align-items: center; /* Vertically centers the content */
}

/* --- Content Styling --- */
.partner-content .sub-title {
    color: #b38b6d; /* Signature Gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
  
}

.partner-content h2 {
    font-size: 42px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.partner-content p {
    
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Styling specific text blocks for emphasis */
.partner-content .lead-text {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    border-left: 3px solid #b38b6d;
    padding-left: 20px;
}

.partner-content .highlight-text {
    
    font-size: 24px;
    color: #b38b6d;
    font-style: italic;
    margin-top: 30px;
}

/* --- Features Row --- */
.partner-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0e6dd;
}

.partner-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-features .feature i {
    color: #b38b6d;
    font-size: 20px;
}

.partner-features .feature span {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Visual Styling & Badge --- */
.partner-visual {
    position: relative;
}

.partner-visual .image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Soft luxury shadow */
}

.partner-visual .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.partner-visual .image-wrapper:hover img {
    transform: scale(1.05); /* Gentle zoom on hover */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #b38b6d;
    min-width: 160px;
}

.experience-badge .year {
    font-size: 36px;
    font-weight: 700;
    color: #b38b6d;
    margin-bottom: 5px;
    line-height: 1;
}

.experience-badge .text {
    font-family: sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}

/* --- Responsive Queries --- */
@media (max-width: 1024px) {
    .partner-wrapper {
        gap: 40px;
    }
    .partner-content h2 {
        font-size: 36px;
    }
    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .partner {
        padding: 60px 0;
    }
    .partner-wrapper {
        grid-template-columns: 1fr; /* Stacks image and text vertically */
        gap: 50px;
    }
    .partner-visual {
        order: -1; /* Puts the image on top for mobile users */
    }
    .partner-content h2 {
        font-size: 32px;
    }
    .partner-features {
        flex-wrap: wrap; /* Allows features to wrap on small screens */
    }
}

@media (max-width: 480px) {
    .partner-content h2 {
        font-size: 28px;
    }
    .partner-content .highlight-text {
        font-size: 20px;
    }
    .experience-badge {
        display: none; /* Hides badge on very small mobile screens to prevent blocking the image */
    }
}




/* --- Partner Service Section --- */
.partner-service {
    /* A very soft, elegant light gold/cream background for the whole section */
    background-color: #fcf9f2; 
    padding: 100px 0;
    
}

.partner-service .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Styling matching the image aesthetic */
.service-title {
    font-size: 48px;
    color: #4a2e1b; /* Deep rich brown/gold from the image */
    margin-bottom: 50px;
    font-weight: 500;
}

/* --- Box Layout & Grid --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background-color: #ffffff; /* White boxes to pop against the gold background */
    border: 1px solid #ebdcd0;
    padding: 40px 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border-radius: 4px; /* Slight softening of the corners */
}

/* Hover Effect for the Boxes */
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 46, 27, 0.08);
    border-color: #b38b6d;
}

/* --- Box Internal Elements --- */
.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.box-header h3 {
    font-size: 26px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

/* Arrow Icon aligned to match the image's diagonal aesthetic */
.icon-arrow {
    color: #1a1a1a;
    font-size: 20px;
    transform: rotate(-45deg); /* Points the arrow Top-Right */
    transition: all 0.3s ease;
}

.service-box p {
    font-family: sans-serif;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Changes on hover inside the box */
.service-box:hover .box-header h3 {
    color: #b38b6d; /* Signature Gold */
}

.service-box:hover .icon-arrow {
    color: #b38b6d;
    transform: rotate(-45deg) translate(3px, -3px); /* Arrow moves slightly up and right */
}

/* --- Responsive Media Queries --- */

/* Tablets and small laptops */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-title {
        font-size: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .partner-service {
        padding: 60px 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr; /* Stacks boxes vertically */
        gap: 20px;
    }
    
    .service-title {
        font-size: 36px;
        margin-bottom: 30px;
        text-align: center; /* Centering title looks better on mobile */
    }

    .service-box {
        padding: 30px 20px;
    }

    .box-header h3 {
        font-size: 24px;
    }
}



/* --- Why Choose Partner Section --- */
.whychoose-partner {
    background-color: #ffffff; /* Requested White Background */
    padding: 100px 0;
    
}

.whychoose-partner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .sub-title {
    color: #b38b6d; /* Signature Gold */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    font-family: sans-serif;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-header p {
    font-family: sans-serif;
    color: #666;
    line-height: 1.8;
}

/* --- Features Grid --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    padding: 40px 25px;
    background: #fff;
    border: 1px solid #f0e6dd;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #b38b6d;
    box-shadow: 0 15px 30px rgba(179, 139, 109, 0.1);
}

.why-card .icon-box {
    width: 70px;
    height: 70px;
    background: #fdfaf7;
    color: #b38b6d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    transition: 0.3s;
}

.why-card:hover .icon-box {
    background: #b38b6d;
    color: #fff;
}

.why-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-card p {
    font-family: sans-serif;
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .whychoose-partner {
        padding: 60px 0;
    }
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .why-card {
        padding: 30px 20px;
    }
}




/* --- Partner Contact Section --- */
.partner-contact {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.partner-contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-contact-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: #fff;
}

/* --- Left Pane Styling --- */
.contact-info-pane {
    flex: 1;
}

.contact-info-pane .sub-title {
    color: #b38b6d; /* Signature Gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.contact-info-pane h2 {
    font-size: 42px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-info-pane p {
    font-family: sans-serif;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-features {
    margin-bottom: 40px;
}

.c-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: sans-serif;
    font-weight: 600;
    color: #1a1a1a;
}

.c-feature i {
    color: #b38b6d;
    font-size: 18px;
}

.direct-contact p {
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.direct-contact a {
    font-size: 24px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.direct-contact a:hover {
    color: #b38b6d;
}

/* --- Form Pane Styling --- */
.contact-form-pane {
    flex: 1.2;
    background: #fdfaf7; /* Subtle off-white for the form area */
    padding: 50px;
    border-radius: 4px;
    border: 1px solid #f0e6dd;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.partner-form input, 
.partner-form select, 
.partner-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-family: sans-serif;
    font-size: 15px;
    transition: 0.3s ease;
    outline: none;
}

.partner-form input:focus, 
.partner-form select:focus, 
.partner-form textarea:focus {
    border-color: #b38b6d;
    box-shadow: 0 0 10px rgba(179, 139, 109, 0.1);
}

.partner-submit-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 18px;
    border: none;
    font-family: sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.partner-submit-btn:hover {
    background: #b38b6d;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .partner-contact-wrapper {
        gap: 40px;
    }
    .contact-info-pane h2 {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .partner-contact-wrapper {
        flex-direction: column;
    }
    .contact-info-pane, .contact-form-pane {
        width: 100%;
    }
    .contact-form-pane {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-info-pane h2 {
        font-size: 28px;
    }
}






.turn-off {
  background-color: #ffffff;
  padding: 64px 24px;
  overflow: hidden;
}

.turn-off__wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.turn-off__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.turn-off__title {
  font-size: 30px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin: 0;
}

.turn-off__arrows {
  display: flex;
  gap: 8px;
}

.turn-off__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
}

.turn-off__arrow:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.turn-off__slider {
  overflow: hidden;
}

.turn-off__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.turn-off__card {
  flex: 0 0 calc(25% - 15px);
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.turn-off__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.turn-off__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f5f9;
}

.turn-off__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.turn-off__card:hover .turn-off__img-wrap img {
  transform: scale(1.05);
}

.turn-off__info {
  padding: 16px 4px;
}

.turn-off__name {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Tablet */
@media (max-width: 1024px) {
  .turn-off__card {
    flex: 0 0 calc(33.333% - 13.33px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .turn-off {
    padding: 48px 16px;
  }

  .turn-off__title {
    font-size: 24px;
  }

  .turn-off__header {
    margin-bottom: 28px;
  }

  .turn-off__card {
    flex: 0 0 calc(50% - 10px);
  }

  .turn-off__track {
    gap: 16px;
  }

  .turn-off__arrow {
    width: 38px;
    height: 38px;
  }

  .turn-off__info {
    padding: 12px 2px;
  }

  .turn-off__name {
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .turn-off__card {
    flex: 0 0 calc(80% - 8px);
  }
}