
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&amp;display=swap");
/* 
   ROOT VARIABLES
 */
:root {
  /* 🎨 Colors */
  --color-primary: rgb(89, 161, 206) ;
  --color-primary-dark: #314d43;
  --color-secondary: white;
  --color-secondary-dark:  rgb(249, 245, 245);
  --color-dark: #2f2f2f;
  --color-light: #eff2f2;
  --color-gray: #888686;
  --color-border: #cee1e6;
  --color-white: #ffffff;

  /* 🔤 Typography */
  --font-family-base: "Inter", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Font Sizes (responsive with clamp) */
  --fs-xs: clamp(0.75rem, 0.7vw + 0.5rem, 0.875rem); /* 12-14px */
  --fs-sm: clamp(0.875rem, 0.8vw + 0.5rem, 1rem);   /* 14-16px */
  --fs-md: clamp(1rem, 1vw + 0.5rem, 1.125rem);     /* 16-18px */
  --fs-lg: clamp(1.125rem, 1.2vw + 0.5rem, 1.5rem); /* 18-24px */
  --fs-xl: clamp(1.5rem, 1.5vw + 0.5rem, 2rem);     /* 24-32px */
  --fs-xxl: clamp(2rem, 2vw + 1rem, 3rem);          /* 32-48px */
  --fs-display: clamp(2.5rem, 3vw + 1rem, 3.75rem); /* 40-60px */

  /* 📏 Spacing */
  --space-xxs: 0.25rem;  /* 4px */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 0.75rem;   /* 12px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-xxl: 3rem;     /* 48px */
  --space-section: 7rem; /* Section padding */
}
* {
    margin: 0;
    padding: 0;
}
*
{
  box-sizing: border-box !important;
  
}
html, body {
  max-width: 100%;
  overflow-x: hidden ;  
}



/* 
   BASE STYLES
 */
body {
  /* overflow-x: auto; */
  position: relative;
  font-family: var(--font-family-base);
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-gray);
  font-size: var(--fs-sm);
  background: linear-gradient(135deg, #daedf6, #ffffff); 
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  font-weight: var(--fw-bold);
}

a {
  text-decoration: underline;
  color: var(--color-dark);
  transition: .3s all ease;
}
a:hover {
  text-decoration: none;
  color: var(--color-dark);
}
a.more {
  font-weight: var(--fw-semibold);
}

/* 
   NAVBAR
 */
.custom-navbar {
  background: white !important;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.custom-navbar .navbar-brand {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
}

.custom-navbar .navbar-brand > span {
  opacity: .4;
}

.custom-navbar .navbar-toggler {
  border-color: transparent;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
  color: #74c0e3;
}

.navbar-brand img {
  height: 40px; 
  width: auto;
}

/* Hamburger icon color */
.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.custom-navbar .custom-navbar-nav li a {
  font-weight: var(--fw-medium);
  font-size: 14px !important;  
  color: black !important;
  opacity: .5;
  position: relative;
  transition: .3s ease;
  white-space: nowrap;
}


/* Hover and active underline effect */
@media (min-width: 768px) {
  .custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: var(--color-secondary);
    height: 5px;
    width: 0;
    transition: .15s ease-out;
  }
}

.custom-navbar .custom-navbar-nav li a:hover {
  opacity: 1;
  color: var(--color-primary) ;
}

.custom-navbar .custom-navbar-nav li a:hover:before,
.custom-navbar .custom-navbar-nav li.active a:before {
  width: calc(100% - 16px);
  background: var(--color-primary);
}

.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
  color: var(--color-primary) ;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: var(--color-light); 
  color: var(--color-primary); 
}

/* Change dropdown link color when active / clicked */
.navbar .dropdown-menu .dropdown-item:active,
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: var(--color-light); 
  color: #fff; 
  outline: none; 
  box-shadow: none; /
}

/* Optional: keep default text color */
.navbar .dropdown-menu .dropdown-item {
  color: #333; /* Default text color */
}

/* CTA button adjustments */
.custom-navbar .custom-navbar-cta {
  margin-left: 0 !important;
  flex-direction: row;
}

@media (min-width: 768px) {
  .custom-navbar .custom-navbar-cta {
    margin-left: var(--space-xl) !important;
  }
}

.custom-navbar .custom-navbar-cta li:first-child {
  margin-right: var(--space-md);
}

.custom-navbar .navbar-collapse {
  flex-wrap: wrap;
}

/* Medium screens fixes: 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .custom-navbar .custom-navbar-nav li {
    margin: 0 0.3rem; 
  }

  .custom-navbar .custom-navbar-cta {
    margin-left: auto; /* align button to right */
    margin-top: 0;     /* remove extra top spacing */
  }

  /* Reduce font-size slightly to prevent overflow */
  .custom-navbar .custom-navbar-nav li a {
    font-size: 0.95rem;
  }
}

/* Large screens spacing */
@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li {
    margin: 0 var(--space-sm);
  }
}
/* home hero */
/* .hero-home {
  background: url("../images/products/bg1.jpg") no-repeat center center;
  background-size: cover; 
  
  
  margin-top: 30px;
  position: relative;

} */
.hero-home {
  background: url("../images/products/bg1.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 100vh; 
  display: flex;
  align-items: center;
}

.hero-home .intro-home-excerpt {
  position: relative;
  z-index: 4;
  max-width: 780px;
}

.hero-home h1 {
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 4vw, 3rem); 
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-home p {
  color: rgb(235, 235, 235);
  margin-bottom: var(--space-lg);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.hero-home .hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-home .hero-img-wrap img {
  width: 100%;
  max-width: 600px; /* large screens */
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-home .hero-img-wrap img:hover {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

/* Decorative dots */
.hero-home .hero-img-wrap:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 220px;
  background: url("../images/dots-light.svg") no-repeat center/contain;
  right: -80px;
  top: 30px;
  opacity: 0.8;
  animation: rotateDots 25s linear infinite;
}

@keyframes rotateDots {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Tablets */
@media (max-width: 991.98px) {
  .hero-home {
    min-height: auto;
    padding: 4rem 0;
    text-align: center;
  }

  .hero-home .intro-home-excerpt {
    margin-bottom: 2rem;
  }

  .hero-home .hero-img-wrap img {
    max-width: 500px;
  }

  .hero-home .hero-img-wrap:after {
    display: none; 
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .hero-home {
    padding: 3rem 1rem;
  }

  .hero-home h1 {
    font-size: 1.8rem;
  }

  .hero-home p {
    font-size: 0.95rem;
  }

  .hero-home .hero-img-wrap img {
    max-width: 300px;
  }
}


/* 
   HERO SECTION
*/
.hero {
  background: url("../images/logo/1banner.png") no-repeat center center;
  background-size: cover;
  min-height: 350px; 
  margin-top: 0; 
  position: relative;

  display: flex;
  justify-content: center; 
  align-items: center;    
  text-align: center;
  padding: 0 1rem;         
}

.hero .intro-excerpt {
  max-width: 680px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 4rem; 
  }
  .hero p {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: calc(6rem - 30px) 0 6rem;
  }
}
@media (min-width: 992px) {
  .hero {
    padding: calc(8rem - 30px) 0 8rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 0 1rem; 
  }
}

/* .hero .intro-excerpt {
  position: relative;
  z-index: 4;
  max-width: 680px;
} */

.hero h1 {
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-xxl);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero p {
  width: 100%;
  max-width: 750px;
  margin: 0 auto var(--space-lg);
  color: rgb(235, 235, 235);
  font-size: 1.1rem;
  line-height: 1.7;
}


@media (max-width: 576px) {
  .hero p {
    padding: 0 15px;
    font-size: 1rem;
  }
}


.hero .hero-img-wrap {
  position: relative;
  margin-top: 50px; 
}

.hero .hero-img-wrap img {
  max-width: 720px; 
  position: relative;
  z-index: 2;
  transform: translateY(20px); 
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero .hero-img-wrap img:hover {
  
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

.hero .hero-img-wrap:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 260px;
  background: url("../images/dots-light.svg") no-repeat center/contain;
  right: -120px;
  top: 40px; /* moved a little lower */
  opacity: 0.8;
  animation: rotateDots 25s linear infinite;
}

@keyframes rotateDots {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Fix hero banner and text for very small screens (≤ 325px) */
@media (max-width: 325px) {
  .hero {
    height: auto; 
    padding: 3rem 0 3rem; 
    background-position: top center; 
  }

  .hero .intro-excerpt {
    max-width: 90%; 
  }

  .hero h1 {
    font-size: 1.8rem; 
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem; 
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }
}
/* Hero banner adjustments for screens 325px to 361px */
@media (min-width: 325px) and (max-width: 362px) {
  .hero {
    height: auto; 
    padding: 3.5rem 0 3.5rem; 
    background-position: top center; 
  }

  .hero .intro-excerpt {
    max-width: 90%; 
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 1.9rem; 
    line-height: 1.25;
  }

  .hero p {
    font-size: 1rem; 
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 0.5rem; 
  }
}

/* ===========================
   BUTTONS
=========================== */
/* Common Button Base */
.btn {
  font-weight: var(--fw-semibold);
  padding: 12px 30px;
  border-radius: 30px;
  color: var(--color-white);
  background: var(--color-dark);
  border: 2px solid var(--color-dark);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Smooth Hover Overlay */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.4s ease;
}

.btn:hover::after {
  left: 0;
}

/* Dark Button */
.btn:hover {
  background: #222;
  border-color: #222;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Primary Button */
.btn.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #5faed6);
  border-color: var(--color-primary);
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  background: linear-gradient(135deg, #74c0e3, var(--color-primary));
  border-color: #74c0e3;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(89, 161, 206, 0.4);
}


/* Secondary Button */
.btn.btn-secondary {
  color: var(--color-dark);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn.btn-secondary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: rgb(16, 16, 16);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* White Outline Button */
.btn.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.btn.btn-white-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  
  color: var(--color-white) !important;
}

/* Remove harsh focus */
.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ===========================
   SECTION UTILITIES
=========================== */
.section-title {
  color: var(--color-dark);
}
.product-section,
.why-choose-section,
.we-help-section,
.popular-product,
.blog-section,
.footer-section,
.untree_co-section {
  padding: var(--space-section) 0;
}

/* ===========================
   PRODUCT SECTION
=========================== */
.partners-section {
  padding: 100px 0;
  background: url("../images/products/bg14.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}




/* Partner Cards */
.partners-section .card {
  text-align: center;
  position: relative;
  padding: 15px 10px; /* reduced padding */
  cursor: pointer;
  border-radius: 15px;
  border: none;
  background: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  overflow: hidden;
  min-height: 120px; /* reduced height */
  max-width: 220px; /* slightly smaller width */
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding-top: 20px; /* less top padding */
}

/* Image */
.partners-section .card img {
  max-width: 250px !important; /* smaller logo size */
  margin-bottom: 0px !important; /* reduce gap below image */
  transition: transform 0.4s ease;
  filter: grayscale(30%);
  margin-left: auto;
  margin-right: auto; /* keep centered */
  display: block;
}

/* Title text */
.partners-section .card .card-title {
  font-size: 0.95rem; /* slightly smaller text */
  margin-top: 4px; /* reduce space above text */
  margin-bottom: 0; /* remove extra bottom space */
  color: #333;
}

/* Text */


/* Hover Overlay */
.partners-section .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(60, 130, 190, 0.1), rgba(60, 130, 190, 0));
  transition: all 0.6s ease;
  z-index: 0;
}

.partners-section .card:hover::after {
  left: 0;
}

/* Hover Effects */
.partners-section .card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #ffffff, #f1f9ff);
}

.partners-section .card:hover img {
  
  filter: grayscale(0%) drop-shadow(0 6px 8px rgba(0, 0, 0, 0.2));
}

.partners-section .card:hover .card-body ul li {
  color: var(--color-primary);
}

.product-link {
  text-decoration: none; 
  color: inherit;       
  display: inline-block; 
}

.product-link:hover {
  color: inherit; 
}
/* Base Feature Card */
.why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: url("../images/products/bg14.jpg") no-repeat center center;
  background-size: cover;
  animation: bgMove 30s linear infinite;
  z-index: 1; /* ensure stacking context */
}

/* Overlay */

.why-choose-section > * {
  position: relative;
  z-index: 3;
}

/* Feature cards (as you had) */
.feature-card {
  border: none;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f5f8fb, #e6f0fa);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: pointer;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.feature-card .icon {
  width: 70px; height: 70px; margin: 0 auto 15px; border-radius: 50%;
  background: rgba(89, 161, 206, 0.1);
  display: flex; justify-content: center; align-items: center;
  transition: background 0.4s ease, transform 0.4s ease;
}
.feature-card h5 { font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; color: #2f2f2f; }
.feature-card p  { font-size: 0.875rem; line-height: 1.5; color: #555; margin-bottom: 0; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 25px 45px rgba(0,0,0,.15); background: linear-gradient(135deg, #59a1ce, #a0d4f5); }
.feature-card:hover h5, .feature-card:hover p { color: #fff !important; }
.feature-card:hover .icon { background: rgba(255,255,255,.2); }

/* ---------- Stacked images (scoped to this section only) ---------- */
.about-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.about-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Main big image */
.main-img {
  width: 100%;
  height: auto;
}

/* Sub images row (always side by side) */
.sub-img-wrap {
  display: flex;
  gap: 14px;
  width: 100%;
}

/* Sub images */
.sub-img {
  flex: 1;              /* equal share of row */
  max-width: 49%;       /* each limited to half width */
  height: auto;         /* responsive height */
  border-radius: 12px;
  object-fit: cover;
}





/* Features List */
.features-list .feature {
  font-weight: 500;
  margin-bottom: 10px;
  padding: 10px 15px;
  background: rgba(89, 161, 206, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: 6px;
  transition: background 0.3s;
}
.features-list .feature:hover {
  background: rgba(89, 161, 206, 0.2);
}
/* Lift the main image slightly */

.we-help-section .imgs-grid:before {
  position: absolute;
  content: "";
  width: 16rem;   /* 255px → relative unit */
  height: 13.5rem; /* 217px → relative unit */

  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-40%, -40%);
  z-index: -1;
}

.we-help-section .imgs-grid .grid {
  position: relative;
}

.we-help-section .imgs-grid .grid img {
  border-radius: var(--space-lg); /* 20px → use spacing scale */
  max-width: 100%;
}

.we-help-section .imgs-grid .grid.grid-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 1 / span 27;
}

.we-help-section .imgs-grid .grid.grid-2 {
  -ms-grid-column: 19;
  -ms-grid-column-span: 27;
  grid-column: 19 / span 27;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / span 5;
  padding-left: var(--space-lg); /* 20px → variable */
}

.we-help-section .imgs-grid .grid.grid-3 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 14 / span 16;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 6 / span 27;
  padding-top: var(--space-lg); /* 20px → variable */
}


/* ---------------- Custom List ---------------- */
/* ---------------- Custom List ---------------- */
.custom-list {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.custom-list li {
  display: inline-block;
  width: calc(50% - var(--space-md));
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  position: relative;
  padding-left: var(--space-lg);
  font-size: var(--font-sm);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.custom-list li:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.custom-list li:before {
  content: "";
  width: 0.625rem; /* 10px */
  height: 0.625rem;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--white);
  position: absolute;
  left: 0;
  top: 0.5rem; /* 8px */
  transition: all 0.3s ease;
}

.custom-list li:hover:before {
  background: var(--primary-color);
}

/* ---------------- Popular Product ---------------- */
.product-item-sm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 220px;
  height: 320px;
  background: #fff;
  border-radius: 25px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay gradient effect */
.product-item-sm::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(171, 217, 246, 0.8), rgba(217, 232, 242, 0.8));
  transition: bottom 0.5s ease;
  z-index: 0;
}

/* Sweep-up effect on hover */
.product-item-sm:hover::before {
  bottom: 0; 
}


.product-item-sm .thumbnail,
.product-item-sm h3,
.product-item-sm p {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Change text color on hover */
.product-item-sm:hover h3,
.product-item-sm:hover p {
  color: #fff;
}

/* Thumbnail hover */
.product-item-sm .thumbnail {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #f0f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, background 0.5s ease;
}

.product-item-sm:hover .thumbnail {
  transform: scale(1.1);
  background: #ffffff33; 
}

.product-item-sm .thumbnail img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.popular-product-slider {
  overflow: hidden;
  padding: 60px 0;
  background: url("../images/products/bg1.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  perspective: 1000px; 
}


.popular-product-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}



.product-item-sm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 220px;
  height: 300px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.product-item-sm:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-item-sm .thumbnail {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #e6f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.product-item-sm:hover .thumbnail {
  transform: scale(1.15);
  background: linear-gradient(135deg, #59a1ce, #a0d4f5);
}

.product-item-sm .thumbnail img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-item-sm:hover .thumbnail img {
  transform: scale(1.05);
}

.product-item-sm h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.product-item-sm:hover h3 {
  color: #434343;
}

.product-item-sm p {
  font-size: 13px;
  color: #555;
  margin-bottom: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.product-item-sm:hover p {
    color: #555;
}
.featured-products-swiper {
  padding: 40px 0;
}

.featured-products-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}











/* ---------------- Testimonial Section ---------------- */


.testimonial-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, #d9f0fb, #ffffff);
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
}

/* Swiper Wrapper */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* Swiper Slide */
.swiper-slide {
  display: flex;
  min-height: 340px;
}

/* Testimonial Card */
.testimonial-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 360px; 
  padding: 2rem;
  background: rgba(255,255,255,0.85);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.testimonial-block:hover {
  /* transform: translateY(-4px); */
  /* box-shadow: 0 25px 45px rgba(0,0,0,0.15); */
  background: rgba(237, 252, 252, 0.95);
}

/* Review Text */
/* .testimonial-block blockquote {
  overflow-y: overlay; 
  overflow-x: hidden;
  margin-bottom: 1rem;
  padding-right: 8px;
  height: 100%;
} */

.testimonial-block blockquote {
  flex: 1;                 
  overflow-y: auto;        
  overflow-x: hidden;
  margin-bottom: 1rem;
  padding-right: 8px;
  /* remove height:100% (let flex control it) */
}




.testimonial-block blockquote::-webkit-scrollbar {
  width: 0;     
  height: 0;
}

/* Firefox */
.testimonial-block blockquote {
  scrollbar-width: none;   
  -ms-overflow-style: none;
}


.testimonial-block blockquote p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  padding-top: 30px;
}

/* Custom Scrollbar */
/* .testimonial-block blockquote::-webkit-scrollbar {
  width: 0px !important;
}
.testimonial-block blockquote::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.testimonial-block blockquote::-webkit-scrollbar-thumb:hover {
  background: #999;
} */

/* Author Info */
.author-info {
  padding-bottom: 1rem;
  text-align: center;
}
.author-info img {
  width: 80px;
  min-height: 70px;        
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}
.author-info img:hover {
  transform: scale(1.1);
}
.author-info h5 {
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  color: #2c3e50;
}
.author-info span {
  font-size: 0.875rem;
  color: #777;
}

/* Swiper Pagination */
.testimonial-section .swiper-pagination {
  position: relative;
  margin-top: 2rem;
  text-align: center;
  z-index: 3;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d6d6d6 !important;
  margin: 0 6px !important;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  transform: scale(1.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .testimonial-block {
    padding: 1.5rem;
    height: 280px; 
  }
  .testimonial-block blockquote p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0.4rem;
  }
  .author-info h5 {
    font-size: 0.95rem;
  }
  .author-info span {
    font-size: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .testimonial-block {
    padding-bottom: 2rem;
  }
  .author-info span {
    padding-bottom: 10px;
    display: inline-block;
  }
}

/* ---------------- Footer Section ---------------- */
.footer-section {
  padding: var(--space-xxl) 0;
  background: var(--color-white);
}
.footer-section .relative {
  position: relative;
}
.footer-section a {
  text-decoration: none;
  color: var(--color-dark);
  transition: .3s all ease;
  font-size: medium;
}
.footer-section  a:hover {
  color:var(--color-primary);
}
.footer-section  span:hover {
    color:var(--color-primary);
}
.footer-section .subscription-form {
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
@media (min-width: 992px) {
  .footer-section .subscription-form {
    margin-top: 0px;
    margin-bottom: var(--space-xxl);
  }
}
.footer-section .subscription-form h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
}
.footer-section .subscription-form .form-control {
  height: 50px;
  border-radius: 10px;
  font-family: var(--font-family-base);
}
.footer-section .subscription-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.footer-section .subscription-form .form-control::placeholder {
  font-size: var(--fs-xs);
}
.footer-section .subscription-form .btn {
  border-radius: 10px !important;
}
.footer-section .sofa-img {
  position: absolute;
  top: -120px;
  z-index: 1;
  right: 0;
}
.footer-section .sofa-img img {
  max-width: 380px;
}
.footer-section .links-wrap {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .footer-section .links-wrap {
    margin-top: 54px;
  }
}
.footer-section ul li {
  margin-bottom: var(--space-xs);
  
}
.footer-section .footer-logo-wrap .footer-logo {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  text-decoration: none;
  color: var(--color-primary);
}
.footer-section .custom-social li {
  margin: 2px;
  display: inline-block;
}
.footer-section .custom-social li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  background: var(--color-border);
  color: var(--color-primary);
  border-radius: 50%;
}
.footer-section .custom-social li a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.footer-section .border-top {
  border-color: var(--color-border);
}
.footer-section .border-top.copyright {
  font-size: var(--fs-xs) !important;
}

.cont-info i{
  color: #74c0e3;

}

/* ---------------- Forms & Utilities ---------------- */
.untree_co-section {
  padding: var(--space-section) 0;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  font-family: var(--font-family-base);
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.form-control::placeholder {
  font-size: var(--fs-xs);
}

.service {
  line-height: 1.5;
}
.service .service-icon {
  border-radius: 10px;
  flex: 0 0 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--color-primary);
  margin-right: var(--space-md);
  color: var(--color-white);
}

textarea {
  height: auto !important;
}


/* Chrome, Edge, Safari */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: rgb(220, 230, 240); /* light background for contrast */
}

::-webkit-scrollbar-thumb {
  background: rgb(149, 168, 180); /* your theme color */
  border: 3px solid rgb(220, 230, 240); /* space around thumb */
  border-radius: 0; /* ⬅ removes roundness, makes it square */
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(60, 130, 190); /* darker shade on hover */
  border-radius: 0; /* keep sharp corners on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(89, 161, 206) rgb(220, 230, 240);
}

@media (min-width: 1550px) {
  /* Limit the main container */
  .container,
  .container-fluid {
    max-width: 1950px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; 
    padding-left: 30px;
    padding-right: 30px;

  }

  /* Optional: adjust padding for sections */
  section,
  header,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Optional: limit content width inside main elements */
  .content,
  .main-content {
    max-width: 1250px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .hero {
    padding-top:  0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0; /* adjust as needed */
  }
}
/* Partner Hero Section */
.partner-hero {
  padding: 120px 0;
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 180px;
}

/* Hero Text */
.partner-hero .partner-hero-text {
  max-width: 650px;
}

.partner-hero .partner-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: white !important;
}

.partner-hero .partner-hero-text p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 30px;
  color: white !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .partner-hero {
    padding: 100px 0;
  }

  .partner-hero .partner-hero-text {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .partner-hero {
    padding: 80px 0;
  }

  .partner-hero .partner-hero-text h1 {
    font-size: 2rem;
  }

  .partner-hero .partner-hero-text p {
    font-size: 1rem;
  }
}
/* Partner Card */
.partner-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Logo */
.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 12px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Name */
.partner-name {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #333;
}
/* Partner card styling */
.partner-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* Radial effect */
.partner-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 80%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

/* On hover, expand radial effect and lift card */
.partner-card:hover::before {
  width: 300px;
  height: 300px;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Logo styling */
.partner-logo {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  margin: 0 auto 10px auto;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Partner name styling */
.partner-name {
  position: relative;
  z-index: 1;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}
.products-hero {
            background: #f8f9fa;
            padding: 80px 0;
            text-align: center;
        }
        .products-hero h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .products-hero p {
            font-size: 1rem;
            color: #555;
        }
.product-item-sm {
  width: 220px;              
  height: 280px;             
  border-radius: 15px;       
  overflow: hidden;
  margin: 12px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-item-sm:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* IMAGE AREA */
.product-item-sm .thumbnail {
  height: 150px;      
  width: 100%;
  overflow: hidden;
}

.product-item-sm .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;   
  transition: transform 0.5s ease;
}

.product-item-sm:hover .thumbnail img {
  transform: scale(1.08);
}

/* INFO AREA */
.product-item-sm .product-info {
  flex: 1;
  padding: 12px;
  text-align: center;
  background: #fff;
}

.product-item-sm h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.product-item-sm p {
  font-size: 0.85rem;
  color: #666;
}



        
.newsletter-section {
  position: relative;
  background: url("../images/products/bg13.jpg") center center/cover no-repeat;
  overflow: hidden;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.newsletter-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); 
  z-index: 1;
}

.newsletter-section .container {
  position: relative;
  z-index: 2; 
}

.newsletter-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.newsletter-section .form-control {
  border-radius: 50px;
  padding: 12px 20px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.newsletter-section .form-control:focus {
  outline: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.newsletter-section .btn-primary {
  border-radius: 50px;
  transition: all 0.3s ease;
}

.newsletter-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .newsletter-section h3 {
    font-size: 1.6rem;
  }

  .newsletter-section p {
    font-size: 0.9rem;
  }
}
.custom-navbar .nav-link {
  
  
  font-weight: bold;
  
}

.custom-navbar .nav-link.active {
  
  color:var(--color-primary) !important;
  font-weight: bold;
  
}
.team-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  background-color: var(--color-light);
}

.team-card img {
  transition: transform 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* Social icon hidden by default */
.team-social {
  opacity: 0;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  transition: opacity 0.3s ease-in-out;
}

/* Show icons on hover */
.team-card:hover .team-social {
  opacity: 1;
}

.social-icon i {
  font-size: 20px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Colors according to theme */
.social-icon.facebook i { color: #1877F2; }
.social-icon.instagram i { color: #E4405F; }
.social-icon.pinterest i { color: #E60023; }

/* Hover effects */
.social-icon:hover i {
  transform: scale(1.2) translateY(-3px);
  opacity: 0.9;
}
.service-section {
  padding-top: 150px !important;
}
.service-card {
  background-color: rgb(248, 248, 248);
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background-color: rgb(227, 239, 242)
}
.service-card .icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #4f4e4e;
  transition: transform 0.3s, color 0.3s;
}
.service-card:hover .icon {
  transform: scale(1.2);
  color: var(--color-primary) /* Darker Blue on hover */
}
.service-card h3 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;

  transition: color 0.3s;
}
.service-card p {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    padding: 25px 15px;
  }
  .service-card .icon {
    font-size: 40px;
  }
}
#service-section {
  scroll-margin-top: 80px; /* or the height of your navbar */
}
.contact-card {
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  background-color: #ffff;
  /* background: linear-gradient(145deg, #f3f5f7, #f6f8fe); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), inset 0 1px 3px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(0,123,255,0.08), transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
  transition: all 0.5s ease;
}

.contact-card:hover::before {
  top: -20%;
  left: -20%;
  transform: rotate(0deg) scale(1.1);
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #e0f3ff, #f9fdff);
}

.contact-card .contact-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0d6efd;
  transition: transform 0.4s ease, color 0.4s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.2);
  color: #0069d9;
}

.contact-card a {
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: #0d6efd;
  text-decoration: none;
}

.contact-card .contact-contents {
  z-index: 1;
  position: relative;
}

.catalog-btn{
  border-radius: 10px;
  background-color: var(--color-primary);
  border: none;
}
.catalog-btn:hover{
  background-color: #5faed6;
}
/* Reduce hero padding between 992px and 1245px */
@media (min-width: 992px)  {
  .hero {
    padding-top: 1rem !important;  /* reduce from py-5 / pt-5 */
    padding-bottom: 3rem !important;
  }

  .hero .intro-excerpt {
    padding-top: 0 !important;  /* remove extra top padding for text */
  }

  /* .hero-img-wrap img {
    padding-top: 0 !important;  
  } */
}
@media (max-width: 991.98px) {
  .hero-img-wrap img {
    padding-top: 60px !important;  /* remove extra top padding for image */
  }
  
}
/* Sidebar styling */
.container-flex {
      display: flex;
      margin: 20px auto;
      max-width: 1200px;
    }

    /* Sidebar */
    .sidebar {
      width: 250px;
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .sidebar h3 {
      font-size: 1.2em;
      margin-bottom: 15px;
      color: #333;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
    }

    .sidebar ul li {
      margin-bottom: 10px;
    }

    .sidebar ul li a {
      text-decoration: none;
      color: #555;
      font-weight: 500;
      display: block;
      padding: 8px 12px;
      border-radius: 5px;
      transition: background 0.3s;
    }

    .sidebar ul li a:hover {
      background-color: #007bff;
      color: #fff;
    }

    /* Main Content */
    .main-content {
      /* flex: 1; */
      background: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .main-content h1 {
      margin-bottom: 15px;
      color: #333;
    }

    .main-content p {
      color: #555;
      line-height: 1.6;
    }

    .main-content h2 {
      margin-top: 20px;
      margin-bottom: 10px;
      color: #333;
    }

    .main-content ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .main-content ul li {
      margin-bottom: 8px;
      color: #555;
    }

    .main-content img {
      max-width: 200px;
      margin-bottom: 15px;
    }

    .btn-back {
      margin-top: 20px;
    }


/* Partner Card Styling */

#product-partner-container .card {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  background-color: #fff;
  border-radius: 15px !important;
  
}

#product-partner-container .card-body {
  padding: 10px; /* reduce inner padding */
}

#product-partner-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

#product-partner-container .partner-logo img {
  max-height: 70px; /* slightly smaller logo */
  object-fit: contain;
  margin: 0 auto;
}

#product-partner-container .card-title {
  font-size: 1.2rem;
  margin-top: 5px;
  color: #333;
  text-align: center;
}


@media (max-width: 1200px) {
  #product-partner-container .col-lg-3 {
    flex: 0 0 33.3333%; 
    max-width: 33.3333%;
  }
}

@media (max-width: 992px) {
  #product-partner-container .col-lg-3 {
    flex: 0 0 50%; /* 2 cards per row on medium screens */
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  #product-partner-container .col-lg-3 {
    flex: 0 0 100%; /* 1 card per row on small screens */
    max-width: 100%;
  }
}
@media (width <= 325px) {
  /* Styles applied to screens 325px wide and narrower */
}

/* Scrollable sidebar */
/* Scrollable sidebar */
.sidebar-scroll {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 5px; /* avoid content overlap */
  background-color: #f8f9fa; /* light background for visibility */
  border-radius: 10px;
  position: relative;
}

/* Custom scrollbar - Webkit browsers (Chrome, Edge, Safari) */
.sidebar-scroll::-webkit-scrollbar {
  width: 12px;           /* thicker handle */
}

.sidebar-scroll::-webkit-scrollbar-track {
  background: #e0e0e0;   /* visible track background */
  border-radius: 10px;
  margin: 5px 0;         /* short scrollbar effect */
}

.sidebar-scroll::-webkit-scrollbar-thumb {
  background-color: #007bff; /* colored handle */
  border-radius: 10px;
  border: 3px solid #e0e0e0; /* separates thumb from track */
}

.sidebar-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #0056b3;
}

/* Optional: scroll arrow at bottom */
.sidebar-scroll::after {
  content: '↓';
  display: block;
  text-align: center;
  font-size: 1rem;
  color: #007bff;
  position: sticky;
  bottom: 0;
  background: linear-gradient(to top, #f8f9fa, transparent);
}

/* Scrollable dropdown */
.dropdown-scroll {
  max-height: 350px; /* adjust as needed */
  overflow-y: auto;
  padding: 0.25rem 0;
}

/* Optional scrollbar styling */
.dropdown-scroll::-webkit-scrollbar {
  width: 6px;
}

.dropdown-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dropdown-scroll::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 3px;
}

.dropdown-scroll::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}
.sidebar-scroll .list-group-item.active {
    background-color: #3c82be; /* Your theme color */
    color: #fff; /* Text color for contrast */
    border-color: #3c82be; /* Optional: match border with background */
}
 .privacy-card {
        
        
        padding: 40px;
        margin: 50px auto;
        max-width: 90%;
        margin-bottom: 0;
      }
      .privacy-card h2 {
        color: rgb(89, 161, 206);
        margin-bottom: 20px;
      }
      .privacy-card h5 {
        color: rgb(89, 161, 206);
        margin-bottom: 15px;
      }
      .privacy-card p,
      .privacy-card li {
        color: #555;
      }
      .privacy-card ul {
        padding-left: 20px;
      }
      .privacy-card a {
        color: rgb(89, 161, 206);
        text-decoration: none;
      }
      .privacy-card a:hover {
        text-decoration: underline;
      }
      .privacy-section-title {
        text-align: center;
        margin-bottom: 40px;
      }

@media (min-width: 768px) {
  .product-row {
    display: flex;
    flex-wrap: nowrap;  
    align-items: flex-start;
  }

  .product-row .sidebar {
    flex: 0 0 250px;   
    max-width: 250px;
  }

  .product-row .main-content {
    flex: 1 1 auto;    /* main content takes remaining space */
    
  }
}
.product-row .main-content {
  flex: 1 1 auto;
  margin-right: 60px;  /* optional default spacing */
}
/* Large screens 1400px and above */
@media (min-width: 1400px) {
  .product-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .product-row .sidebar {
    flex: 0 0 300px;   
    max-width: 400px;
  }

  .product-row .main-content {
    flex: 1 1 auto;   
    max-width: calc(100% - 300px);  
    
  }
}
/* @media (min-width: 992px) and (max-width: 1300px)  {

  .hero-home {
    min-height: 490px;
    
  }

} */

