/* @import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
} */
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}



/* get in touch section */
.cta-section {
  padding: 80px 0;
  background: #ffffff;
}

.cta-box {
  background: #f6f6f6;
  border-radius: 28px;
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  color: #262222;
  margin-bottom: 26px;
}

.cta-box p {
 font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  color: #262222;
}

/* Button */
.cta-btn {

  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
}


.cta-btn:hover {
  background: #9c3d12;
  color: #fff;
}

/* our clients section */
.clients-section {
  background: #ffffff;
}

.clients-title {
   font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;

  color: #262222;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  overflow: hidden;
  /* border: 1px solid #eee; */
}

/* LOGO CELL */
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  min-width: 0;
}

.client-logo img {
  width: 100%;
  max-width: 188px;
  max-height: 88px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: block;
}

/* animation */
@keyframes flicker {
  0%, 92%, 100% {
    opacity: 0.7;
  }
  94%, 96% {
    opacity: 1;
  }
}

.client-logo:nth-child(3n) img {
  animation: flicker 3s infinite;
}

.client-logo:nth-child(4n) img {
  animation: flicker 5.5s infinite;
}

.client-logo:nth-child(5n) img {
  animation: flicker 7s infinite;
}

/* DESKTOP: 4 columns */
.client-logo:nth-child(4n) {
  border-right: none;
}

.client-logo:nth-last-child(-n + 4) {
  border-bottom: none;
}

/* TABLET: 2 columns */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .client-logo:nth-child(4n) {
    border-right: 1px solid #eee;
  }

  .client-logo:nth-last-child(-n + 4) {
    border-bottom: 1px solid #eee;
  }

  .client-logo:nth-child(2n) {
    border-right: none;
  }

  .client-logo:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* MOBILE: 1 column */
@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    border-right: none !important;
    border-bottom: 1px solid #eee;
  }

  .client-logo:nth-last-child(-n + 2) {
    border-bottom: 1px solid #eee;
  }

  .client-logo:last-child {
    border-bottom: none;
  }
}

/* end of our clients section */

/* horizonal scroll anialtion */
.features-strip {
  background: #ffffff;
  overflow: hidden;
}

/* Marquee wrapper */
.features-marquee {
  width: 100%;
  overflow: hidden;
}

/* Moving track */
.features-track {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

/* Feature item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
   font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: #000000;
  white-space: nowrap;
}

/* Icon */
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2F2F2;

  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0px 0px 44px 0px #6F6F6F0D;

}
.feature-icon img{
  width: 39px;
  height: 39px;
  /* border-radius: 50%; */

  display: flex;
  align-items: center;
  justify-content: center;
  color: #f36c21;
  font-size: 14px;
  font-weight: 600;
}

/* Animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* end of horizonal scroll anialtion */


/* why verpack section */
/* SECTION */
.why-verpack-section {
  background: #ffffff;
}

/* TITLE */
.why-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  color: #262222;
}

/* TEXT */
.why-text {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 32px;
  color: #262222;
  margin-bottom: 40px;
}

/* IMAGE BOX */
.img-box.fullwidth {
  width: 100%;
  height: 100%;              /* key */
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE */
.img-box.fullwidth img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* STATS */
.why-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  margin: 0;
}

.stat-item p {
  font-family: 'Lora', serif;
  margin: 0;
  font-size: 14px;
}

/* DIVIDER */
.stat-divider {
  width: 1px;
  height: 48px;
  background: #ddd;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .img-box.fullwidth {
    height: auto;
  }

  .img-box.fullwidth img {
    height: auto;
  }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .why-title {
    font-size: 30px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .image-collage {
    flex-direction: column;
  }

  .img-box.large,
  .img-box.small {
    height: auto;
  }

  .img-box img {
    height: auto;
  }
}





/* end of why verpack section */

/* kitchen-delivery section  */
.kitchen-delivery-section {
  background: #ffffff;
  margin-top: 100px;
}
@media (max-width: 576px) {
  .kitchen-delivery-section {
    margin-top: 50px;
  }
}

/* Headline */
.kitchen-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  color: #222;
}

/* Paragraph */
.kitchen-text {
  font-family: 'Lora', serif;
  font-weight: 400; 
  font-size: 18px;
  line-height: 32px;
  color: #353535;
  margin-bottom: 24px;
}

/* Button */
.kitchen-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  /* margin-top: 25px; */
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
}

.kitchen-btn:hover {
  background: #9c3d12;
  color: #fff;
}

/* Image */
.kitchen-image-wrapper {
  margin-top: 20px;
}

.kitchen-image-wrapper img {
  width: 100%;
  border-radius: 28px;
  display: block;
}
/* end of kitchen-delivery section  */

/* speed-section */
.speed-section {
  background: #ffffff;
}

/* Title */
.speed-title {
   font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  color: #2E2E2E;
}

/* Text */
.speed-text {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 32px;
  color: #353535;
  /* max-width: 520px; */
}

/* Feature */
.speed-feature {
  margin-top: 20px;
}

/* Icon circle */
.speed-icon {
  width: 125px;
  height: 125px;
  background: #f4f4f4;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speed-icon img {
  width: 75px;
  height: 75px;
}

/* Feature text */
.speed-feature p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: #262222;
  
}
@media (max-width: 768px) {
  /* .speed-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .speed-text {
    font-size: 15px;
    max-width: 100%;
  } */

  .speed-icon {
    width: 90px;
    height: 90px;
  }

  .speed-icon img {
    width: 36px;
    height: 36px;
  }
}

/* end of speed-section */


/* random section */
.vision-mission-section {
  background: #ffffff;
}

/* Section title */
.section-title {
 font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  color: #2E2E2E;
}

/* Image */
.vision-image img {
  width: 100%;
   border-top-left-radius: 36px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  display: block;
  max-width: 455px;
}

/* Cards */
.info-card {
  background: #f7f4ef;
  border-radius: 22px;
  padding: 32px;
}

.info-card h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;      /* Regular */
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 15px;
}

.info-card p {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  color: #353535;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .info-card {
    padding: 24px;
  }

  .info-card h4 {
    font-size: 20px;
  }
}
/* end of random section */

/* team section */
.team-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
}

/* Image container */
.team-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* Image */
.team-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Social icon */
.social-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  color: #0a66c2; /* LinkedIn blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Hover effects */
.team-card:hover .team-overlay {
  opacity: .9;
}

.team-card:hover img {
  transform: scale(1.05);
}
.team-section h2 {
  font-family: 'Manrope', sans-serif;
font-weight: 600;
font-size: 40px;
line-height: 58px;
letter-spacing: 0%;

  margin-bottom: 32px;
}
.team-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}
.team-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.team-info .social-icon {
  width: 34px;
  height: 34px;
  font-size: 16px;
  background: #ffffff;
  color: #0a66c2;
}

/* Show info on hover */
.team-card:hover .team-info {
  opacity: 1;
  transform: translateY(0);
}

/* end of team section */






.verpack-footer {
  background: linear-gradient(182.44deg, rgba(243, 232, 216, 0.8) -111.63%, rgba(76, 34, 2, 0.8) 118.19%);
  font-size: 15px;
}
.footer-tagline {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-info{
   color: #fff;
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 400; 
line-height: 24px;
}
.footer-info i {
   font-family: 'Lora', serif;
  font-size: 14px;
  margin-right: 12px;
  margin-top: 3px;
}
.footer-info img {
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
  align-items: center;
  align-self: center;
}

.footer-title {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 18px;
   color: #fff;
   font-family: 'Lora', serif;
  font-size: 14px;
font-style: normal;
line-height: 24px;
}

.footer-links li {
  margin-bottom: 8px;
 font-family: 'Lora', serif;
  font-size: 14px;
font-style: normal;
}

.footer-links a {
   font-family: 'Lora', serif;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-icons a {
  display: inline-flex;
  justify-content: left;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #8a6a52;
  margin-left: 0px;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  background: #f1f1f1;
}

.footer-divider {
  border-color: rgba(255,255,255,0.3);
}
/* ================= FOOTER – SMALL DEVICES ================= */
@media (max-width: 768px) {

  .verpack-footer {
    padding: 24px 16px;
    font-size: 14px;
    text-align: center;
  }

  .footer-tagline {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .footer-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

 .footer-info {
    font-size: 13px;
    line-height: 22px;
    text-align: center;
  }

  .footer-info li {
    justify-content: center;   /* center icon + text horizontally */
    align-items: center;       /* center vertically */
    text-align: center;
  }

  .footer-info li {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .footer-info i,
  .footer-info img {
    margin-right: 10px;
    margin-top: 4px;
  }

  .footer-links li,
  .footer-links a {
    font-size: 13px;
  }

  .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
     justify-content: center
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 16px;
    margin-right: 0;
    justify-content: center;
  }

  .footer-divider {
    margin: 20px 0;
  }

}


/* modal section*/

/* ================= MODAL OVERLAY ================= */
.catalogue-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
justify-content: unset;
  align-items: unset;
  padding-top: 120px;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

/* ================= WRAPPER ================= */
.catalogue-wrapper {
  width: 700px;
  max-width: 92%;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  padding-bottom: 20px;
  /* overflow-y: auto; */
}

/* ================= HEADING (TRANSPARENT) ================= */
.catalogue-heading {
  margin-bottom: 120px; /* space for scaled image */
  position: relative;
  z-index: 3;
}
@media (max-width: 1180px) {
  .catalogue-heading {
  margin-bottom: 80px; /* space for scaled image */
  
}
.catalogue-modal{
  padding-top: 70px;
}
 
}

.catalogue-heading h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: #ffffff;
  margin-bottom: 20px;
}

.catalogue-heading p {
   font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #ffffff;
}

/* ================= CLOSE BUTTON ================= */
.modal-close {
  position: absolute;
  top: 90px;
  right: 0;
  transform: translateY(-70px);
  background: none;
  border: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  z-index: 4;
}

/* ================= FORM CARD ================= */
.catalogue-card {
  position: relative;
  background: #fbf7f1;
  border-radius: 28px;
  padding: 150px 34px 42px; /* top padding for scaled image */
  z-index: 2;
  max-width: 480px;
  align-items: center;
  margin: 0 auto;
}

/* ================= OVERLAPPING IMAGE ================= */
.catalogue-book {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%) scale(.9); /* 1.5x image */
  transform-origin: center;
  z-index: 1;
}

.catalogue-book img {
  display: block;
  border-radius: 6px;
}

/* ================= FORM INPUTS ================= */
.catalogue-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  font-size: 14px;
  outline: none;
}
.catalogue-form input::placeholder {
   font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #ADAEBC  ;        /* important for Firefox */
}

/* ================= BUTTON ================= */
.download-btn {
   font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    box-shadow: 0px 4px 4px 0px #00000014;
}
.catalogue-form .download-btn1 {
   font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  margin-top: 25px;
  border: #ffffff;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    box-shadow: 0px 4px 4px 0px #00000014;
}

.download-btn1:hover {
  background: #9c3d12;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .catalogue-heading {
    margin-bottom: 140px;
  }

  .catalogue-book {
    transform: translateX(-50%) scale(1.2);
    top: -110px;
  }

  .catalogue-card {
    padding: 170px 24px 36px;
  }
}
@media (max-width: 576px) {

  /* MODAL OVERLAY */
  .catalogue-modal {
    padding-top: 70px;
    align-items: flex-start;
    scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  }
  .catalogue-modal::-webkit-scrollbar {
  display: none;              /* Chrome, Safari */
}

  /* WRAPPER */
  .catalogue-wrapper {
    width: 100%;
    max-width: 94%;
  }

  /* HEADING */
  .catalogue-heading {
    margin-bottom: 80px;
  }

  .catalogue-heading h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .catalogue-heading p {
    font-size: 15px;
    line-height: 22px;
  }

  /* CLOSE BUTTON */
  .modal-close {
    transform: translateY(-45px);
    font-size: 20px;
    top: 70px;
  }

  /* FORM CARD */
  .catalogue-card {
    padding: 150px 24px 36px;
    border-radius: 22px;
  }

  /* OVERLAPPING IMAGE */
  .catalogue-book {
  display: none;
  }

  .catalogue-book img {
    max-width: 200px;
    height: auto;
  }

  /* INPUTS */
  .catalogue-form input {
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 14px;
  }

  /* BUTTONS */
  .download-btn,
  .catalogue-form .download-btn1 {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 18px;
    box-shadow: 0px 4px 4px 0px #00000014;
  }
}


/* navbar section */


/* ================= NAVBAR ================= */
.navbar-custom{
    position:fixed;
    top:42px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 220px);
    padding:12px 40px;
    border-radius:999px;
    background: linear-gradient(180deg, rgba(198, 165, 119, 0.12) 0%, rgba(198, 165, 119, 0.4) 100%);
    backdrop-filter:blur(100px);
    border:1px solid rgba(255,255,255,.35);
    transition:.4s ease;
    z-index:1000;
}
@media (max-width: 768px) {
  .navbar-custom {
    box-sizing: border-box;
    position: fixed;
    top: 12px;
    left: 8px;
    width: calc(100% - 80px);
    padding: 6px 16px;
    border-radius: 24px;
    transform: none;
  }
}

.navbar-custom.scrolled{
    background: linear-gradient(180deg, rgba(198, 165, 119, 0.12) 0%, rgba(198, 165, 119, 0.4) 100%);
    backdrop-filter:blur(100px);
    border:none;
}

.navbar-brand img{
    height:56px;
}

/* ================= LINKS ================= */
.nav-link {
    color:#262222!important;
    font-weight:500;
    position:relative;
     font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .nav-link {
    color:#000!important;
      font-size: 16px;
  }
  .nav-link:hover{
    transform: scale(.95) !important;
  }
 
}

.nav-link:hover{
    transform:scale(1.1);
}

.nav-link.active::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:100%;
    height:2px;
    background:#262222;
}

.navbar-custom.scrolled .nav-link{
    color:#262222!important;
}

.navbar-custom.scrolled .nav-link.active::after{
    background:#333;
}

/* ================= DESKTOP MEGA MENU ================= */
@media (min-width:992px){

    /* IMPORTANT FIX */
    .nav-item.product{
        position:static;
    }

    .mega-menu{
        position:absolute;
        top:calc(100% + 18px);
        left:50%;
        transform: translateX(-50%) translateY(-10px);
           /* 🔥 CRITICAL FIX */
        width: 90vw;              /* viewport width */
        max-width: 1400px;        /* optional cap */
        min-width: 1100px;  

         background: linear-gradient(116.79deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.86) 99.45%),
linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(100px);
        backdrop-filter: blur(100px);
        border-radius:28px;
        padding:28px 40px;

        opacity:0;
        visibility:hidden;
        transition:.35s ease;
        box-shadow:0 30px 60px rgba(0,0,0,.25);
        z-index:999;
    }

    .nav-item.product:hover .mega-menu{
        opacity:1;
        visibility:visible;
        transform:translate(-50%,0);
    }

    .mega-item{
    display: block;          /* IMPORTANT */
  width: 100%;
  padding: 16px 10px;
  border-radius: 12px;
  text-align: center;
  transition: 0.2s ease;
    }

    .mega-item i{
       display: block;
  padding: 16px 10px;
  border-radius: 12px;
  background: #fff;
  transition: all 0.25s ease;
  height: 100%;
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
    }
    .category-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 10px;
}
.category-title {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
}

/* mega-item:hover img { */
  /* filter: invert(24%) sepia(87%) saturate(2285%) hue-rotate(3deg) brightness(93%) contrast(97%); */
    /* filter: brightness(0) saturate(100%) invert(24%) sepia(87%) saturate(2285%) hue-rotate(3deg) brightness(93%) contrast(97%); */
/* } */

    .mega-item:hover img{
        /* transform: translateY(-4px); */
  filter: brightness(0) saturate(100%) invert(24%) sepia(87%) saturate(2285%) hue-rotate(3deg) brightness(93%) contrast(97%);
    }
}

@media (min-width: 992px) {

    .mega-menu .mega-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .mega-menu .mega-item {
        flex: 1 1 0;
        text-align: center;
        min-width: 120px;
    }
}

/* ================= MOBILE ================= */
@media (max-width:991px){
    .navbar-custom{
        width:calc(100% - 24px);
        padding:12px 20px;
    }
    .mega-menu{
        display:none!important;
    }
}

.offcanvas{
    background:linear-gradient(180deg,#f3ede4,#e8dcc8);
}


/* lagacy section */

/* SECTION */
.legacy-section {
 width: 100%;
  margin: auto;
  padding: 80px 120px 60px;
  
  color: #fff;
background-color: #80624a; /* base color */
  background-image: url("../assets/timelinebackground.png");
  background-repeat: no-repeat;
  background-position:  left;
  background-size: contain;
  background-size: 50%;

  
}

/* SLIDER */
.legacy-slider {
  overflow: hidden;
  position: relative;
}

.legacy-track {
  display: flex;
  will-change: transform;
}

.legacy-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* CONTENT */
.legacy-content {
  flex: 1;
  max-width: 520px;
}

.legacy-content h2 {
   font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 40px;
  line-height: 58px;
  letter-spacing: 0;

  margin-bottom: 12px;
}

.legacy-content p {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  color: #ffffff;
}

/* IMAGE */
.legacy-image {
  flex: 1;
  
}

.legacy-image img {
  width: 100%;
  /* max-width: 700px; */
  border-radius: 16px;
}

/* TIMELINE */
.legacy-timeline {
  display: flex;
  
  gap: 32px;
  margin-top: 56px;
  overflow-x: auto;
  padding-bottom: 12px;
  width: 100%;              /* ✅ force full width */
  box-sizing: border-box;   /* ✅ gap included */
  overflow-x: auto;
  scroll-behavior: smooth;
  
}


.legacy-timeline::-webkit-scrollbar {
  display: none;
}

.year {
  display: flex;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  /* 🔒 LOCK HEIGHT FOR ALL YEARS */
  height: 58px;               /* same as active line-height */
  padding-bottom: 6px;

  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  cursor: pointer;

  opacity: 0.6;
  white-space: nowrap;
  /* margin-left: 20px;
  margin-right: 20px; */
  margin-inline: clamp(16px, 4vw, 34px);
flex: 0 0 auto;   
  transition: 
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* ACTIVE YEAR — VISUAL SCALE ONLY */
.year.active {
  opacity: 1;

  /* ❌ DO NOT change font-size / line-height */
  /* ✅ SCALE instead */
  transform: scale(1.35);
}

/* LOADER */
.year-loader {
  position: absolute;
  bottom: 0;

  height: 2px;
  width: 150%;

  left: 50%;
  transform: translateX(-50%);

  background: rgba(255,255,255,0.3);
  overflow: hidden;
}

.year-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
}
.legacy-icon {
    width: 56px;
    height: 56px;
    margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {

  .legacy-slide {
    flex-direction: column;
    gap: 24px;
  }

  .legacy-content h2 {
    font-size: 22px;
  }

  .legacy-content p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {

  /* SECTION SPACING */
  .legacy-section {
    padding: 48px 24px 40px;
  }

  /* SLIDE LAYOUT */
  .legacy-slide {
    flex-direction: column;
    gap: 20px;
  }

  /* CONTENT */
  .legacy-content {
    max-width: 100%;
  }

  .legacy-content h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 8px;
  }

  .legacy-content p {
    font-size: 14px;
    line-height: 24px;
  }

  /* IMAGE */
  .legacy-image img {
    border-radius: 14px;
  }

  /* TIMELINE */
  .legacy-timeline {
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 10px;
  }

  /* YEAR TEXT */
  .year {
    height: 40px;              /* smaller locked height */
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 6px;
    margin-left: 12px;
    margin-right: 12px;
  }

  /* ACTIVE YEAR (SCALED, NOT RESIZED) */
  .year.active {
    transform: scale(1.25);
  }

  /* LOADER */
  .year-loader {
    height: 2px;
    width: 120%;               /* slightly smaller on mobile */
  }

  /* ICON */
  .legacy-icon {
    width: 56px;
    height: 56px;
  }
}


.catalogue-form input::placeholder {
   font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #ADAEBC  ;        /* important for Firefox */
}

@media (max-width: 576px) {
  .footer-info li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* THIS IS THE KEY FIX */
  .footer-info li span {
    display: block;        /* make it block */
    width: 100%;           /* take full width */
    text-align: center;    /* now center works */
  }

  /* for email & phone text (not wrapped in span) */
  .footer-info li {
    text-align: center;
  }
}


/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.team-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  
}

/* Image */
.team-card img {
  width: 100%;
  display: block;
}

/* Glow border on hover */
.team-card:hover {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      37.12deg,
      #AF3C0E 0%,
      #FED866 103.5%
    ) border-box;

  box-shadow: -4px 4px 12px 4px #FFE0E099;
}

/* Hover overlay */
.team-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.05)
  );
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Show overlay on hover */
.team-card:hover .team-hover {
  opacity: 1;
}

/* Text */
.team-text h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.team-text p {
  color: #e0e0e0;
  font-size: 14px;
  margin-top: 4px;
}

/* LinkedIn icon */
.linkedin {
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: #0a66c2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.linkedin:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


#categoryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (min-width: 576px) {
  #categoryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  #categoryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  #categoryGrid {
    grid-template-columns: repeat(6, 1fr);
  }
}



.product-toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* When Bootstrap collapse is open */
button[aria-expanded="true"] .product-toggle-icon {
    transform: rotate(180deg);
}

/* When closed */
button[aria-expanded="false"] .product-toggle-icon {
    transform: rotate(0deg);
}

#mobileProduct.collapsing {
    transition: height 0.35s ease;
}