:root {
    --primary: #c5a059;
    --dark: #121212;
    --light: #f7f3ef;
    --brown: #7a5c38;
    --transition: all 0.4s ease;
    --font-head: "Playfair Display", serif;
    --font-body: "Poppins", sans-serif;
  }
  
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
  }
  
  /* ===== TOP SCROLLING BANNER ===== */
  .top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: linear-gradient(90deg, #454544, #000000, #605f5f);
    color: gold;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .scrolling-text {
    display: inline-block;
    animation: smoothScroll 20s linear infinite;
    padding-left: 100%;
  }
  
  @keyframes smoothScroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-80%);
    }
  }
  
  .scrolling-text:hover {
    animation-play-state: paused;
  }
  
  /* Make navbar appear below banner */
  .custom-navbar {
    margin-top: 38px;
  }
  
/* ================= NAVBAR ================= */
.custom-navbar {
    background: rgba(0, 0, 0, 0.936);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary);
}
.logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}
@media (max-width: 992px) {
    .logo-img {
        height: 65px;
    }
}
@media (min-width: 992px) {
    .custom-navbar {
        height: 15vh;
    }
}
.navbar-nav {
    gap: 25px;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 0.6px;
    padding: 8px 4px;
    position: relative;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
}
.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* Dropdown Menu (hover effect for catalog) */
.navbar-nav .dropdown-menu {
    background-color: #1a1a1a; /* Dark background for the dropdown */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.navbar-nav .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: background-color 0.3s ease, padding-left 0.2s ease;
}
.navbar-nav .dropdown-item:hover {
    background-color: var(--primary);
    padding-left: 25px;
}

.navbar-toggler {
    border: none;
    color: var(--primary);
    font-size: 1.9rem;
    background: transparent;
    transition: all 0.3s ease;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ================= DRAWER ================= */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    background: #1a1a1a;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.7);
    transition: right 0.4s ease;
    z-index: 9999;
    padding: 30px;
}
.drawer.open {
    right: 0;
}
.close-drawer {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
}
.drawer-links {
    list-style: none;
    margin-top: 80px;
}
.drawer-links li {
    margin: 20px 0;
    color: #fff;
}
.drawer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
}
.drawer-links a:hover {
    color: var(--primary);
}

  
  /* ================= HERO CAROUSEL ================= */
  .carousel-item {
    height: 90vh;
  }
  .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(70%);
  }
  .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }
  .carousel-caption h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  }
  .carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ddd;
  }
  .carousel-caption .btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
  }
  .carousel-caption .btn:hover {
    background: var(--brown);
    color: #fff;
    transform: scale(1.05);
  }
  
  /* ================= CATEGORIES ================= */
  .categories {
    padding: 50px;
    background: #fff;
    margin-top: 50px;
    border-radius: 20px;
  }
  .categories h2 {
    text-align: center;
    font-family: var(--font-head);
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
  }
  .categories h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    display: block;
    margin: 10px auto 0;
  }
  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
  }
  .category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
  }
  .category-card:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
  }
  .category-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    text-align: center;
  }
  .category-overlay h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.5rem;
  }
  .category-overlay a {
    display: inline-block;
    margin-top: 10px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
  }
  .category-overlay a:hover {
    background: var(--brown);
    color: #fff;
  }
  .explore-more {
    text-align: center;
    margin-top: 40px;
  }
  .explore-more a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      background-color: black;
      padding: 15px;
      border-radius: 20px;
  }
  .explore-more a:hover {
    color: white;
    transition: color 0.2s ease-in;
  }
  
  /* ================= FOOTER ================= */
  /* ===== FOOTER STYLING ===== */
  .site-footer {
    background: #111;
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    position: relative;
  }
  
  .footer-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
  }
  
  .footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  
  .footer-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #d4af37; /* golden tone */
  }
  
  .footer-tagline {
    font-style: italic;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 25px;
  }
  
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  
  .footer-social {
    margin-top: 20px;
  }
  
  .facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(90deg, #3e3e3e, rgb(122, 104, 1));
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .facebook-link:hover {
    background: linear-gradient(90deg, #3e3e3e, rgba(122, 104, 1, 0.781));
    transform: scale(1.05);
  }
  
  .fb-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
  }
  
  .footer-bottom {
    margin-top: 25px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  
  /* ===== WHATSAPP FLOATING BUTTON ===== */
  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    text-align: center;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .whatsapp-label {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 6px 6px 0 0;
    margin-bottom: -6px;
    font-family: "Poppins", sans-serif;
    animation: glowPulse 2s ease-in-out infinite;
    background: #ffffff;
  }
  
  /* Glowing Pulse Animation */
  @keyframes glowPulse {
    0% {
      transform: translateY(0);
      box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
    }
    50% {
      transform: translateY(-5px);
      box-shadow: 0 0 18px rgba(37, 211, 102, 0.9);
    }
    100% {
      transform: translateY(0);
      box-shadow: 0 0 8px rgba(37, 211, 101, 0.596);
    }
  }
  
  .whatsapp-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .whatsapp-icon {
      width: 48px;
      height: 48px;
    }
    .whatsapp-label {
      font-size: 12px;
      padding: 3px 6px;
    }
  }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 992px) {
    .carousel-caption h1 {
      font-size: 2rem;
    }
  }
  @media (max-width: 768px) {
    .carousel-item {
      height: 70vh;
    }
    .carousel-caption h1 {
      font-size: 1.8rem;
    }
    .categories h2 {
      font-size: 2rem;
    }
  }
  
  /* ================= OUR SAMPLES ================= */
  .our-samples {
    background: #f5eedf;
    margin-top: 50px;
    border-radius: 20px;
    padding-bottom: 50px;
  }
  
  .our-samples h2 {
    text-align: center;
    font-family: var(--font-head);
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-top: 30px;
  }
  .our-samples h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    display: block;
    margin: 10px auto 0;
  }
  
  .sample-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    cursor: pointer;
  }
  .sample-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
  }
  .sample-card:hover img {
    transform: scale(1.1);
    filter: brightness(85%);
  }
  
  .sample-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
  }
  .sample-card:hover .sample-overlay {
    opacity: 1;
  }
  .sample-overlay h5 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.2rem;
  }
  
  /* Wrapper for responsive video */
  .video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background-color: #000;
  }
  
  .video-wrapper video {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the video scales correctly without distortion */
    display: block;
  }
  
  /* Responsive adjustments */
  @media(max-width: 768px) {
    .sample-card img {
      height: 200px;
    }
    .our-samples h2 {
      font-size: 2rem;
    }
  }
  
  /* ================= CUSTOM LIGHTBOX ================= */
  #customLightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  #customLightbox.show {
    display: flex;
    opacity: 1;
  }
  
  #customLightbox img.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    transform: scale(0.7);
    transition: transform 0.4s ease;
  }
  
  #customLightbox.show img.lightbox-content {
    transform: scale(1);
  }
  
  #customLightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  #customLightbox .close:hover {
    color: #b5884b;
  }
  /* ================= WHY CHOOSE US ================= */
  .why-choose-us {
    text-align: center;
  }
  
  .why-choose-us h2 {
    font-weight: 700;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .why-choose-us h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: gold;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .choose-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
  }
  
  .choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .choose-card .icon {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 15px;
    animation: bounceIn 1s ease;
  }
  
  .choose-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .choose-card p {
    font-size: 0.95rem;
    color: #555;
  }
  
  /* Simple Icon Animation */
  @keyframes bounceIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    60% {
      transform: scale(1.2);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }
  /* ================= TESTIMONIALS (Independent Carousel) ================= */
  .testimonials {
    background: #111;
    color: #fff;
    padding: 40px 0;
    width: 90vw;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto 50px auto; /* centers horizontally + adds bottom margin */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  
  .section-title {
    color: gold;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
  }
  
  .testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    height: auto;
  }
  
  .testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  
  .testimonial-slide.active {
    display: block;
    opacity: 1;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 550px;
    animation: fadeInUp 0.8s ease;
  }
  
  .testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .client-info h5 {
    color: gold;
    margin: 0;
    font-size: 1rem;
  }
  
  .client-info span {
    color: #bbb;
    font-size: 0.85rem;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* FAQ Section Styling */
  .faq-section {
    background: #f4f6e6;
    color: #000000;
    padding: 60px 0;
    border-radius: 20px;
    width: 85%;
    margin: 0 auto 60px auto;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
  }
  
  .faq-section .section-title {
    color: #0f0f0f;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  /* Accordion Base */
  .accordion {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .accordion-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .accordion-item:hover {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }
  
  /* Accordion Header */
  .accordion-button {
    color: #745c20;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 22px;
    border: none;
    outline: none;
    text-align: left;
    box-shadow: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .accordion-button:focus {
    box-shadow: none;
  }
  
  .accordion-button:hover {
    background: linear-gradient(90deg, #333, #222);
    color: #fff;
  }
  
  /* When Opened */
  .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #f5c542, #c59b15);
    color: #111;
  }
  
  /* Accordion Body */
  .accordion-body {
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    padding: 20px;
    border-top: 1px solid #333;
    animation: fadeIn 0.4s ease;
  }
  
  /* Phone Numbers Highlight */
  .accordion-body strong {
    color: #f5c542;
  }
  
  .accordion-body br + br {
    margin-bottom: 10px;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .faq-section {
      width: 95%;
      padding: 40px 15px;
    }
  
    .accordion-button {
      font-size: 1rem;
      padding: 15px 18px;
    }
  
    .section-title {
      font-size: 1.6rem;
    }
  }
  /* ===== FOOTER STYLING ===== */
  .site-footer {
    background: radial-gradient(circle at top center, #1a1a1a 0%, #000 100%);
    color: #f5f5f5;
    padding: 70px 20px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #d4af37;
    box-shadow: 0 -5px 25px rgba(212, 175, 55, 0.15);
  }
  
  /* Glowing golden overlay */
  .site-footer::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: glowMove 8s infinite alternate ease-in-out;
    z-index: 0;
  }
  
  @keyframes glowMove {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(60px, 60px);
    }
  }
  
  .footer-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .footer-logo img {
    max-width: 140px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .footer-logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
  }
  
  .footer-content h3 {
    color: #f5c542;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
  
  .footer-tagline {
    color: #ddd;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.95rem;
    color: #ccc;
  }
  
  .footer-contact strong {
    color: #f5c542;
  }
  
  /* Bottom Line */
  .footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
  }
  
  .footer-bottom p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: #aaa;
  }
  
  .footer-credit {
    font-style: italic;
    font-size: 0.8rem;
    color: #f5c542;
    opacity: 0.9;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content h3 {
      font-size: 1.4rem;
    }
    .footer-tagline {
      font-size: 0.9rem;
    }
    .footer-contact p {
      font-size: 0.9rem;
    }
  }
  