* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #def0f2;
  color: #222;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */

/* .service-hero{
    background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url('images/service-banner.jpg') center/cover no-repeat;
    padding:120px 0;
    color:#fff;
    text-align:center;
} */
#consult-hero {
  background-image: url(../images/services/service-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
      padding: 160px 0px 99px 0px;
}
.banner-services-img {
  position: relative;
}
.banner-inside-services-img {
    position: absolute;
    right: -7px;
    top: -1px;
}
.breadcrumb-service span,
.service-head {
  color: white;
}
.banner-service-img {
  position: relative;
}
.banner-inside-service-img {
  position: absolute;
  right: 42px;
  top: -38px;
}
.banner-inside-service-img img {
  width: 432px;
}

.breadcrumb-service {
  color: #9ed084;
}
.service-head {
  width: 710px;
  font-size: 50px !important;
  font-weight: 500 !important;
}
#consult-hero p.about-one__text-1 {
  width: 650px;
  color: white;
}
.banner-inside-services-img img {
  width: 392px;
}
.breadcrumb-service span,
.service-head {
  color: white;
}
.breadcrumb-service a {
  color: #9ed084;
}
.physio-treat-btn {
  padding-top: 20px;
}

.service-hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-hero p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  background: #60a63b;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #007bcc;
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #1d98c1;
  margin-bottom: 10px;
  line-height: 1.166;
  letter-spacing: -1.2px;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 40px;
  }
}

.section-title p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: #4a5568;
}

/* ABOUT SERVICE */

.service-about {
  padding: 100px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: rgba(29, 152, 193, 0.1);
  border-radius: 120px 0 120px 0;
  z-index: -1;
}

/* .about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 120px 0 120px 0; 
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
} */

.about-content h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #70c345;
  position: relative;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #70c345;
}

.about-content p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* BENEFITS SECTION - UNIQUE STYLE */
.benefits {
  background: linear-gradient(135deg, #f0fafa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(29, 152, 193, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(29, 152, 193, 0.12);
  border-color: #1d98c1;
}

.benefit-card i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(112, 195, 69, 0.12);
  color: #70c345;
  border-radius: 20px;
  font-size: 30px;
  display: inline-block;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover i {
  background: #70c345;
  color: #fff;
  transform: rotateY(360deg);
}

.benefit-card h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a2e35;
  margin-bottom: 15px;
}

/* CONDITIONS WE TREAT - GRID WITH ICONS */
.conditions {
  padding: 100px 0;
  background: #f0f9fa; /* Light background to make white cards pop */
}

.conditions .section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.conditions .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #60a63b;
  border-radius: 2px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
  gap: 25px;
  justify-items: center;
}

@media (max-width: 1100px) {
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for smaller desktops */
  }
}

@media (max-width: 991px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 600px) {
  .conditions-grid {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
}

.condition-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 30px; /* Added border radius */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(29, 152, 193, 0.1);
  text-align: center;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.condition-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1d98c1;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.condition-card:nth-child(even)::before {
  background: #60a63b;
}

.condition-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(29, 152, 193, 0.15);
  border-color: rgba(29, 152, 193, 0.3);
}

.condition-card:hover::before {
  transform: scaleX(1);
}

.condition-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(29, 152, 193, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: #1d98c1;
}
.condition-icon-box img{
  width: 35px;
}

.condition-card:nth-child(even) .condition-icon-box {
  background: rgba(96, 166, 59, 0.05);
}

.condition-icon-box i {
  font-size: 32px;
  color: #1d98c1;
  transition: all 0.3s ease;
}

.condition-card:nth-child(even) .condition-icon-box i {
  color: #60a63b;
}

.condition-card:hover .condition-icon-box {
 
  transform: rotate(10deg);
}

.condition-card:nth-child(even) .condition-icon-box {
  background: #60a63b;
}


.condition-card:hover .condition-icon-box i {
  color: #fff;
}

.condition-card h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a2e35;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.condition-card:hover h5 {
  color: #1d98c1;
}

.condition-card:nth-child(even):hover h5 {
  color: #60a63b;
}

/* PROCESS SECTION - STEPPED STYLE */
.process {
  background: #def0f2;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.process p,
.process h2 {
  color: #1d98c1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
}

.process-box {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-box span {
  width: 80px;
  height: 80px;
  background: #70c345;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  margin: 0 auto 30px;
  font-size: 32px;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
  box-shadow: 0 10px 20px rgba(112, 195, 69, 0.3);
  transition: all 0.3s ease;
}

.process-box:hover span {
  transform: translateY(-5px) rotate(10deg);
  background: #1d98c1;
  box-shadow: 0 10px 20px rgba(29, 152, 193, 0.3);
}

.process-box h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1d98c1;
}

.process-box p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  color: #1d98c1;
  line-height: 1.6;
}

/* CTA SECTION - PREMIUM STYLE */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background-image: url(../images/services/cta-service.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.cta-section h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.cta-section p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  #consult-hero {
    background-image: url(../images/services/mobile-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0px;
  }
  .banner-inside-service-img img {
    display: none;
  }
  .service-head {
    width: 350px;
  }
  .primary-btn-service {
    width: 67%;
    justify-content: center;
  }
  .service-about .row{
    flex-direction: column-reverse;
  }
  .rh-fade img{
    width: 69%;
  }
  .about-content h2{
    width: 350px;
  }
  .benefits {
    background: linear-gradient(135deg, #f0fafa 0%, #ffffff 100%);
    padding: 53px 0;
    position: relative;
    overflow: hidden;
}
.conditions {
    padding: 50px 0;
    background: #f0f9fa;
}
.process {
    background: #def0f2;
    color: #fff;
    padding: 60px 0;
    position: relative;
}
.cta-section h2{
    width: 351px;
    text-align: center;
    align-items: center;
}
.cta-section p{
    width: 318px;
}
.cta-section {
    padding: 88px 0px;
}
#consult-hero{
  padding: 95px 0px 56px 0px;
}
#consult-hero p.about-one__text-1 {
    width: 368px;
    color: white;
}
    .primary-btn-service {
        width: 100%;
        justify-content: center;
    }

 }
