
.features-bar {
  background-color: #ffffff;
}

.feature-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;  
  font-size: 24px;
  color: #2E2E2E;
}

.feature-item i {
  font-size: 20px;
  margin-right: 10px;
  color: #666;
}
/* ================= FEATURES BAR – SMALL DEVICES ================= */
@media (max-width: 768px) {

  .features-bar {
    padding: 16px 12px;
  }

  .feature-item {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .feature-item i {
    font-size: 16px;
    margin-right: 6px;
  }

}

/* start of catalog section css */

.catalogue-section {
  background-color: #ffffff;
}

.catalogue-image img {
  width: 100%;
 /* max-height: 400px; */
  border-radius: 30px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* Content Card */
.catalogue-content {
  background-color: #FBF8F3;
  padding: 60px 100px 60px 220px;
  border-top-left-radius: 16px;
border-top-right-radius: 16px;
border-bottom-right-radius: 16px;
border-bottom-left-radius: 0px;
  margin-left: -120px;
  position: relative;
  z-index: 1;
}

.catalogue-content h2 {
   font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-align: center;
}

.catalogue-content p {
  font-family: 'Lora', serif;
  font-weight: 400;  
  font-size: 18px;
  line-height: 28px;
  color: #444;
  max-width: 420px;
  margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.catalogue-btn {
   font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    box-shadow: 0px 4px 4px 0px #00000014;
}

.catalogue-btn:hover {
  background-color: #9c3e13;
  color: #fff;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .catalogue-content {
  background-color: #FBF8F3;
  padding: 80px;
  border-top-left-radius: 16px;
border-top-right-radius: 16px;
border-bottom-right-radius: 16px;
border-bottom-left-radius: 0px;
  margin-left: -120px;
  position: relative;
  z-index: 1;
}
  .catalogue-content {
    margin-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .catalogue-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* End of catalog section css */
/* auto scrolling logos Section CSS */
.logo-carousel {
  background: #ffffff;
  padding-top: 56px;
  padding-bottom: 56px;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 180px;          /* same width for all */
  height: 100px;         /* same height for all */
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.logo-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: 0.3s;
}

.logo-item img:hover {
  opacity: 1;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-item {
    width: 120px;
    height: 70px;
    padding: 8px 12px;
  }

  .logo-item img {
    max-height: 40px;
  }
}
/* End of auto scrolling logos Section CSS */

/* work with us section css */
.work-with-section {
  background: #ffffff;
}

/* Left Image */
.work-with-image {
  background: url("../assets/weworkwith.webp") center/cover no-repeat;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-with-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(178.48deg, rgba(26, 38, 43, 0.64) -27.58%, rgba(40, 39, 39, 0.32) 213.09%);
}

.work-with-image h2 {
  position: relative;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 0;
  z-index: 2;
}

/* Right Content */
.work-with-content {
  padding: 0px 70px;
}

.content-box {
  padding: 20px 20px 20px;
}

.content-box h5 {
   font-family: 'Manrope', sans-serif;
  font-weight: 500;      /* Regular */
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  margin: 15px 0 10px;
}

.content-box p {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 16px;
  
  color: #000;
  line-height: 28px;
}

/* Icon */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 22px;
  color: #000;
}

/* Divider */
.divider {
  height: 1px;
  background: #ddd;
  margin: 10px 0 20px;
}

/* Borders */
.border-start {
  border-left: 1px solid #ddd !important;
}

/* Responsive */
@media (max-width: 991px) {
  .work-with-content {
    padding: 40px 25px;
  }

  .border-start {
    border-left: none !important;
  }

  .work-with-image {
    min-height: 350px;
  }
}


/* Footer CTA */
.work-with-footer {
  margin-top: 25px;
  padding-left: 25px;
 
}

.work-with-footer p {
   font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 15px;
}

.register-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    box-shadow: 0px 4px 4px 0px #00000014;
}

.register-btn:hover {
  background: #9c3e13;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .work-with-content {
    padding: 40px 25px;
  }

  .border-start {
    border-left: none !important;
  }

  .work-with-image {
    min-height: 350px;
  }
}

/* End of work with us section css */
/* experience section css */
.experience-section {
  position: relative;
  background: url("../assets/experience.webp") center/cover no-repeat;
  border-radius: 0 0 40px 40px;
  padding: 90px 0 80px;
  overflow: hidden;
  margin-bottom: 60px;
}

.experience-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(178.48deg, rgba(26, 38, 43, 0.74) -27.58%, rgba(40, 39, 39, 0.52) 213.09%);

}

.experience-content {
   font-family: 'Manrope', sans-serif;
  font-weight: 500;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1000px;
}

.experience-content h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
}

.experience-content h2 span {
  color: #ffcc4d;
  font-weight: 600;
}

.subtitle {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Row */
.feature-row {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item p {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  
}

/* Button */
.view-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
     margin-top: 25px;
    outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    
}

.view-btn:hover {
  background: #9c3e13;
  color: #fff;
}

/* ================= EXPERIENCE SECTION – SMALL DEVICES ================= */
@media (max-width: 768px) {

  .experience-section {
    padding: 60px 16px 50px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 40px;
  }

  .experience-content {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    max-width: 100%;
  }

  .experience-content h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 14px;
  }

  .subtitle {
    font-size: 14px;
    line-height: 24px;
    max-width: 100%;
    text-align: center;
  }

  /* Feature row stacks */
  .feature-row {
    max-width: 100%;
    padding: 0 10px;
  }

  .feature-item p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 0px;
  }

  /* Button */
  .view-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 20px;
    text-align: center;
  }

}


/* Responsive */
@media (max-width: 991px) {
  .experience-content h2 {
    font-size: 32px;
  }

  .feature-item.border-start,
  .feature-item.border-end {
    border: none !important;
  }

  .feature-item {
    margin-bottom: 20px;
  }
}
/* End of experience section css */

/* range section css */
.range-section {
  background: #ffffff;
}

.range-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 0;
}

.range-subtitle {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #262222;
  
}

/* Cards */
.range-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

.range-card h5 {
   font-family: 'Manrope', sans-serif;
  font-weight: 500;      /* Regular */
  font-size: 24px;
  line-height: 56px;
  letter-spacing: 0;
  

  
}

.range-card p {
 font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #262222;
}

.range-card img {
  max-width: 100%;
  height: auto;
  display: block;
  align-items: bottom ;
}
/* .range-card1 img {
  margin-top: 80px;
}
@media (max-width: 756px) {
  .range-card1 img {
    margin-top: 60px;
  } */

/* Horizontal Card */
.range-card.horizontal {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.range-card.horizontal img {
  max-width: 250px;
}

.range-card {
  border: 1px solid #eee;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.range-card:hover {
  /* border-color: #b34716; 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06); */

  border: 1px solid transparent;
  border-radius: 12px;

  background:
    linear-gradient(#fff, #fff) padding-box,
   linear-gradient(37.12deg, #AF3C0E 0%, #FED866 103.5%) border-box;
    /* border: 1px solid; */

;


    box-shadow: 0 12px 24px rgba(175, 60, 14, 0.15);
}

.range-card.highlight img {
  margin-top: 30px;
}

/* Button */
.view-all-btn {
    font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
}

.view-all-btn:hover {
  background: #9c3e13;
  color: #fff;
}
/* ================= RANGE SECTION – SMALL DEVICES ================= */
@media (max-width: 768px) {

  .range-section {
    padding: 24px 16px;
  }

  .range-title {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
  }

  .range-subtitle {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Cards */
  .range-card {
    padding: 20px;
    border-radius: 14px;
  }

  .range-card h5 {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }

  .range-card p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  /* Horizontal card stacks vertically */
  .range-card.horizontal {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .range-card.horizontal img {
    max-width: 160px;
    margin: 0 auto;
  }

  .range-card img {
    margin: 0 auto;
  }

  .range-card.highlight img {
    margin-top: 16px;
  }

  /* Button */
  .view-all-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #00000014;
  }

}

/* Responsive */
@media (max-width: 991px) {
  .range-card.horizontal {
    flex-direction: column;
    text-align: center;
  }

  .range-card.horizontal img {
    margin-top: 20px;
  }
}
/* End of range section css */

/* fast movers section css */
.fast-movers-section {
  padding-block: clamp(3rem, 6vw, 7rem);
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 0;
  color: #2E2E2E;
  
}

/* Slider */
.product-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* Cards */
.product-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 25px;
  aspect-ratio: 4 / 5;           /* 👈 increase card height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid transparent;
}
.product-card:hover {
background: #ffffff;
background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(37.12deg, #AF3C0E 0%, #FED866 103.5%) border-box;

  box-shadow: -4px 4px 12px 4px #FFE0E099;





}
.product-item p{
  font-family: 'Manrope', sans-serif;
  font-weight: 500;      /* Regular */
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 15px;
  margin: 0;
}

/* Controls */
.slider-controls {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0px solid #ddd;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

/* .nav-btn:hover {
  background: #f5f5f5; 
} */

/* Button */
.view-btn1 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 80px;
  margin-top: 25px;
  
  box-shadow: 0px 4px 4px 0px #00000014;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
  
}

.view-btn1:hover {
  background: #9c3e13;
  color: #fff;
}
/* Slider container stays same */
.product-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  align-items:center;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* Item wrapper */
.product-item {
  flex: 0 0 260px;
  text-align: center;
}

/* Card box (image only) */
.product-card {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 25px;
}

/* Image */
.product-card img {
  max-width: 100%;
  height: auto;
}

/* Text outside box */
.product-title {
  margin-top: 12px;
  font-size: 15px;
  color: #222;
}

/* Fixed image area */
.product-img {
  height: 180px;               /* SAME height for all images */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image scaling */
.product-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;         /* keeps aspect ratio */
}

/* end of fast movers section css */


/* power of grouth section css */
/* Section */
.power-growth {
  /* border-radius: 0 0 30px 30px; */
  overflow: hidden;
  padding: auto;
  margin-top: 30px;
}

/* LEFT SIDE */
.growth-left {
  background: url("../assets/poweringrouth.webp") center/cover no-repeat;
 position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  padding: 60px;
  text-align: center;
  

}

.growth-overlay {
  position: absolute;
  inset: 0;
  background: #00000080;
}

.growth-text {
position: relative;
  color: #fff;
  max-width: 520px;
  text-align: center;
   
}

.growth-text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 500;
  

  line-height: 56px;
  letter-spacing: 0;
}

/* RIGHT SIDE */
.growth-right {
  background: #f6ecd9;
  padding: 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Slider */
.growth-slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 260px;
}

.growth-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.growth-slide.active {
  opacity: 1;
}

/* Button */
.growth-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    box-shadow: 0px 4px 4px 0px #00000014;
}

.growth-btn:hover {
  background: #9c3e13;
  color: #fff;
}

/* Dots */
.growth-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
}

.dot.active {
  background: #333;
}

/* Responsive */
/* Responsive */
@media (max-width: 991px) {
  .growth-left,
  .growth-right {
    padding: 35px 25px;
  }

  .growth-text h2 {
    font-size: 28px;
  }
}

/* Indicator wrapper */
.slider-indicator {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  justify-content: center;
}

/* Base indicator (dot) */
.indicator-item {
  width: 6px;
  height: 6px;
  background: #bbb;
  border-radius: 50%;
  transition: all 0.4s ease;
}

/* Active becomes bar */
.indicator-item.active {
  width: 26px;
  height: 6px;
  border-radius: 4px;
  background: #333;
}


/* End of power of grouth section css */

/* newly added css */
.newly-launched {
  background: #ffffff;
}

/* Card */
.launch-card {
  background: #f8f8f8;
  border-radius: 16px;
  /* padding: 16px; */
  display: flex;                 /* KEY */
  align-items: center;           /* vertical center */
  gap: 16px;                     /* space between image & text */
  transition: transform 0.3s ease;
}

/* Image wrapper */
.img-wrap {
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
  width: 240px;
  height: 160px;
}

/* Image */
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Text */
.launch-title {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #2E2E2E;
  text-align: center;
}

/* Hover effects */
.launch-card:hover img {
  transform: scale(1.08);
}
.newly-launch-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 0;
  
  color: #000000;
}

@media (max-width: 768px) {

  .launch-card {
    position: relative;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }

  .img-wrap {
    width: 100%;
    height: 200px;
    border-radius: 14px;
  }

  /* Center text OVER image */
  /* .launch-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    z-index: 2;

    padding: 16px;
    background: rgba(0, 0, 0, 0.35); 
    backdrop-filter: blur(2px);
  } */

  /* Optional: remove hover zoom on mobile */
  .launch-card:hover img {
    transform: none;
  }

}



/* end of newly added css */


/* feature striped */
.features-strip1 {
  
  background: #fafafa;
  margin-top: 60px;

  
}

.feature-item1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.feature-icon1 {
  width: 74px;
  height: 74px;
  background-color: #F2F2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 44px 0px #6F6F6F0D;
}

.feature-icon1 img {
  width: 33px;
  height: 40px;
}

.feature-text1 {
  margin: 0;
  font-size: 24px;      /* INCREASED */
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0;

}
.feature-icon11 {
  width: 52px;
height: 52px;
  background-color: #F2F2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 44px 0px #6F6F6F0D;
}

.feature-icon11 img {
  width: 36px;
  height: 30px;
}

.feature-text11 {
  margin: 0;
  font-size: 24px;      /* INCREASED */
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0;

}
.feature-item11 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}


.features-wrapper1 {
  background-color: #ffffff;
  /* padding-top: 60px; */
  position: relative;
}
@media (max-width: 768px) {
  .features-wrapper1 {
    padding-top: 0px;
  }
}

.feature-heading1 {
  position: absolute;
  top: -50px;
  left: 20%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 14px 54px;
  border-radius: 40px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
  text-align: center;
  z-index: 2;
  font-size: 24px;
  font-weight: 600;
  color: #212529;
   font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}

/* BORDER LAYER */
.feature-heading1::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 40px;
  z-index: -1;
  background:
  linear-gradient(#fff, #fff) padding-box,
  linear-gradient(180deg, #F9DE8A 0%, #AF3C0E 100%) border-box;
}

/* MASK BOTTOM HALF OF BORDER */
.feature-heading1::after {
  content: "PACE WITH YOUR BUSINESS";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -2px;
  height: 50%;
  background: #ffffff;   /* section background */
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: 1;
  font-size: 24px;
  font-weight: 600;
  color: #212529;
}

.feature-heading1 h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #212529;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .feature-heading1,
  .feature-heading1::after {
    display: none;
  }
}
/* end of feature striped */

/* hero section css */
/* .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.hero-wrapper {
  padding: 0px;
  background: #ffffff;
  width: 100%;
  height: 70vh;
}

/* Rounded container like screenshot */
.hero-rounded {
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
}

/* Slide image */
.hero-slide {
  width: 100%;
  min-height: 400px;  /* fallback */
  height: 70vh;
  background-size: cover;
  background-position: center;
}

/* Indicators container */
.carousel-indicators {
  bottom: 26px;
  gap: 8px;
  align-items: center;
}

/* Default dot */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #696969CC;
;
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
}

/* Active indicator (line) */
.carousel-indicators .active {
  
  width: 37px;
height: 0px;
border-radius: 4px;
opacity: 1;
border: 2px solid #ffffff;
border-width: 2px;

  background-color: #ffffff; /* matches screenshot */
}


/* end of hero section css */



.launch-card.bg-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
  overflow: hidden;

  background-repeat: no-repeat;
  background-position: right center;
  background-size: 150%;

  transition: background-size 0.5s ease;
}

/* Gradient border */
.launch-card.bg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: 20px;
  background: linear-gradient(37.12deg, #AF3C0E 0%, #FED866 103.5%);
  
  /* Cut out the center */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-shadow: -4px 4px 12px 4px #FFE0E099;
}

/* Hover */
.launch-card.bg-card:hover {
  background-size: 75%;
  background-position: left center;
  box-shadow: -4px 4px 12px 4px #FFE0E099;

}

.launch-card.bg-card:hover::before {
  opacity: 1;
}

/* White overlay for readability
.launch-card.bg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.188) 45%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 100%
  );
} */

/* Text styling */
.launch-title {
  position: relative;
  z-index: 2;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: #2E2E2E;
 margin-left: auto;
  max-width: 55%;
  text-align: right;
  margin-right: 20px;
}

/* Default (desktop & tablet) */
.launch-card.bg-card {
  justify-content: flex-end;
}

/* Mobile fix */
@media (max-width: 575px) {
  .launch-card.bg-card {
     height: 150px;
    padding: 16px;
  }

  .launch-title {
    max-width: 55%;
    font-size: 18px;
  }
}

/* mobile view */
@media (max-width: 767px) {
  .feature-item1 {
    flex-direction: column;
  }

  .feature-icon1 {
    margin-bottom: 3px;
  }

  .feature-text1 {
    display: inline-block;
    padding: 1px 18px 20px 18px;
    border-radius: 30px;
    /* background: #000; */
    /* color: #fff; */
    /* font-size: 14px;
    line-height: 1.2; */
  }
}
@media (max-width: 767px) {
  .feature-item11 {
    flex-direction: column;
  }

  .feature-icon11 {
    margin-bottom: 3px;
  }

  .feature-text11 {
    display: inline-block;
    padding: 1px 18px 20px 18px;
    border-radius: 30px;
    /* background: #000; */
    /* color: #fff; */
    /* font-size: 14px;
    line-height: 1.2; */
  }
}