.hero-grid {
 display: flex;
    gap: 10px;
    width: 100vw;          /* Make full width */
    max-width: none;      /* Remove max-width limit */
    margin: 0;            /* Remove horizontal centering margin */
    /* justify-content: center; */
    align-items: stretch;
    flex-wrap: nowrap;
}
.custom-margin{
  max-width: 100%;

}
.img-grid1,
.img-grid2,
.img-grid3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0; /* prevent shrinking */
}

/* Column widths */
.img-grid1 {
  width: 22%;
}
.img-grid2 {
  width: 50%;
}
.img-grid3 {
  width: 23%;
}

/* Cards & images styling */
.img-grid1 img,
.img-grid3 img {
  width: 100%;
  border-radius: 12px;
  /* object-fit: cover; */
  display: block;
}

/* Middle column images */
.img-grid2 > img {
  width: 100%;
  border-radius: 12px;
  /* object-fit: cover; */
  display: block;
  /* margin-bottom: 12px; */
}

/* Larger image in left column - wrap in div for control */
.card-img2 img {
  width: 100%;
  border-radius: 12px;
  /* object-fit: cover; */
  display: block;
  height: 457px;
  /* margin: 0 0 12px 0; */
}

/* Two images side by side inside .two-img */
.two-img {
  display: flex;
  gap: 10px;
  /* margin-bottom: 12px; */
}

.two-img img {
  width: 50%;
  border-radius: 12px;
  /* object-fit: cover; */
  display: block;
  height:248px;
}
/* .img-grid1,
.img-grid2,
.img-grid3 {
  flex: 1;
}
.img-grid1 > *,
.img-grid2 > *,
.img-grid3 > * {
  flex: 1;
}
.img-grid1 img,
.img-grid2 img,
.img-grid3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .hero-grid {
    flex-wrap: nowrap; /* Prevent wrapping on mobile */
    overflow-x: auto;  /* Enable horizontal scrolling if needed */
     width: 100%;    /* Full viewport width */
  }
    .custom-margin{
        padding-top: 65px;
    }
  /* .img-grid1,
  .img-grid2,
  .img-grid3 {
    width: 33.33%;      Equal width columns on mobile 
     min-width: 250px;  Prevent columns from shrinking too small 
  } */

  /* Optional: adjust image heights for smaller screens */
  .img-grid1 img,
  .img-grid3 img,
  .img-grid2 > img,
  .card-img2 img,
  .two-img img {
    height: auto;      /* Allow images to scale naturally */
  }

  /* Two images side by side in middle column remain same */
  .two-img {
    flex-direction: row;
    height: 70px !important;
  }

  .two-img img {
    width: 50%;

  }
  .img-grid2 .page4-img {
    height: 92px !important;
}
}
/* .img-grid2 .page4-img{
    height:300px;
} */
/* second section */
.hero-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  box-sizing: border-box;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap; /* wrap on small screens */
}

/* Left column */
.hero-left {
  flex: 1 1 500px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  /* margin-bottom: 20px; */
}

.btn-primary {
  background-color: #050706;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 100px;
  font-weight: 500;
}

.btn-secondary {
  background-color: #ffffff;
  color: #050706;
  border: 1px solid #050706;
  border-radius: 100px;
  padding: 12px 25px;
  font-weight: 500;
  cursor: pointer;
}

/* Trusted label */
.hero-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.hero-label img {
  height: 40px;
  width: auto;
}

/* Right column */
.hero-right {
  flex: 1 1 400px;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
/* .text {
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.para-box.expanded .text {
  -webkit-line-clamp: unset;
} */

/* .toggle-btns {
  margin-top: 5px;
  cursor: pointer;
  color: blue; 
  background: none;
  border: none;
} */
.more-text {
  display: none;
}

.para-box.active .more-text {
  display: inline;
}

.para-box.active .dots {
  display: none;
}

.toggle-btns {
  border: none;
  background: none;
  color: #333333;
  cursor: pointer;
  display: inline;
}
  .hero-container {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .hero-left h1 {
    font-size: 32px;
  }
}
/* third section  */
/* Hero section container */
.three-section-hero {
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

/* Heading and paragraph */
.hero-heading h2 {
  font-size: 30px;
  font-weight: 500;
  /* margin-bottom: 15px; */
}
.hero-heading h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}
.percent-sec h2 {
  font-size: 30px !important;
  font-weight: 500;
}
.percent-sec h3 {
  font-size: 20px !important;
}
.percent-sec .content-para {
  margin-bottom: 30px !important;
}
.hero-heading p {
  font-size: 15px;
  /* max-width: 900px;
  margin: 0 auto 40px auto; */
  line-height: 1.6;
  margin-bottom: 30px;
}
.two-section-hero {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
    background-color:#fff;
}
.text-center h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
/* Main content flex layout */
/* .hero-content {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap; 
} */
.hero-content {
  display: flex;
  gap: 10px;
  height: 500px; /* 🔥 set section height (adjust as needed) */
}
.hero-left
{
  flex: 1;                 /* equal width */
  display: flex; 
  flex-direction: column;
 
}
.big-img {
  width: 100%;
  display: block;
}
.hero-left img{
      height: 50%;
}
.hero-center,
.hero-right {
  flex: 1;                 /* equal width */
  display: flex;
  flex-direction: column;  /* stack images vertically */
  gap: 10px;
}
.hero-left img,
.hero-right img {
  flex: 1;                 /* split height equally */
  width: 100%;
  /* object-fit: fill;       */
}
.hero-center {
    flex:2;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}

.horizontal-img {
  flex: 1;        /* takes half height */
  width: 100%;
  height: 245px;
  /* object-fit: cover; */
}

.vertical-pair {
  flex: 1;        /* takes remaining half */
  display: flex;
  gap: 10px;
}
.vertical-img {
  flex: 1;
  /* width: 50%; */
  height:245px;
  /* object-fit: cover; */
}
.hero-right img {
  width: 100%;
  height: 100%;
  /* object-fit: contain;   */
  
}
/* .hero-left,
.hero-right {
  flex: 1 1 30%;
} */

/* .hero-center {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 10px;
} */

/* Images */
/* .hero-left .big-img{
  width: 100%;
  height: 225px;
  border-radius: 12px;
  
} */
/* .hero-right .big-img{
    width: 100%;
    height: 460px;
    border-radius: 12px;
    
} */

/* .hero-center .horizontal-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.vertical-pair {
  display: flex;
  gap: 10px;
}

.vertical-pair .vertical-img {
  flex: 1;
  width: 40%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
} */

/* Responsive for mobile */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .vertical-pair {
    flex-direction: column;
    gap: 20px;
  }

  .hero-left,
  .hero-center,
  .hero-right {
    flex: 1 1 100%;
  }

  .hero-heading h2 {
    font-size: 30px;
  }

  .hero-heading p,.sa-content p {
    font-size: 15px;
  }
}
/* fourth section  */
/* Container */
.smart-feature-section {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
    /* background-color: #e8e7e7; */
}


/* Section Heading */
.section-heading {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 1.4;
}

/* Grid layout */
.smart-feature-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Features Column */
.features-column {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
 .border-bottom {
    border-bottom: 10px solid #dee2e6 !important;
    }
.feature p {
  font-size: 15px;
  line-height: 1.6;
}

/* Image Column */
.image-column {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 100px;   /* adjust as needed */
  height: fit-content;
}

.image-column img {
     width: 100%;
    height: auto;
}


@media screen and (min-width: 1280px) {
   .image-column img {
        /* object-fit: fill; */
    }
}
/* Responsive */
@media (max-width: 900px) {
  .smart-feature-grid {
    flex-direction: column;
    gap: 30px;
  }

  .features-column,
  .image-column {
    flex: 1 1 100%;
  }

  .section-heading {
    font-size: 24px;
  }

  .feature h2 {
    font-size: 18px;
  }

  .feature p {
    font-size: 14px;
  }
}
/* fifth section */
.global-package-section {
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}
.global-package-section2 {
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
}



/* Section Heading */
.section-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Flow Section */
.flow-section {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  flex-wrap: wrap;
}

.flow-image img {
  max-width: 100%;
  /* border-radius: 12px; */
}

/* Links Section */
.flow-links {
  flex: 1;
  padding: 40px;
  background-color: #fe48ac;
  height:443px;
}
.heading-132{
    font-size:22px;
    font-weight:500;
}
.flow-title {
  margin-left: 20px;
  font-size: 22px;
  margin-bottom: 20px;
  color:#fff;
}

.flow-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-links li {
    margin: 30px 0px;
}
.flow-links a  {
    color: #f2f0ff;
    text-align: left;
    border: 1px solid #f2f0ff;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin:20px;
  
}
/* .flow-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 50px;
  background-color: #f0f0f0;
  transition: background 0.3s;
} */


.flow-image{
    width: 50%;
}
.flow-image img{
    height: 443px;
    width: 100%;
    /* object-fit: fill; */
}
.para-box{
  display: none;
}
/* Responsive */
@media (max-width: 768px) {
  .para-box{
    display:block !important;
  }
  .flow-section {
    flex-direction: column;
    gap: 10px;
  }
  .hero-heading p {
    margin-bottom: 0px !important;
  }
  .para-box{
     margin-bottom: 30px !important;
  }
  .flow-links a {
    width: 100%;
    text-align: center;
  }

  .section-heading {
    font-size: 20px;
    padding: 0 15px;
  }
}
/* sixth section */
.pricing-section {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  padding:30px 0px;
  background: #fff;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  text-align: left;
}

.pricing-header h3 {
  color: #3a70ff;
  font-size: 25px;
  font-weight: 700;
}

.pricing-header p {
    color: #696a6a;
    padding-top: 2px;
    font-family: Worksans, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.pricing-cost span {
  font-size: 32px;
  font-weight: bold;
}
.pricing-cost{
    margin: 30px 0px;
}

.pricing-cost p {
    color: #373938;
    font-family: Worksans, sans-serif;
    font-size: 15px;
    text-align: center;
}


.pricing-features p {
    color: #373938;
    font-family: Worksans, sans-serif;
    font-size: 12px;
    font-weight: 500;
}
.price-divider {
    border: .5px solid #696a6a;
    margin-bottom:10px;
}
.image-267 {
    width: 15px;
}
.image-268 {
    width: 20px;
}
.div-block-285 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}
.pricing-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}
.pricing-features {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    display: flex;
}
.text-block-275 {
    color: #373938;
    font-family: Worksans, sans-serif;
    font-size: 12px;
    font-weight: 500;
}
.w-button {
    color: #fff;
    line-height: inherit;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
}
.final-cost p {
  margin-top: 20px;
  font-weight: bold;
  font-size: 15px;
  background: #050706;
  color: #fff;
  padding: 10px;
  border-radius: 25px;
}
/* seventh section start*/
.contact-section {
  /* margin: 0px; */
  background: #f9f9f9;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
}

/* TEXT */
.text-center {
  text-align: center;
}

.text-center h2 {
  padding-top: 30px;
  /* margin-bottom: 15px; */
  font-size:30px;
  font-weight:500;
  background-color: #ffff;
}
.outer-box h2{
  font-size:30px;
}
.outer-box h3{
  font-size:20px;
}
.global-package-section div h2{
  padding-top: 30px;
  font-size:22px;
  font-weight:500;
}
.global-package-section div h3{
  font-size:20px;
  margin-bottom:15px;
}
.global-package-section div p{
   /* margin-bottom:30px; */
}
.global-package-section2 div h2{
  padding-top: 30px;
  font-size:30px;
  font-weight:500;
}
.global-package-section2 div h3{
  font-size:20px;
  margin-bottom:15px;
}
.global-package-section2 div p{
   margin-bottom:30px;
}
.text-center p {
  color: #555;
  /* max-width: 700px; */
  margin: 0px auto 15px auto;
  font-size: 15px;
}

/* GRID */
.grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT IMAGE */
.left {
  flex: 1;
}

.left img {
  width: 100%;
  border-radius: 10px;
  height:510px;
}

/* RIGHT FORM */
.right {
  flex: 1;
}

/* FORM WRAP */
.form-wrap {
  /* background: #fff; */
  padding: 15px 30px 0px 30px;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.08); */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
  }
}
/* seventh section end */
 .input-design {
    border: 1px solid rgb(0, 174, 239);
    padding: 10px 0px 10px 16px;
    margin-right: 5px;
    font-size: 12px;
    background: transparent;
    width: 100%;
}
.mr-3, .mx-3 {
    margin-right: 1rem !important;
}
.input-div {
    width: 48%;
    margin-right: 5px;
}
.form-div {
    display: flex;
    margin-bottom: 5px;
    /* position: relative; */
    width: 100%;
    min-height: 65px;
}
.form-sub {
    display: flex;
    align-items: center;
    background: #26a541 !important;
    font-weight: 600;
    border-radius: 8px;
    margin: 10px 4px 10px 0px;
    height: 45px;
    font-size: 12px;
    border: none;
    color: #fff;
    padding: 20px 20px;
    box-shadow: var(--mdc-protected-button-hover-container-elevation) !important;
}
.show-mobile {
    display: none;
    padding: 13px;
    width: 10.6943rem;
    border-color: #26a541 !important;
    background-color: #26a541 !important;
    letter-spacing: 1px;
}
.image-429 {
    height: 540px !important;
}

/* eightth section start */
  .faq-container {
    max-width: 800px;
    margin: 10px auto;
  }
   
  .faq-container h2 {
    padding-top: 15px;
    text-align: center;
    margin-bottom: 30px;
    font-size:22px;
    font-weight:500;
  }

  .faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    font-size: 13px;
  }
  /* .mb-8{
    margin-bottom:30px;
 }
   .mb-4{
    margin-bottom:15px;
    } */
  .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-item.active .faq-question::after {
    content: "-";
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    color: #555;
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 300px;
  }
  /* designing lab css start */
  html .relative {
    position: relative;
}
html .flex-row {
    flex-direction: row;
}
@media screen and (min-width: 75rem) {
    .w_GxNv {
        margin-left: -.75rem;
        margin-right: -.75rem;
    }
}
.w_KPWk {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (min-width: 0) {
    .w_b0y1 {
        width: 100%;
    }
}
@media screen and (min-width: 75rem) {
    .w_wRee {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}
.w_aoqv {
    box-sizing: border-box;
    flex: 0 0 auto;
}
.HeroSliderSection {
    padding: 20px;
}
html .h-100 {
    height: 100%;
}
@media screen and (min-width: 75rem) {
    .w_wRee {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}
html .flex-column {
    flex-direction: column;
}

html .flex {
    display: flex;
}
@media (min-width: 75rem) {
    html .mt4-xl {
        margin-top: 1.5rem;
    }
}
}

html .br3 {
    border-radius: .5rem;
}
html .aspect-ratio {
    height: 0;
    position: relative;
}
html .z-0 {
    z-index: 0;
}
@media (min-width: 75rem) {
    html .pv4-xl {
        padding-bottom: 1.5rem;
        padding-top: 1.5rem;
    }
}
html .overflow-hidden {
    overflow: hidden;
}
html .justify-start {
    justify-content: flex-start;
}
html .items-start {
    align-items: flex-start;
}
html .flex {
    display: flex;
}
html .absolute {
    position: absolute;
}
html .overflow-hidden {
    overflow: hidden;
}
html .w-100 {
    width: 100%;
}
html .absolute--fill {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
@media (min-width: 75rem) {
    html .mr1-xl {
        margin-right: .25rem;
    }
}

html .pr2 {
    padding-right: .5rem;
}
html .w-50 {
    width: 50%;
}
@media (min-width: 75rem) {
    html .mt4-xl {
        margin-top: 1.5rem;
    }
}
html .w-100 {
    width: 100%;
}
html .overflow-hidden {
    overflow: hidden;
}

html .justify-start {
    justify-content: flex-start;
}
html .aspect-ratio--object {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    
}
html .overflow-hidden {
    overflow: hidden;
}
.w_aoqv {
    box-sizing: border-box;
    flex: 0 0 auto;
}

@media screen and (min-width: 75rem) {
    .w_wRee {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}
@media screen and (min-width: 0) {
    .w_b_WN {
        width: 25%;
    }
}
@media screen and (min-width: 0) {
    html .aspect-ratio--c-banner-vertical-l {
        padding-bottom: 171.9%;
    }
}
@media (min-width: 75rem) {
    html .mt4-xl {
        margin-top: 1.5rem;
    }
}
html .aspect-ratio--object {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    
}
@media (min-width: 75rem) {
    html .pv4-xl {
        padding-bottom: 1.5rem;
        padding-top: 1.5rem;
    }
}
html img {
    border-style: none;
}
.w_wRee .flex-column{
    padding:0px !important;
}
  /* designing lab css end */



  /* third section start */
  

  .hero-section {
  padding: 30px 20px;
  background: #fff;
}

.hero-box {
  display: flex;
  gap: 10px;               /* spacing between columns */
  align-items: stretch;    /* equal height for all columns */
  height:500px;
 
}
.outer-box,
.box.main-content ,.image-box{
    height:100%;
}
.box.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;   /* stack content vertically */
  /* padding: 20px; */
  border: 1px solid lightgrey;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
}
.outer-box,
.box.main-content {
  flex: 0.8;                 /* each is 1 unit */
  box-sizing: border-box;
}

.outer-box {
  display: flex;             /* make it a flex container */
  flex-direction: column;    /* stack headings + small-content vertically */
  flex: 0.9;                   /* equal width as main-content */
  height: 100%;              /* inherit height from hero-box */
  box-sizing: border-box;
  padding: 0px;
}
/* Common box style */
.box {
  border: 1px solid lightgrey;
  border-radius:20px;
  padding: 20px;
  background: #fff;
  box-sizing: border-box; 
}
.box p{
    padding:20px; 
    text-align:justify;
}
/* Small left box */
.small-content {
  flex: 1;                 /* fills all remaining space below headings */
  display: flex;
  flex-direction: column;  /* stack inner content vertically */
  overflow: auto;          /* scroll if content is too tall */
}
.image-box img {
  width: 100%;
  /* height: 100%; */
  /* object-fit:cover; */
}
.outer-box h2{
        
        padding:0px 20px 0px 20px;
}
.outer-box h3{
     padding:0px 20px 0px 20px;
    margin-bottom: 20px;
}
.small-content h4 {
  font-size: 14px;
  margin-bottom: 10px;
}
.small-content p,.menu-item p,.global-package-section2 div p,.percent-sec p  {
  font-size: 15px;
}

.small-content h2 {
  font-size: 20px;
}

/* Main content */
.main-content h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.main-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 10px;
}

.btn-primary {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid #000;
  padding: 10px 20px;
  background: transparent;
}
.outer-box,
.box.main-content,
.image-box {
  box-sizing: border-box; /* includes padding & border in width calculation */
}
/* Image box */
.image-box {
   flex: 1.7;                   /* double width */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.image-box img {
   /* width: 100%; */
   /* height: 100%;             fill image-box completely */
   /* object-fit: cover; */
   max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  
}
/* third section end */
/* third section start */
.hero-box2 {
  display: flex;
  gap: 10px;
  align-items: stretch;
  height: 470px;
}

/* Left */
.outer-box2 {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.outer-box2 h3{
     padding: 20px;
}
.small-content2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid lightgrey;
  border-radius: 20px;
   padding: 20px;
  overflow: auto;
}
.smart-feature-section h3{
    /* text-align: center; */
    padding: 0px 0px 25px;
}
.perfect-design{
    text-align: center;
}
/* Middle */
.material-container {
   flex: 0 0 671px;
  display: flex;
  flex-direction: column;
  min-width: 0; /* 🔥 important */
}
.feature p {
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.material-content {
  height: 100%;
}

.material-container .bx-wrapper {
  width: 100% !important;
  max-width: 100%;
  height: 100%;
}

.material-container .bx-viewport {
  height: 100% !important;
}

/* Slides */
.material-content li.feature {
  height: 100%;
  border: 1px solid lightgrey;
  border-radius: 15px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Right */
.image-box2 {
  flex:1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; */
}

.image-box2 img {
  .image-box img {
   /* width: 100%; */
   /* height: 100%;             fill image-box completely */
   /* object-fit: cover; */
   max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  
}
}
/* Middle column wrapper */
/* .material-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;   
} */

/* Right column */

.feature h4{
    margin-bottom: 20px;
}
.material-content {
  height: 100%;
}

.material-content li {
  list-style: none;
}
.material-container {
  min-width: 0;   /* prevents slider overflow */
}
/* percent section start */
.percent-sec{
    background-color:lightgrey;
    padding-top:30px;
    padding-bottom:30px;
  }
  .percent-container{
    background-color:lightgrey;
  }
    .border-bottom {
    border-bottom: 10px solid #dee2e6 !important;
    }
    .custom-margin{
        padding-top:25px;
        margin-bottom: 30px;
    }
    .customdiv{
        background:#fff;
        margin-top: -20px;
    }
    .caption h4 ,.pl{
    font-size: 16px !important;
  }
.image-container {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* 3 images per row */ 
    gap: 15px; 
    
}
.percent-container{
    display: grid !important; 
    grid-template-columns: repeat(5, 1fr); /* 3 images per row */ 
    gap: 15px; 
    height: 100%;
}
 .percent-container .subdiv { 
    width: 100%; 
    height: auto; 
    flex: 1; 
    height:100%;
    
    border-style: solid;
    --border-style: solid;
    border-width: 1px 1px 1px 1px;
    --border-top-width: 1px;
    --border-right-width: 1px;
    --border-bottom-width: 1px;
    --border-left-width: 1px;
    border-color: #fff;
    border-radius: 16px 16px 16px 16px;
    /* border-radius: 8px; */
 } 
.prod-details{
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */ 
    gap: 15px; 
}
/* .image-container img:hover {
    transform: scale(1.05);
    transition: 0.3s;
} */
.eco-box {
  text-align: left;
  max-width: 300px;
  margin: auto;
}


.eco-box h3{
    justify-content: start;
    color: #000000;
    font-family: "Figtree", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}
.eco-number {
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0;
}


.eco-box img {
  max-width:100%;
  margin: 10px 0;
  display: inline-block;
    vertical-align: middle;
}
.elementor-element{
       padding-left: 30px;
    padding-right: 30px;
    
}
.form-div {
    display: flex;
    margin-bottom: 5px;
    /* position: relative; */
    width: 100%;
    min-height: 60px !important;
}
.input-div {
    width: 48%;
    margin-right: 5px;
}
.eco-box .elementor-a a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
     font-size: 14px;
    font-weight: 400;
    max-width:100%;
}
.elementor-a  {
    font-size:15px;
    margin: 15px 0px 20px 0px;
    text-align: justify;
}
.w-text {
    width: 97%;
    resize: none;
}
/* percent section end */
  /* mobile responsive start */
  @media (max-width: 768px) {
    .eco-box img {
    width: 80px !important;       /* fixed size */
    height: auto;
    display: block;
    margin: 0 auto !important;
  }
    /* .hero-content-mob{
      padding-top: 20px;
    } */
    .show-mobile{
        display:block;
      }
      .additional-fields {
        display: none;
    }
    .first-sec-mob{
      padding-top: 20px;
    }
  .flow-image {
    width: 100%;
    }
    .content-div, .content-para {
        width: 100% !important;
    }
    p {
        text-align: justify;
    }
        .percent-container {
        width: 100%;
        display: block !important;
    }
    .hidden-xs{
        display:none !important;
     }
    .hero-content-mob {
    width: 100%;
  }

  .hero-left-mob, .hero-center-mob, .hero-right-mob {
      width: 100%;
  }

  .big-img-mob {
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
      padding: 10px 0;
      /* object-fit: cover; */
  }

  .hero-center-mob {
      display: flex;           /* side-by-side layout */
      width: 100%;
      gap: 10px;               /* space between left and right */
      flex-wrap: nowrap;       /* prevent wrapping */
  }

    .vertical-pair-mob,
    .horizontal-img-mob {
        width: 100%;              /* each column takes half width */
    }
    .sa-content{
      border: 1px solid lightgrey;
        border-radius: 20px;
        background:#fff;
        height: 220px;
      
    }
    .sa-content2{
      border: 1px solid lightgrey;
        border-radius: 20px;
        background:#fff;
        height: 250px;
      
    }
    .sa-content p{
      padding:20px;
    }
    /* Stack vertical images */
    .vertical-pair-mob {
        display: flex;
        flex-direction: column;  /* stack vertically */
        gap: 10px;               /* spacing between vertical images */
    }
    .vertical-img-mob{
        height: 150px;
    }
    .horizontal-img-mob {
         height: 310px !important;
    }
    .vertical-img-mob,
    .horizontal-img-mob {
        width: 100%;
        /* object-fit: cover;      */
        display: block;          /* ensures image shows */
    }
   .hero-box.horizontal-scroll {
    display: flex;             /* horizontal layout */
    flex-direction: row;       /* left-to-right */
    overflow-x: auto;          /* horizontal scroll */
    gap: 15px;
    scroll-snap-type: x mandatory; /* optional: snap to sections */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.hero-box.horizontal-scroll > div {
    flex: 0 0 auto;            /* prevent shrinking, keep natural width */
    scroll-snap-align: start;  /* optional: snap behavior */
}

.outer-box, .box.main-content, .image-box {
    width: 100%;               /* set fixed width or min-width as needed */
    /* padding: 0px; */
    text-align: center;
}

.image-box img {
    max-width: 100%;
    height: auto;
}
.box p {
        font-size:15px !important;
    }
    
    .outer-box h2,.hero-heading h2,.flow-links h2 ,.percent-sec h2{
                  font-size:30px !important;
                  padding:0px !important;
                  text-align: left !important;
      }
      .global-package-section2 div h2,.percent-container h2 {
          font-size: 30px  !important;
          font-weight: 500;
      }
      .outer-box h3,.hero-heading h3 {
          padding:0px !important;
          font-size:20px !important;
          margin-bottom: 0px !important;
           text-align: left !important;
      }
      .global-package-section2 div h3 {
          padding:0px !important;
          font-size:20px !important;
          margin-bottom: 15px !important;
           text-align: left !important;
      }
      .global-package-section2,.percent-container {
        padding-bottom:30px;
      }
      .contact-section2{
        background-color: #f9f9f9 !important;
      }
      .left img {
          height: 300px !important;
      }
      .hero-heading2{
        margin-top:30px;
      }
       .custom-margin{
        margin-bottom:0px !important; 
      }
    /* material fourth css */
   .main-wrapper{
        display:block !important;
        height: 100% !important;
        margin-bottom: 10px;
    }
    .two-section-hero {
    width: 100%;
    padding: 20px !important;
    }
      .flow-image img {
            height: 300px !important;
        }
    /* menu-box scroll start */
    .menu-box {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px;
  scroll-behavior: smooth;
}

.menu-box::-webkit-scrollbar {
  height: 6px;
}

.menu-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.menu-item {
  min-width: 220px;
  flex: 0 0 auto;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.menu-item.active {
 
  color: #fff;
}

.material-list {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}
    /* menu-box-scroll end */
    .form-wrap {
      padding:0px !important;
    }
        /* #price-sec {
      display: flex;
    } */
    .pricing-features p ,.text-block-275,.w-button {
    font-size: 15px !important;
    }

    .pricing-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .flow-links {
      width: 100%;
      padding:20px 0px !important;
      margin-top:20px;
    }
    .image-box2{
        width:100%;
    }
    .content-box-sec,.menu-box{
        width:100% !important;
        margin-bottom:15px;
        margin-top: 30px;
    }
    #content-scroll2 {
      height: 260px; /* adjust as needed */
      overflow: hidden;
    }

    #content-scroll2 .sa-content2 {
      height: 260px;
      
    }
    .sa-content2 p{
        padding:20px;
    }
    .perfect-design{
        font-size:18px;
        margin-top:30px;
    }
    /* material fourth css */
    .flow-links a{
        font-size:15px !important;
    }
        #herobox_scroller {
        list-style: none;
        margin: 0;
        padding: 0;
        }

        .box {
        background: #fff;
        padding: 20px;
        }

        /* VERY IMPORTANT (fix flex issues) */
        #herobox_scroller {
        display: block !important;
        }

       /* Fix display and width so bxslider works properly */
        #herobox_scroller.bxslider {
        display: block !important;
        width: 100% !important;
        margin: 0 auto;
        }
        .box h2{
            font-size:30px;
        }
        .box h3{
            font-size:20px;
        }

}
  /* mobile responsive end */
  .hidden-md{
    display:none;
  }
  .outer-box2 h3 {
    padding: 0px 20px 0px 20px;
    margin-bottom: 20px;
}
.outer-box2 h2 {
    font-size: 30px;
    padding: 0px 20px 0px 20px;
}
/* material css start  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f4f4;
}

/* MAIN LAYOUT */
.main-wrapper {
  display: flex;
  gap: 30px;
  height:490px;
  /* max-width: 1100px;
  margin: 30px auto; */
}

/* LEFT BOX */
.menu-box {
  width: 24%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 20px 0;
}

/* MENU ITEMS */
.menu-item {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
  color: #333;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item span {
  /* color: #ff7a00; */
  font-weight: 600;
  margin-right: 8px;
  font-size: 16px;
}

/* ACTIVE MENU */
.menu-item.active {
  color: #ff7a00;
  font-weight: 600;
}

/* HOVER */
.menu-item:hover {
  background: #fafafa;
}

/* RIGHT CONTENT BOX */
.content-box-sec {
  width: 24%;
  background: #fac895;
  color:#fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* TYPOGRAPHY */
.tab-content h4 {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
}

.tab-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff7a00;
  display: inline-block;
  padding-bottom: 5px;
}

.tab-content h2 {
  font-size: 26px;
  margin: 20px 0;
  color: #222;
}

.tab-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.image-box2 img {
    width: 100%;
    height: 100%;
    /* object-fit: fill !important; */
}
.perfect-design {
    text-align: center;
    margin: 15px auto;
}
/* material css end */