* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 90%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (max-width:1499px) {
  .container {
    width: 95%;
  }
}

@media (max-width:1199px) {
  .container {
    width: 98%;
  }
}
@media (max-width:991px) {

}
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
  
}

@media (min-width:1599px){
  .container{width: 93%;}
}

/* ============================================
   Common Section Heading Styles
   ============================================ */

/* Common heading class for all sections - reusable styling */
.section-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 40px 0;
  text-align: center;
  color: #454545  ;
}

/* ============================================
   NTPC Beneficiaries Section Styles
   ============================================ */

/* Main section container with light grey background */
.ntpc-beneficiaries-section {
  background-color: #F6F6F6;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

/* Content wrapper - flexbox for two-column layout */
.ntpc-content-wrapper {
  display: flex;
  align-items: flex-start;

}

/* Left column - Heading section */
.ntpc-heading {
  flex: 0 0 35%;
  max-width: 35%;
}

/* Main heading styling - uses common section heading styles */
.ntpc-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #454545;
  margin: 0;
}

/* Right column - Content section */
.ntpc-content {
  flex: 0 0 63%;
  max-width: 63%;
}

/* Body text paragraph styling */
.ntpc-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
  margin: 0 0 15px 0;
}

/* Read More wrapper - flex container for text and button */
.read-more-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Read More text styling */
.read-more-text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #58595B;
}

/* Read More button - orange circular button */
.read-more-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F04E30;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

/* Button hover effect */
.read-more-btn:hover {
  background-color: #e55a2b;
  transform: scale(1.05);
}

/* Button active state */
.read-more-btn:active {
  transform: scale(0.95);
}

/* SVG icon inside button - white chevron */
.read-more-btn svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   Responsive Styles for NTPC Section
   ============================================ */

/* Tablet and smaller desktop */

@media (max-width:1299px){
  .ntpc-content-wrapper{justify-content: space-between;}
}
@media (max-width: 1199px) {
  .ntpc-beneficiaries-section {
    padding: 60px 0;
  }
  
  .ntpc-content-wrapper {
    gap: 40px;
  }
  
  .ntpc-heading h2{font-size: 26px;}
  .ntpc-heading h2 br {
  display: none;
  }
}

/* Tablet portrait */
@media (max-width: 991px) {
  .ntpc-beneficiaries-section {
    padding: 50px 0;
  }
  
  .ntpc-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .ntpc-heading {
    flex: 1;
    max-width: 100%;
  }
  
  .ntpc-content {
    flex: 1;
    max-width: 100%;
  }
  
  .ntpc-heading h2 {
    font-size: 26px;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .ntpc-beneficiaries-section {
    padding: 40px 0;
  }
  
  .ntpc-content-wrapper {
    gap: 25px;
  }
  
  .ntpc-heading h2 {
    font-size: 24px;
   
  }
  
  .ntpc-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .read-more-text {
    font-size: 15px;
  }
  
  .read-more-btn {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   Partnership Section Styles
   ============================================ */

/* Main partnership section container - white background */
.partnership-section {
  background-color: #ffffff;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

/* Cards wrapper - flexbox for three-column layout on desktop */
.partnership-cards-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Individual partnership card styling */
.partnership-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Card hover effect */
/* .partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
} */

/* Card image container */
.card-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #f0f0f0;
}

/* Card image styling */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Image zoom effect on hover */
/* .partnership-card:hover .card-image img {
  transform: scale(1.05);
} */

/* Card content area - light grey background */
.card-content {
  background-color: #f2f2f2;
  padding: 30px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

/* Card content paragraph styling */
.card-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
  margin: 0;
}

/* ============================================
   Slick Slider Customization for Partnership Section
   ============================================ */

/* Hide default slick slider on desktop */
.partnership-cards-wrapper.slick-slider {
  display: block;
}

/* Slick slider dots styling */
.partnership-section .slick-dots {
  bottom: -60px;
  text-align: center;
}

.partnership-section .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

/* Individual dot styling */
.partnership-section .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D0D0D0;
  border: none;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  transition: background-color 0.3s ease;
}
.partnership-section .slick-track{display: flex;gap: 20px;}

/* Active dot styling */
.partnership-section .slick-dots li.slick-active button {
  background-color: #F04E30;
}

/* Slick slider arrow styling - custom white circular buttons */
.partnership-section .slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
}

/* Arrow hover effect */
/* .partnership-section .slick-arrow:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
} */

/* Arrow active state */
/* .partnership-section .slick-arrow:active {
  transform: scale(0.95);
} */

/* Hide default arrow icons */
.partnership-section .slick-arrow:before {
  display: none;
}

/* Left arrow positioning */
.partnership-section .slick-prev {
  left: -25px;
  position: absolute;
}

/* Right arrow positioning */
.partnership-section .slick-next {
  right: -25px;
}

/* Arrow icon images */
.partnership-section .slick-prev img,
.partnership-section .slick-next img {
 width: auto;
  object-fit: contain;
  display: block;
}
.partnership-section .slick-arrow{background-color: #fff !important;z-index: 999;}

/* Slick slider card styling when active */
.partnership-section .slick-slide {
  padding: 0;
  height: auto;
  background: #f2f2f2;
}

.partnership-section .slick-slide .partnership-card {
  margin: 0;
}

/* ============================================
   Responsive Styles for Partnership Section
   ============================================ */

/* Tablet and smaller desktop */
@media (max-width: 1199px) {
 
  
  
  
  .section-heading {
    font-size: 26px;
    margin-bottom: 35px;
  }
  .card-content{padding: 20px;}
  
  
}

/* Tablet portrait - convert to slider */
@media (max-width: 991px) {
  .partnership-section {
    padding: 50px 0 80px 0;
  }
  
  /* Convert to slider on tablets and below */
  .partnership-cards-wrapper {
    display: block;
  }
  
  .section-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
 .card-image{border-radius: 20px 20px 0 0;}
  
  .card-content {
    padding: 20px;
    border-radius: 0 0 20px 20px;
  }
  .slick-dots li button:before{content: "" !important;}
  
  .card-content p {
    font-size: 15px;
  }
  
  /* Arrow positioning for tablet */
  .partnership-section .slick-prev {
    left: -15px;
    z-index: 10;
  }
  
  .partnership-section .slick-next {
    right: -15px;
    z-index: 10;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .partnership-section {
    padding: 40px 0 40px 0;
  }
  
  .section-heading {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 5px;
  }
  .section-heading br{display: none;}
  
  
  
  .card-content {
    padding: 18px;
  }
  
  .card-content p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Adjust dots position on mobile */
  .partnership-section .slick-dots {
    bottom: -40px;
    display: none !important;
  }
  
  /* .partnership-section .slick-slide {
    padding: 0 10px;
  } */
  
  /* Smaller arrows on mobile */
  .partnership-section .slick-arrow {
    width: 40px;
    height: 40px;
  }
  
  .partnership-section .slick-prev {
    left: -15px;
  }
  
  .partnership-section .slick-next {
    right: -15px;
  }
  
 
}

/* ============================================
   Improvement Section Styles
   ============================================ */

/* Main improvement section container - light grey background */
.improvement-section {
  background-color: #F3F3F3;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

/* Content wrapper - flexbox for two-column layout */
.improvement-content-wrapper {
  display: flex;
  gap: 30px;
 
}

/* Left column - Large text card */
.improvement-text-card {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 60px 80px;
  box-shadow: 0px 4px 60px 0px #0000001A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Text card paragraph styling */
.improvement-text-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
  margin: 0 0 20px 0;
}

/* Remove margin from last paragraph */
.improvement-text-card p:last-child {
  margin-bottom: 0;
}

/* Right column - Features grid (2x2) */
.improvement-features-grid {
  flex: 0 0 50%;
  max-width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Individual feature card styling */
.feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0px 4px 60px 0px #0000001A;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Feature card hover effect */
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Feature icon container */
.feature-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  min-height: 80px;
}

/* Feature icon image styling */
.feature-icon img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* Feature text styling */
.feature-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #454545;
  margin: 0;
  max-width: 290px;
}

.innerpage-banner .img-wrap img{margin-top: 50px;}


/* ============================================
   Responsive Styles for Improvement Section
   ============================================ */

/* Tablet and smaller desktop */

@media (max-width:1299px){
  .improvement-text-card{
    padding: 60px;
  }
}
@media (max-width: 1199px) {
  .improvement-section {
    padding: 60px 0;
  }
  
  .improvement-content-wrapper {
    gap: 30px;
  }
  
  .improvement-text-card {
    padding: 40px;
  }
  
  .feature-card {
    padding: 25px 18px;
  }
  
  .feature-icon {
    min-height: 70px;
    margin-bottom: 18px;
  }
  
  .feature-icon img {
    max-height: 70px;
  }
  .feature-text{font-size: 16px;}
}

/* Tablet portrait - collapse to single column */
@media (max-width: 991px) {
  .improvement-section {
    padding: 50px 0;
  }
  
  /* Convert to single column layout */
  .improvement-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .improvement-text-card {
    flex: 1;
    max-width: 100%;
   
  }
  
  /* Keep grid but make it single column on tablets */
  .improvement-features-grid {
    flex: 1;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    min-height: 80px;
    margin-bottom: 20px;
  }
  
  .feature-icon img {
    max-height: 80px;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .improvement-section {
    padding: 40px 0;
  }
  
  .improvement-content-wrapper {
    gap: 30px;
  }
  
  .improvement-text-card {
    padding: 25px;
  }
  
  .improvement-text-card p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Convert grid to single column on mobile */
  .improvement-features-grid {
    grid-template-columns: 1fr;
   
  }
  
  .feature-card {
    padding: 25px 18px;
  }
  
  .feature-icon {
    min-height: 70px;
    margin-bottom: 18px;
  }
  
  .feature-icon img {
    max-height: 70px;
  }
  
  .feature-text {
    max-width: 220px;
  }
  .steps-container .step-action{min-height: auto;}
  .how-to-use-bottom{border-radius: 20px !important;} 
}

/* ============================================
   Coverage Section Styles
   ============================================ */

/* Main coverage section container - light grey background */
.coverage-section {
  background-color: #F6F6F6;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}
.coverage-section .section-heading{margin-bottom: 20px;}

/* Introductory paragraph styling */
.coverage-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
  text-align: center;
  margin: 0 auto 50px auto;
  max-width: 590px;
}

/* Content wrapper - flexbox for two-column layout */
.coverage-content-wrapper {
  display: flex;
  gap: 20px;
  
}

/* Left column - Coverage cards container */
.coverage-cards {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

/* Individual coverage card styling */
.coverage-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 2px 20px 0px #0000001A;
  flex: 1;

}

/* Coverage card heading styling */
.coverage-card-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
 
  color: #000000;
  margin: 0 0 15px 0;
}

/* Coverage list styling */
.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Coverage list item styling */
.coverage-list li {
  font-family: "Montserrat", sans-serif;
  margin: 0 0 0px 0;
  padding-left: 20px;
  position: relative;
}
.coverage-card p, .coverage-card ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
}

.coverage-card ul{padding-left: 15px;}
/* Bullet point styling */
.coverage-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6D6E72;
  font-weight: 700;
}

/* Remove margin from last list item */
.coverage-list li:last-child {
  margin-bottom: 0;
}

/* Right column - Coverage image */
.coverage-image {
  flex: 0 0 50%;
  max-width: 50%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

/* Coverage image styling */
.coverage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   Responsive Styles for Coverage Section
   ============================================ */

/* Tablet and smaller desktop */
@media (max-width:1299px){
  .coverage-intro{
    max-width: 800px;
  }
}
@media (max-width: 1199px) {
  .coverage-section {
    padding: 60px 0;
  }
  
  .coverage-content-wrapper {
    gap: 30px;
  }
  
  .coverage-card {
    padding: 35px;
  }
  
  .coverage-card-heading {
    font-size: 18px;
  }
  
  .coverage-list li {
    font-size: 15px;
  }
}

/* Tablet portrait - collapse to single column */
@media (max-width: 991px) {
  .coverage-section {
    padding: 50px 0;
  }
  
  .coverage-intro {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  /* Convert to single column layout */
  .coverage-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .coverage-cards {
    flex: 1;
    max-width: 100%;
  }
  
  .coverage-image {
    flex: 1;
    max-width: 100%;
    
  }
  
  .coverage-card {
    padding: 30px;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .coverage-section {
    padding: 40px 0;
  }
  
  .coverage-intro {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .coverage-content-wrapper {
    gap: 25px;
  }
  
  .coverage-cards {
    gap: 25px;
  }
  
  .coverage-card {
    padding: 25px 20px;
  }
  
  .coverage-card-heading {
   
    margin-bottom: 18px;
  }
  .coverage-card p, .coverage-card ul li{
    font-size: 14px;
  }
  .coverage-card p{line-height: 22px;}
  .coverage-card ul {
    padding-left: 7px;
}
  
  
}

/* ============================================
   Annual Health Check-Up Section Styles
   ============================================ */

/* Main health checkup section container - white background */
.health-checkup-section {
  background-color: #ffffff;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

/* Section heading margin */
.health-checkup-section .section-heading {
  margin-bottom: 40px;
}

/* Health checkup wrapper - rounded container */
.health-checkup-wrapper {
  background-color: #F3F3F3;
  border-radius: 20px;
  display: flex;
  gap: 0px;

}

/* Left column - Image area */
.health-checkup-image {
  flex: 0 0 50%;
  max-width: 50%;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
}

/* Health checkup image styling */
.health-checkup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column - Content area */
.health-checkup-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  padding:  50px;
}

/* Health checkup heading styling */
.health-checkup-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
 max-width: 500px;
  color: #454545;
  margin: 0 0 20px 0;
}

/* Health checkup intro paragraph */
.health-checkup-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
  margin: 0 0 20px 0;
}

/* Health checkup list styling */
.health-checkup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  padding-left: 15px;
}

/* Health checkup list item styling */
.health-checkup-list li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
  margin: 0 0 0px 0;
  padding-left: 20px;
  position: relative;
}

/* Bullet point styling */
.health-checkup-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6D6E72;
  font-weight: 700;
}

/* Remove margin from last list item */
.health-checkup-list li:last-child {
  margin-bottom: 0;
}

/* Health checkup conclusion paragraph */
.health-checkup-conclusion {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height:24px;
  color: #6D6E72;
  margin: 0;
}


/* ============================================
   Responsive Styles for Health Check-Up Section
   ============================================ */

/* Tablet and smaller desktop */
@media (max-width: 1199px) {
  .health-checkup-section {
    padding: 60px 0;
  }
  
 
  
  .health-checkup-heading {
    font-size: 24px;
  }
  
 
}

/* Tablet portrait - collapse to single column */
@media (max-width: 991px) {
  .health-checkup-section {
    padding: 50px 0;
  }
  
  .health-checkup-section .section-heading {
    margin-bottom: 30px;
  }
  
  .health-checkup-wrapper {
    flex-direction: column;
    gap: 0px;
  }
  
  .health-checkup-image {
    flex: 1;
    max-width: 100%;
    order: 1;
  }
  
  .health-checkup-content {
    flex: 1;
    max-width: 100%;
    order: 2;
    padding: 35px;
  }
  
  .health-checkup-heading {
    font-size: 24px;
    max-width: 100%;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .health-checkup-section {
    padding: 40px 0;
  }
  
  .health-checkup-section .section-heading {
    margin-bottom: 25px;
    font-size: 24px;
  }
  
 
  
  .health-checkup-image {
    order: 1;
  }
  
  .health-checkup-content {
    order: 2;
    padding: 25px;
  }
  
  .health-checkup-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .health-checkup-intro {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .health-checkup-list {
    margin-bottom: 20px;
  }
  
  .health-checkup-list li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 18px;
  }
  
  .health-checkup-conclusion {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ============================================
   How to Use Services Section Styles
   ============================================ */

/* Main how to use section container - white background */
.how-to-use-section {
  background-color: #ffffff;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

/* Section heading margin */
.how-to-use-section .section-heading {
  margin-bottom: 20px;
}

/* Introductory paragraph styling */
.how-to-use-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color:#58595B;
  text-align: center;
  margin: 0 auto 60px auto;
  max-width: 652px;
}

/* Steps wrapper */
.steps-wrapper {
  margin-bottom: 80px;
}

/* Steps container - flexbox for horizontal layout */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap;
  padding: 40px 0 0 0;
}

/* Individual step item */
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 55px;
}

/* Step number styling */
.step-number {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #58595B;
  margin-bottom: 15px;
}

/* Step icon container */
.step-icon {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  margin: 20px 0;
  /* border-radius: 50%;
  border: 2px solid #E0E0E0;
  background-color: #ffffff; */
}

/* Step icon image */
.step-icon img {
  width: 100%;
  height: auto;
 
  object-fit: contain;
}
.step-item:before {
  content: "";
  width: 100%;
  top: 45px;
  position: absolute;
  border: 1px solid #D1D0D0;
}

/* Connector dot at center bottom of icon */
.step-item::after, .steps-container::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #F04E30;
  top: 30px;
  left: 0;
  transform: translateX(-50%);
  z-index: 3;
  border: 2px solid #ffffff;
}
.steps-container::after {
  right: -20px;
  left: auto;
  top: 69px;
  transform: translateX(-50%);
}
.steps-container

/* Step action heading */
.step-action {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 8px 0;
  min-height: 40px;
}

/* Step description */
.step-description {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #6D6E72;
  margin: 0;
  line-height: 24px;
}

/* Step connector - line between steps */
.step-connector {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 80px;
  margin-top: 0;
  margin-bottom: 15px;
  align-self: flex-start;
  padding-top: 40px;
}

/* Connector line - horizontal line through center of icons */
.connector-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #E0E0E0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  right: 0;
}

/* Bottom section - Image and Text */
.how-to-use-bottom {
  display: flex;
  background-color: #F3F3F3;
    border-radius: 0 20px 20px 0;
}

/* Left column - Image */
.how-to-use-image {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 20px;
  overflow: hidden;
}

/* Image styling */
.how-to-use-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column - Text */
.how-to-use-text {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 40px 180px 40px 100px;

}

/* Text paragraph styling */
.how-to-use-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #6D6E72;
  margin: 0 0 20px 0;
}

/* Remove margin from last paragraph */
.how-to-use-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Slick Slider Customization for Steps
   ============================================ */

/* Steps slider dots styling */
.how-to-use-section .slick-dots {
  bottom: -50px;
  text-align: center;
}

.how-to-use-section .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

/* Individual dot styling */
.how-to-use-section .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D0D0D0;
  border: none;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  transition: background-color 0.3s ease;
}

.how-to-use-section .slick-dots li button:before {
  content: "" !important;
}

/* Active dot styling */
.how-to-use-section .slick-dots li.slick-active button {
  background-color: #F04E30;
}

/* Slick slider arrow styling */
.how-to-use-section .slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

/* Hide default arrow icons */
.how-to-use-section .slick-arrow:before {
  display: none;
}

/* Left arrow positioning */
.how-to-use-section .slick-prev {
  left: -25px;
}

/* Right arrow positioning */
.how-to-use-section .slick-next {
  right: -25px;
}

/* Arrow icon images */
.how-to-use-section .slick-prev img,
.how-to-use-section .slick-next img {
  width: auto;
  object-fit: contain;
  display: block;
}

/* Slick slider step styling when active */
.how-to-use-section .slick-slide {
  padding: 0 15px;
}

.how-to-use-section .slick-slide .step-item {
  margin: 0;
}

/* ============================================
   Responsive Styles for How to Use Section
   ============================================ */

/* Tablet and smaller desktop */

@media (max-width:1699px){
  .steps-container .step-action{min-height: 60px;}
  
}
@media (max-width:1499px){
  .step-item{padding: 0 15px;}
  
}

@media (max-width:1399px){
  .how-to-use-text{
    padding: 40px 80px;
  }
}

@media (max-width:1299px){
  .how-to-use-text{
    padding: 40px 60px;
  }
}
@media (max-width: 1199px) {
  .how-to-use-section {
    padding: 60px 0;
  }
  
  .how-to-use-intro {
    margin-bottom: 50px;
  }
  
  .steps-wrapper {
    margin-bottom: 60px;
  }
  
  .step-connector {
    flex: 0 0 60px;
  }
  
  .how-to-use-text{
    padding: 50px;
  }
  .step-icon{
    width: 70px;
    height: 70px;
  }
 
}

/* Tablet portrait - horizontal scroll */
@media (max-width: 991px) {
  .steps-container .step-action{min-height: auto;}
  .how-to-use-section {
    padding: 50px 0;
  }
  
  .how-to-use-intro {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .steps-wrapper {
    margin-bottom: 80px;
   
  }
  .steps-container{
    flex-direction: column;
  }
  .steps-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  
  .steps-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }
  
  .steps-wrapper::-webkit-scrollbar-thumb {
    background: #F04E30;
    border-radius: 10px;
  }
  
  /* Enable horizontal scroll on tablets */
  .steps-container {
    display: flex;
    min-width: max-content;
    padding-bottom: 20px;
  
  }
  
  .step-item {
  flex: 0 0 100%;
  width: 100%;
  padding: 20px 0;
  }
  .step-icon{margin: 30px 0;}
  .step-item:before{top:72px;}
  .step-item::after, .steps-container::after{
    left: 50%;
    top: 57px;
  }
  .steps-container::after{display: none;}
  .step-connector {
    flex: 0 0 60px;
    min-width: 60px;
  }
  
  .how-to-use-bottom {
    flex-direction: column;
    gap: 30px;
  }
  
  .how-to-use-image {
    flex: 1;
    max-width: 100%;
  }
  
  .how-to-use-text {
    flex: 1;
    max-width: 100%;
  }

    .steps-wrapper {
    margin-bottom: 60px;
    overflow: visible;
  }
  .step-item:before{display: none;}
  

  
  /* Vertical line on mobile */
  .steps-container::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #E0E0E0;
    z-index: 1;
  }
  
  /* Step number and icon container */

  .step-item{padding: 0;padding-bottom: 25px;text-align: left;align-items: flex-start;padding-left: 50px;max-width: 360px;}
  .step-item::after, .steps-container::after {
    left: 16px;
    top: 0;
}
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right:0;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: none;
    margin-top: 0;
    background: transparent;
  }
  .step-number {
font-size: 20px;
  }
  .steps-container{padding-top: 0;}
  .how-to-use-bottom{gap: 0;}
  .how-to-use-text{padding: 25px;}
  
  /* Red dot on mobile - positioned on the vertical line */

  
  /* Step content wrapper */
  .step-content {
    flex: 1;
  }
  
}

/* Mobile devices - vertical layout */
@media (max-width: 767px) {
  .how-to-use-section {
    padding: 40px 0;
  }
  
  .how-to-use-section .section-heading {
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .how-to-use-intro {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0px;
  }
  

  
}