:root {
  --green:#0f474f;
  --gold:#d8af3c;
}

body{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.theme-green{
    color:var(--green);
}
.theme-golden{
    color:var(--gold);
}


.h-one{font-size:40px; font-weight: 600; padding: 25px 0;}




section{
    padding: 50px 0;
}

.section-header{
    padding: 20px 0;
}

.section-header p{
    max-width: 900px;
}
/* TOPBAR */

.topbar {
  background: linear-gradient(45deg, var(--green) 50%, var(--gold) 50%);
  color:#fff;
  padding:8px 0;
  font-size:14px;
}
.topbar a { color:#fff; margin-left:10px; }

.top-right{
    max-width: 150px;
}

/* header  */

.navbar-custom {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 9999;
}


.nav-inner {
    max-width: 1200px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;   /* 🔑 THIS FIXES COLLAPSE */
}


/* LOGO LEFT */
.nav-logo {
    flex: 0 0 auto;
}

.nav-logo img {
    height: 100px;
}


/* NAVIGATION CENTER */
.navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: -webkit-box;
    list-style: none;
    margin: 0;
    padding: 0;
}


/* NAV LINKS */
.nav-link {
    color: #000;
    padding: 18px 22px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}


.navbar-custom .nav-link {
    color: #000;
    padding: 18px 25px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    border-bottom: 2px solid #324e3d;
}

.nav-item {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 99999;
}


/* MOBILE TOGGLE RIGHT */
.mobile-toggle {
    margin-left: auto;
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 992px) {
    .navbar-nav {
        position: static;
        transform: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        display: none;
        margin-top: 80px;
    }

    .navbar-nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }
}


/* Desktop Dropdown */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-left: 8px;
    transition: transform 0.3s;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item.dropdown:hover > .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom > li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.dropdown-menu-custom > li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
    position: relative;
    padding-right: 35px;
}

.dropdown-menu-custom > li > a:hover {
    background: #f8f8f8;
    color: gold;
    border-bottom: 2px solid gold;
}

/* Submenu Level 2 */
.dropdown-menu-custom li.has-submenu > a::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-right: 2px solid #d59e06;
    border-bottom: 2px solid #d59e06;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s;
}

.dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 1001;
    padding: 0;
    margin: 0;
    list-style: none;
    border-left: 3px solid gold;
}

.dropdown-menu-custom > li.has-submenu:hover > .dropdown-submenu {
    display: block;
}

.dropdown-submenu > li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.dropdown-submenu > li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
    position: relative;
    padding-right: 35px;
}

.dropdown-submenu > li > a:hover {
    background: #f8f8f8;
    color: gold;
    border-bottom: 2px solid gold;
}

/* Submenu Level 3 */
.dropdown-submenu li.has-submenu > a::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #d59e06;
    border-bottom: 2px solid #d59e06;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s;
}

.dropdown-submenu-2 {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 1002;
    padding: 0;
    margin: 0;
    list-style: none;
    border-left: 3px solid #d59e06;
}

.dropdown-submenu > li.has-submenu:hover > .dropdown-submenu-2 {
    display: block;
}

.dropdown-submenu-2 > li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-submenu-2 > li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
}

.dropdown-submenu-2 > li > a:hover {
    background: #f8f8f8;
    color: #d59e06;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    background: transparent;
    border: none;
    color:#565656;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    display: none;
    margin-left: auto;
    margin-right: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #2b2a28 0%, #d59e06 100%);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    background: #d59e06;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.mobile-nav-title {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.mobile-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.3s;
}

.mobile-menu > li > a:hover {
    background: rgba(0,0,0,0.2);
}

.mobile-menu .toggle-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    font-size: 12px;
}

.mobile-menu li.has-submenu.active > a .toggle-arrow {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    background: rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    display: block;
    max-height: 1000px;
}

.mobile-submenu > li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-submenu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 35px 12px 45px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    background: rgba(255,255,255,0.05);
    text-transform: uppercase;
}

.mobile-submenu > li > a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-submenu .toggle-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: transform 0.3s;
}

.mobile-submenu li.has-submenu.active > a .toggle-arrow {
    transform: rotate(180deg);
}

/* Level 3 Mobile Submenu */
.mobile-submenu-2 {
    background: rgba(0,0,0,0.3);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu-2.active {
    display: block;
    max-height: 1000px;
}

.mobile-submenu-2 > li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-submenu-2 > li > a {
    display: block;
    padding: 10px 60px 10px 55px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    background: rgba(255,255,255,0.08);
}

.mobile-submenu-2 > li > a:hover {
    background: rgba(255,255,255,0.15);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

.overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-custom .navbar-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}



/* showcase */

.promo-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.promo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sale-badge {
    color: gold;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.promo-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.promo-description {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.shop-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
    font-size: 16px;
}

.shop-btn:hover {
    background: var(--gold);
    transform: translateX(5px);
    color: white;
    text-decoration: none;
}

.arrow {
    font-size: 18px;
    font-weight: bold;
}

.promo-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    border-radius: 0 20px 20px 0;
}

.card-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-section {
        padding: 40px 15px;
    }

    .promo-card {
        padding: 40px 25px;
        min-height: 350px;
        margin-bottom: 30px;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .promo-image {
        width: 100%;
        opacity: 0.3;
        position: relative;
    }

    .card-content {
        max-width: 100%;
    }

    .shop-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .promo-section {
        padding: 30px 10px;
    }

    .promo-card {
        padding: 30px 20px;
    }

    .promo-title {
        font-size: 26px;
    }

    .sale-badge {
        font-size: 12px;
    }

    .promo-description {
        font-size: 14px;
    }
}


/* about-css */


.about-section {
}

.section-title h1 {
    font-size: 40px;
    font-weight: 700;
}

.section-subtitle span {
    font-size: 25px;
    color: #555;
}

/* FLOATING IMAGE */
.floating-image {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
    opacity: 0;
    transform: translateX(-40px);
    animation: imageIn 1s ease forwards;
}

.floating-image img {
    width: 100%;
    border-radius: 10px;
}



/* TEXT */
.content-text p {
    text-align: justify;
    font-size: 16px;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: textIn 0.8s ease forwards;
}

/* STAGGER TEXT */
.content-text p:nth-of-type(1) { animation-delay: 0.4s; }
.content-text p:nth-of-type(2) { animation-delay: 0.6s; }
.content-text p:nth-of-type(3) { animation-delay: 0.8s; }
.content-text p:nth-of-type(4) { animation-delay: 1s; }

.highlight {
    font-weight: 600;
    color: #000;
}

/* CLEAR FLOAT */
.content-text::after {
    content: "";
    display: table;
    clear: both;
}

/* ANIMATIONS */
@keyframes imageIn {
to {
    opacity: 1;
    transform: translateX(0);
}
}

@keyframes textIn {
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* MOBILE */
@media (max-width: 768px) {
.floating-image {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
    animation-delay: 0s;
}
}



/* products-css */


/* Flip Card Styles */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* border-radius: 24px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front {
    background-color: white;
    color: black;
    overflow: hidden;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flip-card-back {
    background: rgba(0, 0, 0, 0.95);
    color: white;
    transform: rotateY(180deg);
    padding: 40px 30px;
    flex-direction: column;
}

.flip-card-back span {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 30px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back .learn-more {
    color: white;
    font-weight: 600;
    border-bottom: 2px solid white;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.flip-card-back .learn-more:hover {
    opacity: 0.8;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flip-card {
        height: 350px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .flip-card-back span {
        font-size: 24px;
    }

    .flip-card-back p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .flip-card {
        height: 300px;
    }

    .section-title {
        font-size: 28px;
    }

    .flip-card-back span {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .flip-card-back {
        padding: 30px 20px;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile flip on click */
@media (max-width: 767px) {
    .flip-card-inner.flipped {
        transform: rotateY(180deg);
    }
}


/* === Scroll Fade In Animation === */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.left {
    transform: translateX(-40px);
}

.fade-in.right {
    transform: translateX(40px);
}

.fade-in.fast {
    transition-duration: 0.4s;
}

.fade-in.slow {
    transition-duration: 1.2s;
}



/* showcase-section */

.promo-section {
  padding: 60px 20px;
  background: #fff;
}

.promo-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
}

.sale {
  color: #c23b3b;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.promo-content span {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000;
}

.promo-content p {
  color: #555;
  max-width: 320px;
  margin-bottom: 25px;
}

.promo-btn {
  width: fit-content;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.promo-btn:hover {
  background: #333;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991px) {
  .promo-wrapper {
    grid-template-columns: 1fr;
  }

  .promo-content span {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .promo-content {
    padding: 25px;
  }

  .promo-content span {
    font-size: 24px;
  }

  .promo-content p {
    font-size: 14px;
  }
}


/* review-section  */

.testimonial-sec{
    background-color: #f4f4f4;
}

.reviews-container {
    position: relative;
}

.reviews-header {
    margin-bottom: 50px;
}

.reviews-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.reviews-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.reviews-controls {
    position: absolute;
    right: 0;
    top: 50px;
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: #333;
    background-color: #f0f0f0;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.reviews-carousel::-webkit-scrollbar {
    height: 6px;
}

.reviews-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.review-card {
    flex: 0 0 calc(50% - 15px);
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-product {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.product-image {
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #999;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

.product-image img{
    height: 120px;
    border-radius: 5px;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.author-role {
    font-size: 13px;    
    color: #545454;
}

.quote-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.reviewer-name {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.verified-badge {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    color: #FFC107;
    font-size: 16px;
}

@media (max-width: 768px) {
    .reviews-header h1 {
        font-size: 32px;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 20px;
    }

    .reviews-controls {
        top: -45px;
    }

    .reviews-carousel {
        gap: 20px;
    }

    .review-product {
        gap: 15px;
    }

    .product-image {
        width: 100px;
        height: 100px;
    }

    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .reviews-header h1 {
        font-size: 24px;
    }

    .reviews-header {
        margin-bottom: 40px;
    }

    .review-card {
        padding: 15px;
    }

    .review-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .product-image {
        width: 80px;
        height: 80px;
    }

    .reviews-controls {
        display: flex;
        gap: 10px;
        top: 160px;
        right: 20px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.shine-hover {
  position: relative;
  overflow: hidden;
}

.shine-hover img {
  width: 100%;
  display: block;
}

/* Light reflection */
.shine-hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

/* Hover animation */
.shine-hover:hover::after {
  left: 125%;
}



/* why-us-section */

.why-choose-section {
    padding: 60px 20px;
    /* background-color: #fafafa; */
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.386) 0%,
                         rgba(57, 57, 57, 0.158) 100%), url('../image/img/sbg1.jpg');

    /* background-image: url('../image/img/sbg1.jpg'); */
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    position: relative;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Collage Styles */
.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.collage-img-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.collage-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-img-small {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.collage-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.red-accent-bar {
    position: absolute;
    width: 8px;
    height: 80px;
    background: linear-gradient(135deg, #98843f 0%, #98843f 100%);
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Content Styles */
.why-choose-content {
    position: relative;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.section-description {
    font-size: 16px;
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 45px;
}

.service-item {
    margin-bottom: 40px;
    position: relative;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-bar-custom {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #98843f 0%, #98843f 100%);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.percentage-badge {
    position: absolute;
    top: -30px;
    right: 0;
    background:var(--gold);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Floating Action Button */
.floating-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #98843f 0%, #98843f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 24px;
    bottom: 0;
    right: 0;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content {
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .red-accent-bar {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-collage {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .collage-img-large {
        grid-column: 1;
        grid-row: 1;
        height: 300px;
    }

    .collage-img-small {
        height: 250px;
    }

    .red-accent-bar {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .service-item {
        margin-bottom: 30px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 30px 15px;
    }

    .section-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }

    .image-collage {
        gap: 12px;
    }

    .collage-img-large {
        height: 250px;
    }

    .collage-img-small {
        height: 200px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* Placeholder Image Styles */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* Cta-form */

.cta-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-header span {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Styling */
.faq-section span {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
}

.accordion {
    border: none;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: #fff;
    border: none;
    color: #0f172a;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--gold);
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

.accordion-button::after {
    filter: brightness(0.4);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b82f6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: #f8fafc;
    color: #475569;
    border-top: 1px solid #e2e8f0;
    padding: 18px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form-wrapper {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.contact-form-overlay {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 45px 35px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrapper span {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-form-wrapper .subtitle {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 14px 16px;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus {
    background-color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-control:hover {
    border-color: #cbd5e1;
    background-color: #fff;
}

.form-control::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.form-textarea {
    resize: none;
    min-height: 110px;
}

.submit-btn {
    background: var(--green);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
    margin-top: 8px;
}

.submit-btn:hover {
    background: var(--gold);
    box-shadow: 0 10px 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-container {
    display: block;
}

.success-message {
    display: none;
    text-align: center;
    height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.success-message.show {
    display: flex;
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.success-message span {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.success-message p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-header span {
        font-size: 2.2rem;
    }

    .cta-header p {
        font-size: 1rem;
    }

    .faq-section span {
        font-size: 1.6rem;
    }

    .contact-form-wrapper {
        min-height: auto;
    }

    .contact-form-overlay {
        padding: 35px 25px;
        min-height: auto;
    }

    .contact-form-wrapper span {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 30px 15px;
    }

    .cta-header span {
        font-size: 1.75rem;
    }

    .cta-header p {
        font-size: 0.95rem;
    }

    .faq-section span,
    .contact-form-wrapper span {
        font-size: 1.35rem;
    }

    .accordion-button {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .form-control {
        padding: 12px 14px;
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .contact-form-overlay {
        padding: 25px 20px;
    }

    .contact-form-wrapper .subtitle {
        margin-bottom: 20px;
    }
}


/* Layout */
.ps-wrap{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}

.ps-title{
    text-align:center;
    margin-bottom:40px;
    font-size:32px;
    font-weight:600;
    color:#333;
}

/* Slider Box */
.ps-box{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:8px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.ps-mask{
    overflow:hidden;
}

.ps-row{
    display:flex;
    gap:20px;
    transition:transform .5s ease-in-out;
}

/* Card */
.ps-card{
    flex:0 0 calc(25% - 15px);
    min-height:250px;
    border:1px solid #e9ecef;
    border-radius:8px;
    overflow:hidden;
    transition:.3s;
}

.ps-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 16px rgba(0,0,0,.15);
}

.ps-img{
    width:100%;
    height:300px;
    object-fit:cover;
    background:#eee;
}

.ps-info{
    padding:15px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.ps-link{
    text-decoration:none;
    color:#333;
    font-size:15px;
    font-weight:600;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ps-link:hover{
    color:var(--gold);
}

/* Navigation */
.ps-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.5);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
}

.ps-nav:hover{
    background:rgba(0,0,0,.8);
}

.ps-prev{ left:10px; }
.ps-next{ right:10px; }

/* Responsive */
@media(max-width:1200px){
    .ps-card{ flex:0 0 calc(33.333% - 15px); }
}

@media(max-width:768px){
    .ps-card{ flex:0 0 calc(50% - 10px); }
    .ps-row{ gap:15px; }
    .ps-nav{ width:40px;height:40px;font-size:18px; }
    .ps-title{ font-size:24px; }
}

@media(max-width:480px){
    .ps-card{ flex:0 0 100%; }
    .ps-row{ gap:10px; }
    .ps-nav{ width:35px;height:35px;font-size:16px; }
    .ps-box{ padding:15px; }
    .ps-title{ font-size:20px;margin-bottom:25px; }
}

@media (max-width: 768px) {
    .img-one {
        display: none !important;
    }
    .product-info {
        flex: 1;
        margin-left: 25px;
    }

}


/* Footer Styles */
footer {
    background-image: linear-gradient(135deg, #0f474feb 0%, #0f474ff0 100%), url(../image/img/footer3.avif);
    color: #b0b0b0;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #ff5544;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.footer-description p{
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}
.top-left a{
    text-decoration:none;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color:var(--gold);
    transform: translateY(-3px);
}

/* Column Heading */
.footer-column span {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: left;
}

/* Quick Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top:25px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color:var(--gold);
}

/* Contact Section */
.contact-item {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color:#fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: #fff ;
}

.contact-info p a{
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: #fff ;
    text-decoration: none;
}

.contact-info p a:hover{
    color: var(--gold);
}

/* Newsletter Section */
.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-input::placeholder {
    color: #e9e9e9;
}

.newsletter-input:focus {
    outline: none;
    background-color: #e9e9e9;
    box-shadow: 0 0 0 2px gold;
}

.signup-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--gold);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color:var(--green);
}

.newsletter-text {
    font-size: 13px;
    color: #fff;
    margin-top: 15px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p a{
    text-decoration: none;
    color: var(--gold);

}

.copyright {
    font-size: 13px;
    color: #fff;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
}

.footer-links-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--gold);
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.go-to-top:hover {
    background-color: var(--green);
    transform: translateY(-5px);
}

.go-to-top.show {
    display: flex;
}

.go-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .footer-logo {
        gap: 15px;
    }

    .newsletter-input,
    .signup-btn {
        font-size: 14px;
    }
}










/* Floating Wrapper */
.floating-contact {
    position: fixed;
    left: 0;
    top: 75%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Button Base */
.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 0 30px 30px 0;
    text-decoration: none;
    overflow: hidden;
    transition: width 0.35s ease;
}

/* Icons */
.float-btn img {
    width: 40px;
    height: 40px;
    /* margin: 0 auto; */
}

/* Text Slide */
.float-text {
    position: absolute;
    left: -220px;
    white-space: nowrap;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: left 0.35s ease;
}

/* Hover Effect */
.float-btn:hover {
    width: 240px;
}

.float-btn:hover .float-text {
    left: 32px;
}

/* Call Button */
.call-btn {
    background: #324e3d;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .float-btn:hover {
        width: 200px;
    }
}





/* product-listing */

.section-title-listing {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    animation: slideDown 0.8s ease;
}

.section-title-listing span {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    /* color: #000; */
}

.section-title-listing p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #000;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-listing {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-listing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image-listing {
    width: 100%;
    height: 280px;
    object-fit: contain;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.product-image-listing img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-listing:hover .product-image-listing img {
    transform: scale(1.1);
}

.product-body-listing {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title-listing {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0px;
    line-height: 1.4;
    /* min-height: 60px; */
    display: flex;
    align-items: center;
    text-decoration: none;
}

.product-actions-listing {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

.btn-action-listing {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-callback-listing {
    background:var(--gold);
    color: white;
}

.btn-callback-listing:hover {
    background:var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-quote-listing {
    background: var(--green);
    color: white;
}

.btn-quote-listing:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
    color: white;
}

.span-space{
    padding:0 6px;
}

.whatsapp-icon-listing {
    width: 50px;
    height: 50px;
    background: #25D366;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    font-weight: 600;
    position: absolute;
    bottom: 35px;
    right: 0px;
}

.whatsapp-icon-listing:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-container-listing {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    position: relative;
}

.modal-header-listing {
    background: linear-gradient(135deg, #6c571e 0%, #072327 100%);
    color: white;
    border: none;
    padding: 10px 30px;
}

.modal-header-listing .btn-close {
    filter: invert(1);
    position: absolute;
    top: 5px;
    right: 7px;
}

.form-label-listing {
    color: #333;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 15px;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, #6c571e 0%, #072327 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #072327 0%, #6c571e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .section-title-listing span {
        font-size: 1.8rem;
    }

    .product-title-listing {
        font-size: 1.2rem;
        min-height: auto;
    }

    .btn-action-listing {
        min-width: 100%;
        flex: auto;
    }

    .product-actions-listing {
        flex-direction: column;
    }

    .product-image-listing {
        height: 280px;
    }

    .whatsapp-icon-listing {
        bottom:40px;
        right: 0px;
    }

}

.success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    animation: slideDown 0.3s ease;
}

.success-message.show {
    display: block;
}



.breadcrumb-banner {
    background: linear-gradient(
        135deg,
        rgba(43, 42, 40, 0.7) 0%,
        rgba(213, 158, 6, 0.5) 100%
    ),
    url('https://www.eliteplastics.in/images/about_us1.png?w=1200&h=400&fit=crop')
    center / cover no-repeat;

    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.breadcrumb-content {
    max-width: 800px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: #d59e06;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #d59e06;
}

.breadcrumb-item.active {
    color: #d59e06;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #d59e06;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}



/* sitemap */

.sitemap-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -1px;
}

a.sitemap-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sitemap-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
    padding-bottom: 15px;
    /*display: inline-block;*/
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sitemap-card {
    border: 2.5px solid var(--gold);
    border-radius: 10px;
    padding:10px 20px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sitemap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(215, 175, 60, 0.05);
    transition: left 0.3s ease;
    z-index: 0;
}

.sitemap-card:hover {
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(15, 71, 79, 0.2);
    transform: translateY(-5px);
}

.sitemap-card:hover::before {
    left: 0;
}

.sitemap-card > * {
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.sitemap-card:hover .card-title {
    color: var(--gold);
}

.card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.top-section .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.highlight-card {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
}

.highlight-card .card-title {
    color: white;
}

.highlight-card .card-desc {
    color: rgba(255, 255, 255, 0.95);
}

.highlight-card:hover {
    box-shadow: 0 10px 30px rgba(216, 175, 60, 0.4);
    border-color: var(--green) !important;
}

.highlight-card:hover .card-title {
    color: var(--green);
}

@media (max-width: 768px) {
    .sitemap-title {
    font-size: 2.5rem;
    }

    body {
    padding: 40px 20px;
    }

    .cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    }

    .section-title {
    font-size: 1.4rem;
    }
}

 .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            aspect-ratio: 4/3;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 90%;
            max-height: 85vh;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .lb-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid white;
            color: white;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .lb-btn:hover {
            background: white;
            color: #333;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 24px;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 55px;
            height: 55px;
            font-size: 28px;
        }

        .nav-btn:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn { left: 30px; }
        .next-btn { right: 30px; }

        .thumbnail-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 20px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            max-width: 90%;
            overflow-x: auto;
            display: flex;
            gap: 10px;
        }

        .thumbnail {
            width: 70px;
            height: 50px;
            border-radius: 8px;
            cursor: pointer;
            object-fit: cover;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .thumbnail:hover {
            transform: scale(1.1);
        }

        .thumbnail.active {
            border-color: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .counter {
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 25px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }
        
        .gallery-img {
    cursor: pointer;
    border-radius: 10px;
    transition: transform .3s, box-shadow .3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

/* Modal */
.modal-content {
    border-radius: 12px;
}

/* Close Icon */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
}

/* Thumbnails */
.thumbs img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: .3s;
}

.thumbs img:hover,
.thumbs img.active {
    opacity: 1;
    border-color: #fff;
}

/* Navigation Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    padding: 8px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.2);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }