

    :root{
      --accent: #293B15; /* lime */
      --dark: #0f2b33;
      --nav-dark: #17343b;
      --hero-img: url("/mnt/data/a2985c1b-ee92-4534-90df-4ae07bf6ec9a.jpg"); /* change if needed */
    }

    html,body{height:100%}
    body{
      font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      margin:0;
      color:#222;
      font-size:14px;
      background:#fff;
    }

/* top slim info bar */
.top-hero-section .topbar {
  background: var(--nav-dark);
  color: #cfe9d8;
  padding: 12px 18px;
}
.top-hero-section .topbar a {
  color: #cfe9d8;
  text-decoration: none;
}

/* main layout: left white panel + hero */
.top-hero-section .hero-wrap {
  position: relative;
  min-height: 88vh;
  display: flex;
  overflow: hidden;
}

/* left white column */
.top-hero-section .side-panel {
  width: 320px; /* desktop */
  min-width: 280px;
  background: #fff;
  border-right: 1px solid rgba(0,0,0,0.03);
  position: relative;
  z-index: 5;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
}

.top-hero-section .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #194246;
}
.top-hero-section .logo img {
  width: 90px;
}
.top-hero-section .logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: linear-gradient(135deg, #293B15, #293B15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #083;
  font-weight: 700;
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
}

/* framed preview image card overlapping between side-panel and hero */
.top-hero-section .preview-card {
  width: 280px;
  height: 430px;
  background: white;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
  border: 10px solid #f6f6f6;
  position: absolute;
  left: 80px;
  top: 210px;
  z-index: 12;
  display: block;
  overflow: hidden;
}
.top-hero-section .preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* hero (right) */
.top-hero-section .hero {
  flex: 1;
  background-size: cover;
  background-position: center;
  padding: 212px 80px 274px 60px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}

/* navigation inside hero */
.top-hero-section .main-nav {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 28px;
  align-items: center;
}
.top-hero-section .main-nav a {
  color: #d9f0d9;
  text-decoration: none;
  font-weight: 100;
  font-size: 16px;

}
.top-hero-section .main-nav a.active {
  color:#fff;
}

/* burger menu on right */
.top-hero-section .burger {
  position: absolute;
  right: 40px;
  top: 18px;
  z-index: 20;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.top-hero-section .hero-inner {
  max-width: 900px;
  margin-left: 80px;
}

.top-hero-section .hero h1 {
  font-size:68px;
  line-height: 0.95;
  font-weight: 600;
  margin: 0 0 18px 0;
  letter-spacing: -1px;
}
.top-hero-section .hero p.lead {
  max-width: 640px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

.top-hero-section .btn-accent {
  background: var(--accent);
  border: none;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 26px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.08);
}

/* big faint outline word bottom-right */
.top-hero-section .hero .big-outline {
  position: absolute;
  right: 40px;
  bottom: 10px;
  font-size: 160px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(191,229,75,0.35);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

/* lower dark strip with percentage circles */
.top-hero-section .stats-strip {
  position: relative;
  margin-top: -60px;
  background: #172e33;
  color: #fff;
  padding: 36px 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  z-index: 6;
  box-shadow: 0 -6px 0 rgba(0,0,0,0.06);
}
.top-hero-section .stat {
  width: 180px;
  text-align: center;
}
.top-hero-section .circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: conic-gradient(var(--accent) 0deg, var(--accent) 0deg, #1b4148 0deg);
  position: relative;
}
.top-hero-section .circle .val {
  position: absolute;
  color: #fff;
  font-weight: 700;
}
.top-hero-section .stat small {
  display: block;
  color: #c8e2c8;
  margin-top: 8px;
}

/* trusted by logos area (simple) */
.top-hero-section .trusted {
  background: #fff;
  padding: 28px 60px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}
.top-hero-section .trusted .title {
  color: #222;
  margin-right: auto;
  font-weight: 700;
}

/* responsive adjustments */
@media (max-width: 1100px) {
  .top-hero-section .side-panel {
    display: none;
  }
  .top-hero-section .preview-card {
    display: none;
  }
  .top-hero-section .hero {
    padding: 36px 24px;
  }
  .top-hero-section .main-nav {
    left: 24px;
    transform: none;
  }
  .top-hero-section .burger {
    right: 18px;
  }
  .top-hero-section .hero-inner {
    margin-left: 0;
    max-width: 680px;
  }
  .top-hero-section .hero .big-outline {
    display: none;
  }
  .top-hero-section .stats-strip {
    flex-wrap: wrap;
    gap: 30px;
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .top-hero-section .hero h1 {
    font-size: 34px;
  }
  .top-hero-section .circle {
    width: 90px;
    height: 90px;
  }
  .top-hero-section .stat {
    width: 130px;
  }
}


.top-hero-section .feature-icons-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  background: #f7f7f7;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.top-hero-section .feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.top-hero-section .feature-item h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  max-width: 180px;
}

.top-hero-section .icon-circle {
  width: 64px;
  height: 64px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-hero-section .icon-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(1%) saturate(1140%) hue-rotate(90deg) brightness(94%) contrast(90%);
}

/* Responsive */
@media (max-width: 768px) {
  .top-hero-section .feature-icons-section {
    gap: 40px;
  }

  .top-hero-section .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

.top-hero-section .icon-circle {
  width: 47px;
  height: 47px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-hero-section .icon-circle img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(1%) saturate(1140%) hue-rotate(90deg) brightness(94%) contrast(90%);
}

/* =======================================================
   ABOUT SECTION (scoped under .about-section-parent)
   ======================================================= */
.about-section-parent {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    color: #0b1c26;
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}

 /* Background “About Us” watermark text */
 .about-section-parent .about-bg-title {
    position: absolute;
    top: -63px;
    left: 0;
    font-size: 92px;
    font-weight: 700;
    color: rgba(170, 207, 109, 0.4);
    z-index: 0;
    user-select: none;
 }

 /* Text content */
 .about-section-parent .about-left {
     position: relative;
     z-index: 2;
 }

 .about-section-parent h2 {
     font-weight: 700;
     font-size: 43px;
     color: #0b1c26;
     line-height: 1.3;
 }

 .about-section-parent p {
     font-size: 15px;
     color: #6c757d;
 }

 /* Points list */
 .about-section-parent .about-points p {
     margin-bottom: 8px;
     font-size: 15px;
     color: #0b1c26;
     display: flex;
     align-items: center;
 }

 .about-section-parent .about-points i {
     color: #9ef01a;
    font-size: 16px;
    margin-right: 8px;
    transform: rotate(-40deg);
 }

 /* Button */
 .about-section-parent .about-btn {
     background-color: #9ef01a;
     color: #0b1c26;
     border-radius: 50px;
     padding: 10px 25px;
     font-weight: 500;
     text-decoration: none;
     transition: 0.3s;
     display: inline-flex;
     align-items: center;
     gap: 6px;
 }

 .about-section-parent .about-btn:hover {
     background-color: #7ec900;
     color: #fff;
 }

 /* Image area */
 .about-section-parent .about-right img {
     width: 100%;
     height: auto;
     border-radius: 10px;
     object-fit: cover;
 }

 /* Play button overlay */
 .about-section-parent .about-right .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 70px;
     height: 70px;
     background-color: #9ef01a;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .about-section-parent .about-right .play-btn:hover {
     background-color: #7ec900;
 }

 .about-section-parent .about-right .play-btn i {
     color: #0b1c26;
     font-size: 28px;
     margin-left: 4px;
 }


 /* ✅ Parent Section */
 .why-us-section {
     background-color: #fff;
     padding: 80px 0;
     position: relative;

 }

 /* ✅ Left Image & Overlay */
 .why-us-section .image-box {
     position: relative;
 }

 .why-us-section .image-box {
     width: 100%;
     border-radius: 0px;
     background-size: cover;
     height: 760px;
     background-repeat: no-repeat;
 }

 .why-us-section .overlay-card {
     position: absolute;
     bottom: 20px;
     left: 20px;
     background-color: #0c1322;
     color: #fff;
     padding: 25px 20px;
     max-width: 250px;
     border-radius: 4px;
 }

 .why-us-section .overlay-card h6 {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .why-us-section .overlay-card p {
     font-size: 13px;
     line-height: 1.6;
     color: #bfc7d0;
     margin-bottom: 10px;
 }

 .why-us-section .overlay-card a {
     font-size: 13px;
     color: #bdce55;
     text-decoration: none;
     font-weight: 500;
 }

 /* ✅ Right Side Content */
 .why-us-section .subtitle {
     font-size: 64px;
     font-weight: 800;
     color: rgba(170, 207, 109, 0.4);
     position: absolute;
     top: -44px;
     left: 0;
     z-index: 0;
 }

 .why-us-section .content {
     position: relative;
     z-index: 2;
 }

 .why-us-section .content h3 {
     font-size: 43px;
     font-weight: 700;
     color: #0c1322;
     margin-bottom: 20px;
 }

 .why-us-section .content p {
     color: #6c757d;
     font-size: 15px;
     line-height: 1.7;
     margin-bottom: 30px;
 }

 /* ✅ Feature Items */
 .why-us-section .feature-item {
     display: flex;
     align-items: flex-start;
     padding-bottom: 20px;
     margin-bottom: 20px;
     border-bottom: 1px solid #e9ecef;
 }

 .why-us-section .feature-item:last-child {
     border-bottom: none;
 }

 .why-us-section .feature-icon {
     background-color: rgba(189, 206, 85, 0.2);
     color: #bdce55;
     border-radius: 50%;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .why-us-section .feature-text h6 {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 5px;
     color: #0c1322;
 }

 .why-us-section .feature-text p {
     font-size: 14px;
     color: #6c757d;
     margin: 0;
 }

 /* ================================
   OUR SERVICE SECTION
================================= */
.our-service-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: visible; /* very important for sticky */
}

.our-service-section .sticky-wrapper {
  position: relative;
}

.our-service-section .sticky-content {
  position: sticky;
  top: 100px;
  padding-right: 30px;
}




/* ✅ Left side images (two stacked) */
.our-service-section .left-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our-service-section .left-images img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.our-service-section .hover-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.our-service-section .hover-box img {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

/* Dark Overlay */
.our-service-section .hover-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.65);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Text */
.our-service-section .hover-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
  z-index: 9;
}

.our-service-section .hover-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #c8ff3c; /* Same neon green as your example */
}

.our-service-section .hover-content p {
  font-size: 15px;
  max-width: 250px;
}

/* Hover Effects */
.our-service-section .hover-box:hover img {
  transform: scale(1.1);
}

.our-service-section .hover-box:hover::after {
  opacity: 1;
}

.our-service-section .hover-box:hover .hover-content {
  opacity: 1;
  transform: translateY(0);
}

.our-service-section .right-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.our-service-section .right-images img:hover {
  transform: scale(1.03);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .our-service-section .sticky-content {
    position: relative;
    top: auto;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.our-service-section {
     background: #ffffff;
     padding: 100px 0;
 }

 /* 🔹 Left side text */
 .our-service-section .sub-heading {
     font-size: 78px;
     font-weight: 700;
     color: rgb(144 193 63 / 40%);
      margin-bottom: -24px;
    margin-left: -4px;
 }

 .our-service-section .main-heading {
     font-size: 32px;
     font-weight: 700;
     color: #0f172a;
     
  line-height: 1.2;
     margin-bottom: 20px;
 }

 .our-service-section .description {
     color: #6b7280;
     line-height: 1.8;
     font-size: 15px;
     margin-bottom: 40px;
     max-width: 400px;
 }

 /* ✅ Important: Sticky wrapper fix */
 .our-service-section .sticky-wrapper {
     position: relative;
     height: 100%;
 }

 .our-service-section .sticky-content {
     position: sticky;
     top: 120px;
     /* adjust for navbar height */
 }

 /* 🔹 Image styles */
 .our-service-section .left-images,
 .our-service-section .right-images {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .our-service-section img {
     width: 100%;
     border-radius: 12px;
     transition: transform 0.3s ease;
 }

 .our-service-section img:hover {
     transform: scale(1.03);
 }

 /* Responsive */
 @media (max-width: 991px) {
     .our-service-section .sticky-content {
         position: static;
     }
 }


/* ================================
   PROCESS / STEPS SECTION
================================= */
.process-steps {
  background-color: #0c1322;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Highlighted faint background text */
.process-steps::before {
  content: "PROCESS";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: 800;
  color: rgba(189, 206, 85, 0.06);
  pointer-events: none;
  z-index: 0;
}

.process-steps .text-highlight {
  color: #293B15;
  letter-spacing: 1px;
}

/* Step boxes */
.process-steps .step-box {
  background-color: #121b2c;
  border-radius: 10px;
  padding: 40px 25px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  height: 100%;
}

.process-steps .step-box:hover {
  background-color: #19263b;
  transform: translateY(-5px);
}

/* Step number (big behind icon) */
.process-steps .step-number {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 70px;
  font-weight: 800;
  color: rgba(191, 229, 75, 0.08);
  pointer-events: none;
  z-index: 0;
}

/* Step icon */
.process-steps .step-icon {
  background-color: rgba(191, 229, 75, 0.15);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #293B15;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}

.process-steps h5 {
  color: #fff;
  font-weight: 600;
}

.process-steps p {
  color: #bfc7d0;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .process-steps::before {
    font-size: 70px;
    top: 30px;
  }
}

/* ================================
   PRICING SECTION
================================= */
.pricing-section {
  background-color: #fff;
  position: relative;
  padding: 100px 0;
}

.pricing-section .section-bg-text {
  font-size: 110px;
  font-weight: 800;
  color: rgba(191, 229, 75, 0.15);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.pricing-section h2 {
  color: #0c1322;
  position: relative;
  z-index: 1;
}

.pricing-section .price-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  background: #fff;
}

.pricing-section .price-card.premium {
  background-color: #0c1322;
  color: #fff;
  border-color: transparent;
}

.pricing-section .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-section .price-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-section .price-card .price-text {
  color: #293B15;
  font-weight: 700;
  font-size: 32px;
}

.pricing-section .price-card ul {
  padding: 0;
  list-style: none;
}

.pricing-section .price-card ul li {
  font-size: 15px;
  margin-bottom: 10px;
}

.pricing-section .btn-purchase {
  background-color: #293B15;
  color: #0c1322;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 30px;
  border: none;
  transition: all 0.3s ease;
}

.pricing-section .btn-purchase:hover {
  background-color: #a3ca3c;
  color: #000;
}

/* Premium card button */
.pricing-section .premium .btn-purchase {
  background-color: #293B15;
  color: #0c1322;
}

@media (max-width: 992px) {
  .pricing-section .section-bg-text {
    font-size: 70px;
    top: 0;
  }
}


  /* ------------------------------
       Parent Class: testimonial-section
    ------------------------------ */
  /* .testimonial-section {
      position: relative;
      background: url('https://images.unsplash.com/photo-1515169067865-5387ec356754?auto=format&fit=crop&w=1500&q=80')
        center/cover no-repeat;
      color: #fff;
      min-height: 100vh;
      display: flex;
      align-items: center;
    } */
    .testimonial-section {
    background-image: url(https://templatekit.jegtheme.com/packpals/wp-content/uploads/sites/297/2022/06/delivery-containers-for-takeaway-food-on-dark-wooden-table-e1656316814675.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
      padding: 85px 0;
      display: flex;
      align-items: center;
}

    .testimonial-section .overlay {
      background: rgba(0, 0, 0, 0.5);
      position: absolute;
      inset: 0;
    }

    .testimonial-section .content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .testimonial-section .testimonial-box {
      background-color: #082b3f;
      color: #fff;
      padding: 3rem;
      position: relative;
      height: 100%;
    }

    .testimonial-section .testimonial-text {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .testimonial-section .testimonial-stars i {
      color: #b9e937;
      font-size: 1.25rem;
      margin-right: 4px;
    }

    .testimonial-section .client-info {
      display: flex;
      align-items: center;
      margin-top: 2rem;
    }

    .testimonial-section .client-info img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 1rem;
    }

    .testimonial-section .client-info h5 {
      font-weight: 600;
      margin: 0;
    }

    .testimonial-section .client-info small {
      color: #c5c5c5;
    }

    .testimonial-section .quote-icon {
      font-size: 6rem;
      color: #b9e937;
      opacity: 0.3;
      position: absolute;
      bottom: 1rem;
      right: 2rem;
      line-height: 1;
    }

    .testimonial-section .heading {
      position: relative;
      padding-left: 2rem;
    }

    .testimonial-section .heading h2 {
      font-size: 65px;
      font-weight: 700;
      color: transparent;
      -webkit-text-stroke: 1px #b9e937;
      opacity: 0.3;
      position: absolute;
      top: -64px;
      left: 23px;
      z-index: 0;
    }

    .testimonial-section .heading h1 {
      font-weight: 700;
      color: #fff;
      position: relative;
      z-index: 1;
      font-size: 45px;
    }

    .testimonial-section .heading h1 span {
      color: #b9e937;
    }

    .testimonial-section .heading p {
      font-size: 1.1rem;
      margin-top: 1.5rem;
      max-width: 90%;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 991px) {

  .testimonial-section {
    flex-direction: column;
    min-height: auto;
  }

  .testimonial-section .testimonial-box {
    margin-bottom: 2rem;
  }

  .testimonial-section .heading {
    padding-left: 0;
    text-align: center;
  }

  .testimonial-section .heading h2 {
    font-size: 32px;   /* reduced size */
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 10px;
    opacity: 0.4;
  }

  .testimonial-section .heading h1 {
    font-size: 32px;
  }

  .testimonial-section .heading p {
    max-width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 576px) {

  .testimonial-section .heading h2 {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      opacity: 0.5;
  }

}

 /* ======= News Section ======= */
      .news-section {
        padding: 80px 0;
      }

      .news-section h2 {
        font-size: 60px;
        font-weight: 700;
        color: #111827;
        position: relative;
        z-index: 2;
      }

    .news-section .bg-text {
    font-size: 54px;
    font-weight: 700;
    color: #d7f46a;
    position: absolute;
    top: -28px;
    left: 4px;
    z-index: 1;
    opacity: 0.5;
}

      .news-section .news-item {
        margin-bottom: 30px;
      }

      .news-section .news-item img {
        width: 100%;
        border-radius: 6px;
        height: 300px;
      }

      .news-section .news-badge {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background-color: #0b253a;
        color: #d7f46a;
        padding: 4px 12px;
        border-radius: 3px;
        font-weight: 600;
      }

      .news-section .news-meta {
        font-size: 15px;
        color: #555;
        margin-bottom: 15px;
      }

      .news-section .news-meta i {
        margin-right: 6px;
      }

      .news-section h4 {
        font-weight: 700;
        color: #111827;
      }

      .news-section p {
        color: #555;
        margin-top: 8px;
      }

      .news-section .news-left a {
        text-decoration: none;
        color: #111827;
        display: block;
        font-weight: 700;
        transition: 0.3s;
      }

      .news-section .news-left a:hover {
        color: #0b253a;
      }

      @media (max-width: 992px) {
        .news-section h2 {
          font-size: 45px;
        }
        .news-section .bg-text {
          font-size: 55px;
        }
      }


 .footer {
     background-color: #0b1c26;
     padding: 60px 0 30px;
     color: #fff;
 }

 .footer .footer-logo h4 {
     color: #9ef01a;
     font-weight: 700;
 }

 .footer p {
     font-size: 14px;
     color: #b0b8c1;
 }

 .footer a {
     color: #b0b8c1;
     text-decoration: none;
     display: block;
     margin-bottom: 6px;
     font-size: 14px;
     transition: all 0.3s;
 }

 .footer a:hover {
     color: #9ef01a;
 }

 .footer .social-icons a {
     display: inline-block;
     margin-right: 10px;
     font-size: 18px;
     color: #b0b8c1;
     transition: color 0.3s;
 }

 .footer .social-icons a:hover {
     color: #9ef01a;
 }

 .footer .contact-info i {
     color: #9ef01a;
     margin-right: 10px;
 }

 .footer .newsletter input {
     background: transparent;
     border: none;
     border-bottom: 1px solid #9ef01a;
     color: #fff;
     width: 100%;
     padding: 8px 0;
     outline: none;
     font-size: 14px;
 }

 .footer .newsletter button {
     background-color: #9ef01a;
     border: none;
     border-radius: 50%;
     color: #0b1c26;
     width: 35px;
     height: 35px;
     position: absolute;
     right: 0;
     top: 0;
 }

 .footer-bottom {
     border-top: 1px solid #1d2c35;
     padding-top: 20px;
     margin-top: 40px;
     font-size: 13px;
     color: #b0b8c1;
 }

  /* 🟩 Parent Scoped Styles */
    .main-header {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .main-header .navbar {
      padding: 22px 0px;
    }

    .main-header .navbar-brand {
      font-weight: 700;
      font-size: 1.4rem;
      color: #000;
    }

    .main-header .nav-link {
      color: #333;
      font-weight: 500;
      margin: 0 8px;
      transition: all 0.3s ease;
    }

    .main-header .nav-link:hover,
    .main-header .nav-link.active {
      color: #9ef01a;
    }

    .main-header .navbar-toggler {
      border: none;
      font-size: 1.3rem;
      color: #9ef01a;
    }

    .main-header .navbar-toggler:focus {
      box-shadow: none;
    }

  /* ==========================================
         PRODUCT DETAIL
      ========================================== */
       /*  Parent Scoped Styles */

   
    /*  Breadcrumb section */
    .product-detail-section .breadcrumb-nav {
      font-size: 15px;
      margin-bottom: 25px;
    }

    .product-detail-section .breadcrumb-nav a {
      color: #9ef01a;
      text-decoration: none;
      transition: color 0.3s;
      font-size: 14px;
    }

    .product-detail-section .breadcrumb-nav a:hover {
      text-decoration: underline;
    }
    .product-detail-section .breadcrumb-nav span {
      font-size: 14px;
    }

    .product-detail-section .breadcrumb-nav i {
      margin: 0 8px;
      color: #888;
    }
       
    .product-gallery {
      max-width: 600px;
    }

    .product-gallery .main-image img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }

    .product-gallery .thumb-slider {
      margin-top: 15px;
    }

    .product-gallery .thumb-slider img {
      border: 2px solid transparent;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .product-gallery .thumb-slider img:hover {
      border-color: #9ef01a;
    }

    .product-gallery .thumb-slider .slick-current img {
      border-color: #9ef01a;
    }

    .product-gallery .slick-prev:before,
    .product-gallery .slick-next:before {
      color: #9ef01a;
      font-size: 24px;
    }

    .product-gallery .slick-slide {
      padding: 4px;
    }

      .product-detail-section {
        padding: 60px 0;
      }

      .product-detail-section .product-gallery img {
        border-radius: 6px;
        object-fit: cover;
      }

      .product-detail-section .product-thumbs img {
        cursor: pointer;
        border: 2px solid transparent;
        border-radius: 6px;
        transition: all 0.3s ease;
      }

      .product-detail-section .product-thumbs img.active,
      .product-detail-section .product-thumbs img:hover {
        border-color: #0b5345;
      }

      .product-detail-section .product-tags .badge {
          background: #e9ecef;
          color: #0b5345;
          font-weight: 600;
          margin-right: 6px;
          font-size: 11px;
          padding: 9px;
      }

      .product-detail-section .product-form label {
        font-weight: 500;
      }

      .product-detail-section .btn-submit {
        background-color: #9ef01a;
        color: #000;
        border: none;
        transition: 0.3s;
      }

      .product-detail-section .btn-submit:hover {
        background-color: #9ef01a;
      }

      /* -------------------- GLOBAL -------------------- */
.product-list .page-wrapper {
    font-family: "Inter", sans-serif;
    background: #fff;
}

.product-list .hero-section {
    background: url("assets/img/perfume_pacakging.jpeg") no-repeat center/cover;
    padding: 100px 0;
    color: #fff;
}
.product-list .sidebar-link {
    color: #000;
    text-decoration: none;
    padding: 3px 0;
    display: block;
}

.pagination-custom .page-item {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.2s;
}

.pagination-custom .page-item:hover {
    background: #000;
    color: #fff;
}

.pagination-custom .page-item.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.product-list .sidebar-link:hover {
    text-decoration: underline;
}
.product-list .hero-title {
    font-size: 42px;
    font-weight: 600;
}

.product-list .hero-btn {
    background: #000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    margin-top: 15px;
}

/* -------------------- SIDEBAR -------------------- */
.product-list .sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-list .sidebar-block {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.product-list .sidebar-btn {
    border: none;
    background: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px 0;
}

/* -------------------- PRODUCT GRID -------------------- */
.product-list .product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 6px;
}

.product-list .product-title {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

/* -------------------- SERVICE HIGHLIGHTS -------------------- */
.product-list .service-icon img {
    width: 35px;
    height: 35px;
}

.product-list .service-item {
    text-align: center;
    padding: 20px 10px;
}

.product-list .service-item p {
    margin-top: 8px;
    font-weight: 500;
}
.product-list .service-icon span {
    border: 1px solid #000;
    display: inline-block;
    padding: 8px;
    border-radius: 62px;
}
/* -------------------- PROCESS OPTIONS -------------------- */
.product-list .process-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

.product-list .process-title {
    font-size: 18px;
    font-weight: 600;
}

.product-list .process-desc {
    font-size: 14px;
    margin-top: 6px;
}

/* -------------------- CUSTOMIZE PACKAGING -------------------- */
.product-list .customize-box {
    background: #f4f7f3;
    padding: 80px;
    border-radius: 10px;
}

.product-list .customize-img {
    width: 100%;
    border-radius: 10px;
}

.packaging-section {

  /* Header */
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .titles .eyebrow {
    color: #666;
    font-size: 14px;
  }

  .titles h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
  }

  /* Arrow buttons */
  .carousel-controls {
    display: flex;
    gap: 10px;
  }

  .control-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
  }

  /* Rows */
  .slider-row {
    display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;       /* ❤️ Stops unwanted overflow */
  overflow: hidden; 
  }

  /* Featured Static */
  .featured-static {
    width: 420px;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .featured-static .card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
  }

  .featured-static .view-all {
    
    text-align: center;
  }

  .featured-static .btn-dark {
    padding: 0.55rem 1.3rem;
    border-radius: 0px;
    width: 100%;
  }

  /* Slider Card */
  .carousel .slide {
    width: 300px !important;
    padding: 0 12px;
  }

  .carousel .card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
  }
  .card {
    border: none;
  }
  .caption {
    padding: 13px 13px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hide default slick arrows */
  .slick-arrow {
    display: none !important;
  }
}

.insertby-section {

  /* Header */
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .titles .eyebrow {
    color: #666;
    font-size: 14px;
  }

  .titles h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
  }

  /* Arrow buttons */
  .carousel-controls {
    display: flex;
    gap: 10px;
  }

  .control-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
  }

  /* Rows */
  .slider-row {
    display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;       /* ❤️ Stops unwanted overflow */
  overflow: hidden; 
  }

  /* Featured Static */
  .featured-static {
    width: 420px;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .featured-static .card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
  }

  .featured-static .view-all {
    
    text-align: center;
  }

  .featured-static .btn-dark {
    padding: 0.55rem 1.3rem;
    border-radius: 0px;
    width: 100%;
  }

  /* Slider Card */
  .insertby-carousel .slide {
    width: 300px !important;
    padding: 0 12px;
  }

  .insertby-carousel .card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
  }
  .card {
    border: none;
  }
  .caption {
    padding: 13px 13px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hide default slick arrows */
  .slick-arrow {
    display: none !important;
  }
}





