:root{
      --primary:#08254c;
      --accent:#08254c;
      --text-dark:rgb(225, 34, 66);
      --header-dark:#08254c;
    }

    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:white
 ;
    }
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevents white gaps */
}


    
    header{
      background:#ffffff;
      box-shadow:0 2px 8px rgba(0,0,0,0.1);
      position:sticky;
      top:0;
      z-index:1000;
    }

    .nav-container{
      max-width:1200px;
      margin:auto;
     
      display:flex;
      align-items:center;
      justify-content:space-between; 
    }

    
    .logo{
      display:flex;
      align-items:center;
      gap:5px;
    }

    .logo img{
      height:110px;
      width:auto;
      border-radius:2px;
    }



    

    
    .nav-links{
      list-style:none;
      display:flex;
      align-items:center;
      gap:18px;
      white-space:nowrap;
    }
    .nav-links a{
      font-size: 20px !important;
      font-weight:600;
      color:var(--header-dark);
      text-decoration:none;
      padding:6px 8px;
       margin-left: 25px;
    }


    .nav-links > li{
      position:relative;
    }

    .nav-links > li > a{
      font-size:15px;
      font-weight:600;
      color:var(--primary);
      padding:6px 8px;
    }

    .nav-links > li > a:hover{
      color:rgb(225, 34, 66)
    }


    
.menu-toggle {
  display: none;
   margin-right: 20px; 
  
}


@media (max-width: 850px) {

  
  .menu-toggle {
    display: block;
    font-size: 34px;
    cursor: pointer;
    color: #08254c;
     margin-right: 15px; 
  }

 
  header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2000;
  }

  
  .nav-links {
    position: absolute;
    top: 100%;                 
    left: 0;
    width: 100%;
    background: white;
    display: none;           
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 12px 0;
  }

  .nav-links a {
    font-size: 18px;
    margin-left: 0 !important;
  }
  
}

@media (max-width: 850px) {

  .nav-container {
    position: relative;  
  }

  .menu-toggle {
    position: relative;
    z-index: 3000;
  }

  .nav-links {
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 2500;
  }
}

@media (max-width: 850px) {

  
  header {
    position: sticky;
    top: 0;
    z-index: 5000;
  }

  .nav-container {
    position: relative;  
  }

  
  .menu-toggle {
    position: relative;
    z-index: 6000;
    margin-left: auto;    
    padding-right: 15px;
  }

  
  .nav-links {
    position: absolute;
    top: 100%;           
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 5500;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .nav-links a {
    margin-left: 0 !important;
    font-size: 18px;
  }
}

@media (max-width: 850px) {

  .menu-toggle {
    display: block;
    font-size: 34px;
    cursor: pointer;
  }

  .nav-container {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none !important;
    flex-direction: column;
    padding: 15px 0;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links li {
    text-align: center;
    margin: 12px 0;
  }
}



.btn-appointment-nav {
  background: #08254c;       
  color: white !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #08452c;
  transition: 0.3s;
}

.btn-appointment-nav:hover {
  background: #DF125D;
 
  color:white !important;
  border-color: #DF125D;
 
  transform: scale(1.06);
}



/* ============================= */
/* CUSTOM SELECT WRAPPER */
/* ============================= */
.custom-select {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* ============================= */
/* SELECT BOX (SAME AS INPUT) */
/* ============================= */
.select-box {
  width: 100%;
  height: 46px;                 /* SAME HEIGHT AS INPUT */
  background: #ffffff;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  color: #333;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* HOVER / FOCUS */


/* ============================= */
/* DROPDOWN LIST */
/* ============================= */
.select-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;

  background: #ffffff;
  border-radius: 8px;
  padding: 6px 0;
  margin: 0;

  list-style: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  display: none;
  z-index: 9999;
}

/* ============================= */
/* OPTION ITEM */
/* ============================= */
.select-options li {
  padding: 10px 14px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

/* 🔥 HOVER COLOR (ONLY OPTION) */
.select-options li:hover {
  background: #DF125D
 ;
  color: #ffffff;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
  .select-box {
    height: 44px;
    font-size: 14px;
  }

  .select-options li {
    font-size: 14px;
    padding: 9px 12px;
  }
}







.services-dropdown {
  position: relative;
}


.services-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background :white;     
  border-radius: 12px;      
  padding: 10px 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 999;
}


.services-dropdown:hover .dropdown {
  display: block;
}


.services-dropdown .dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.service-item {
  display: block;
  padding: 10px 18px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  border-radius: 8px;
  margin: 3px 8px;
  white-space: nowrap; 
}



.service-item:hover {
  background: #08254c;      
  color: white !important;
  padding-left: 22px;      
}




    .dropdown li:hover{
      background:#eef7ff;
    }

    .doctors-section{
      max-width:1100px;
      margin:0 auto;
   
      
  margin-bottom: 0;
  padding-bottom: 0;
}

    


/* ===== TOP BAR ===== */
.top-bar {
  width: 100%;
  background: #08254c;
  color: #fff;
  font-size: 14px;
}

/* ✅ FIX: CENTER CONTAINER */
.top-bar-container {
  max-width: 1200px;      /* same as header */
  margin: auto;
  padding: 8px 20px;      /* space from screen edges */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT & RIGHT GROUPS */
.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ICON STYLE */
.top-bar i {
  margin-right: 6px;
  font-size: 14px;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 6px;
    padding: 6px 15px;
  }

  .top-left,
  .top-right {
    justify-content: center;
    gap: 15px;
    font-size: 13px;
  }
}


:root{
      --primary:#08254c;
      --accent:#08254c;
      --text-dark:rgb(225, 34, 66);
      --header-dark:#08254c;
    }

    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:white
 ;
    }
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevents white gaps */
}

    
    header{
      background:#ffffff;
      box-shadow:0 2px 8px rgba(0,0,0,0.1);
      position:sticky;
      top:0;
      z-index:1000;
    }

    .nav-container{
      max-width:1200px;
      margin:auto;
     
      display:flex;
      align-items:center;
      justify-content:space-between; 
    }

    
    .logo{
      display:flex;
      align-items:center;
      gap:5px;
    }

    .logo img{
      height:110px;
      width:auto;
      border-radius:2px;
    }



    

    
    .nav-links{
      list-style:none;
      display:flex;
      align-items:center;
      gap:18px;
      white-space:nowrap;
    }
    .nav-links a{
      font-size: 20px !important;
      font-weight:600;
      color:var(--header-dark);
      text-decoration:none;
      padding:6px 8px;
       margin-left: 25px;
    }


    .nav-links > li{
      position:relative;
    }

    .nav-links > li > a{
      font-size:15px;
      font-weight:600;
      color:var(--primary);
      padding:6px 8px;
    }

    .nav-links > li > a:hover{
      color:rgb(225, 34, 66)
    }


    
.menu-toggle {
  display: none;
   margin-right: 20px; 
  
}


@media (max-width: 850px) {

  
  .menu-toggle {
    display: block;
    font-size: 34px;
    cursor: pointer;
    color: #08254c;
     margin-right: 15px; 
  }

 
  header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2000;
  }

  
  .nav-links {
    position: absolute;
    top: 100%;                 
    left: 0;
    width: 100%;
    background: white;
    display: none;           
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 12px 0;
  }

  .nav-links a {
    font-size: 18px;
    margin-left: 0 !important;
  }
  
}

@media (max-width: 850px) {

  .nav-container {
    position: relative;  
  }

  .menu-toggle {
    position: relative;
    z-index: 3000;
  }

  .nav-links {
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 2500;
  }
}

@media (max-width: 850px) {

  
  header {
    position: sticky;
    top: 0;
    z-index: 5000;
  }

  .nav-container {
    position: relative;  
  }

  
  .menu-toggle {
    position: relative;
    z-index: 6000;
    margin-left: auto;    
    padding-right: 15px;
  }

  
  .nav-links {
    position: absolute;
    top: 100%;           
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 5500;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .nav-links a {
    margin-left: 0 !important;
    font-size: 18px;
  }
}

@media (max-width: 850px) {

  .menu-toggle {
    display: block;
    font-size: 34px;
    cursor: pointer;
  }

  .nav-container {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none !important;
    flex-direction: column;
    padding: 15px 0;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links li {
    text-align: center;
    margin: 12px 0;
  }
}



.btn-appointment-nav {
  background: #08254c;       
  color: white !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #08452c;
  transition: 0.3s;
}

.btn-appointment-nav:hover {
  background: #DF125D;
 
  color:white !important;
  border-color: #DF125D;
 
  transform: scale(1.06);
}



/* ============================= */
/* CUSTOM SELECT WRAPPER */
/* ============================= */
.custom-select {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* ============================= */
/* SELECT BOX (SAME AS INPUT) */
/* ============================= */
.select-box {
  width: 100%;
  height: 46px;                 /* SAME HEIGHT AS INPUT */
  background: #ffffff;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  color: #333;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* HOVER / FOCUS */


/* ============================= */
/* DROPDOWN LIST */
/* ============================= */
.select-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;

  background: #ffffff;
  border-radius: 8px;
  padding: 6px 0;
  margin: 0;

  list-style: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  display: none;
  z-index: 9999;
}

/* ============================= */
/* OPTION ITEM */
/* ============================= */
.select-options li {
  padding: 10px 14px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

/* 🔥 HOVER COLOR (ONLY OPTION) */
.select-options li:hover {
  background: #DF125D
 ;
  color: #ffffff;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
  .select-box {
    height: 44px;
    font-size: 14px;
  }

  .select-options li {
    font-size: 14px;
    padding: 9px 12px;
  }
}







.services-dropdown {
  position: relative;
}


.services-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background :white;     
  border-radius: 12px;      
  padding: 10px 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 999;
}


.services-dropdown:hover .dropdown {
  display: block;
}


.services-dropdown .dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.service-item {
  display: block;
  padding: 10px 18px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  border-radius: 8px;
  margin: 3px 8px;
  white-space: nowrap; 
}



.service-item:hover {
  background: #08254c;      
  color: white !important;
  padding-left: 22px;      
}




    .dropdown li:hover{
      background:#eef7ff;
    }

    .doctors-section{
      max-width:1100px;
      margin:0 auto;
   
      
  margin-bottom: 0;
  padding-bottom: 0;
}

    


/* ===== TOP BAR ===== */
.top-bar {
  width: 100%;
  background: #08254c;
  color: #fff;
  font-size: 14px;
}

/* ✅ FIX: CENTER CONTAINER */
.top-bar-container {
  max-width: 1200px;      /* same as header */
  margin: auto;
  padding: 8px 20px;      /* space from screen edges */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT & RIGHT GROUPS */
.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ICON STYLE */
.top-bar i {
  margin-right: 6px;
  font-size: 14px;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 6px;
    padding: 6px 15px;
  }

  .top-left,
  .top-right {
    justify-content: center;
    gap: 15px;
    font-size: 13px;
  }
}






/* SECTION */
.doctors-section-new {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* TITLE */
.section-tiitle {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color:#DF125D
 
}

/* CARD */
.doctor-card-new {
  display: flex;
  gap: 40px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 40px;
  align-items: center;
}

/* IMAGE */
.doctor-image-new {
  flex: 0 0 320px;           /* BIG IMAGE */
  display: flex;
  justify-content: center;
}

.doctor-image-new img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

/* CONTENT */
.doctor-content-new {
  flex: 1;
}

/* NAME */
.doctor-name-new {
  font-size: 26px;
  font-weight: 700;
  color: #DF125D
 ;
  margin-bottom: 6px;
}

/* DEGREE */
.doctor-degree-new {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 14px;
}

/* TAGS */
.doctor-tags-new {
  margin-bottom: 16px;
}

.doctor-tags-new span {
  display: inline-block;
  background: rgba(8, 37, 76, 0.08);
  color: #08254c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin: 4px 6px 4px 0;
}

/* ABOUT */
.doctor-about-new {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* SPECIALIZATION */
.doctor-special-title-new {
  font-size: 15px;
  font-weight: 700;
  color:#DF125D ;
  margin-bottom: 8px;
}

/* BULLET LIST */
.doctor-special-list-new {
  padding-left: 20px;
}

.doctor-special-list-new li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.doctor-special-list-new li::marker {
  color: #08254c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .doctor-card-new {
    flex-direction: column;
    text-align: center;
  }

  .doctor-image-new {
    width: 100%;
  }

  .doctor-image-new img {
    height: 320px;
  }

  .doctor-special-list-new {
    text-align: left;
    display: inline-block;
  }
}

                


    .know-btn {
    display: block;
    width: 150px;
    margin: 15px auto 20px;   
    padding: 10px 0;
    background: #08254c;
    color: white;
    font-weight: 600;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.know-btn:hover {
    background: #08254c;
    transform: scale(1.05);
}





.btn-appointment {
  background-color:#08254c;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.btn-appointment:hover {
  background-color: #09254c;
  transform: scale(1.05);
  
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); 
}





.nav-links {
  list-style: none !important;   
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links li {
  list-style: none !important;
}




    



.facility-section {
    width: 100%;
    background: #08254c;   
    margin-top: 50px;  
    padding: 60px 0;
  
}


.facility-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}



    @media(max-width:900px){
      .hero-card{
        flex-direction:column;
      }
      .hero-text h1{
        font-size:2.2rem;
      }
      .hero-carousel{
        height:300px; 
      }
    }


    custom-card:hover {
        transform: translateY(-5px);
    }
    .custom-card:hover { transform: translateY(-6px); box-shadow:0 14px 30px rgba(14,30,50,0.12); }
    .custom-card img {
        width:100%;
    height:170px;
    object-fit:cover;
    display:block;
    border-bottom:1px solid #eef2f6;
    }
    .card-heading {
         font-size:1.05rem;
    font-weight:700;
    padding:16px 16px 8px;
    color:#0b3a60;
    text-align:center;
  }
    .custom-card p {
        background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(14,30,50,0.08);
    transition: transform .22s ease, box-shadow .22s ease;
    text-align:left;
  }
    
 @media (max-width:767px){
    .custom-heading { font-size:1rem; padding:14px 12px 6px; }
    .ortho-image { height:150px; }
  }
    
    .ortho-card {
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(14,30,50,0.08);
    transition: transform .22s ease, box-shadow .22s ease;
    text-align:left;
  }
  .ortho-card:hover { transform: translateY(-6px); box-shadow:0 14px 30px rgba(14,30,50,0.12); }
  .ortho-heading {
    font-size:1.05rem;
    font-weight:700;
    padding:16px 16px 8px;
    color:#0b3a60;
    text-align:center;
  }
  .ortho-image {
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
    border-bottom:1px solid #eef2f6;
  }
  .ortho-text {
    padding:14px 16px 20px;
    color:#34495e;
    line-height:1.45;
    font-size:0.96rem;
  }


  @media (max-width:767px){
    .ortho-heading { font-size:1rem; padding:14px 12px 6px; }
    .ortho-image { height:150px; }
  }

  gyn-card {
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(14,30,50,0.08);
    transition:.22s;
  }
  .gyn-card:hover {
    transform: translateY(-6px); 
    box-shadow:0 14px 30px rgba(14,30,50,0.12);
  }
  .gyn-heading {
    font-size:1.05rem;
    font-weight:700;
    padding:16px;
    color:#0b3a60;
    text-align:center;
  }
  .gyn-image {
    width:100%;
    height:310px;
    object-fit:cover;
    border-bottom:1px solid #eef2f6;
  }
  .gyn-text {
    padding:16px 18px 22px;
    color:#34495e;
    line-height:1.45;
    font-size:0.96rem;
  }

.contact-wrapper{
      max-width:1100px;
      margin:40px auto;
      padding:20px;
    }

    h1{
      text-align:center;
      margin-bottom:10px;
      color:#004f9f;
    }
    .subtitle{
      text-align:center;
      margin-bottom:30px;
      font-size:14px;
      color:#555;
    }

    .contact-container{
      display:flex;
      gap:20px;
      align-items:flex-start;
    }

    
    .contact-form{
      flex:3;
      background:#ffffff;
      border-left:4px solid #00b9b5;
      padding:20px;
      box-shadow:0 2px 8px rgba(0,0,0,0.1);
    }

    .contact-form h2{
      margin-bottom:15px;
      font-size:20px;
      color:#004f9f;
    }

    .form-group{
      margin-bottom:15px;
    }

    label{
      display:block;
      margin-bottom:5px;
      font-size:14px;
      font-weight:bold;
    }

    input, textarea{
      width:100%;
      padding:10px;
      border:1px solid #d5e2ee;
      border-radius:4px;
      font-size:14px;
    }

    textarea{
      min-height:120px;
      resize:vertical;
    }

    .btn-submit{
      display:inline-block;
      padding:10px 22px;
      border:none;
      border-radius:4px;
      background:#00b9b5;
      color:#fff;
      font-size:14px;
      cursor:pointer;
    }
    .btn-submit:hover{
      opacity:0.9;
    }

  
    .contact-info{
      flex:2;
      display:flex;
      flex-direction:column;
      gap:15px;
    }
    .info-card{
      background:#ffffff;
      border-radius:6px;
      padding:15px 18px;
      box-shadow:0 2px 8px rgba(0,0,0,0.08);
      display:flex;
      align-items:flex-start;
      gap:10px;
    }

    .info-icon{
      font-size:24px;
      margin-top:3px;
      color:#00b9b5;
    }

    .info-text h3{
      font-size:16px;
      margin-bottom:4px;
      color:#004f9f;
    }

    .info-text p{
      font-size:14px;
      line-height:1.4;
    }

    









.review-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;      /* REAL bold */
  font-size: 36px;
  letter-spacing: 1px;
}





    

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
  padding: 20px 0;
}

.marquee-images {
  display: flex;
  gap: 20px;
  animation: slide 20s linear infinite;
}

.marquee-images img {
  height: 300px;
  width: 450px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}




.marquee-images {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}









/* REMOVE DEFAULT PAGE MARGINS */

/* FULL WIDTH TITLE BAR */
/* SERVICE TITLE BAR */
.service-title-bar {
  background-color: #08254c;   /* same green tone */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTENT CENTER */
.service-title-bar .title-content {
  text-align: center;
}

/* MAIN HEADING */
.service-title-bar .section-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* QUOTE / TAGLINE */
.service-title-bar .section-quote {
  font-size: 18px;
  color: #e9f7f6;
  margin: 0;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-title-bar .section-title {
    font-size: 26px;
  }

  .service-title-bar .section-quote {
    font-size: 15px;
  }
}


/* ============================= */
/* SERVICE CARD */
/* ============================= */
.service-card {
  background: #ffffff;
  border-radius: 16px;
 
  text-align: center;
 padding: 20px 20px -20px;
  /* BLUE BORDER LIKE 1st CARD */
  border: 2px solid #08254c;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.25s ease-in-out;

  margin-top: 15px;
  margin-bottom: 30px;

  overflow: hidden;              /* VERY IMPORTANT */
}

/* ============================= */
/* TOP BLUE HEADER */
/* ============================= */
.service-card h5 {
  font-size: 18px;                 /* slightly bigger text */
  font-weight: 700;
  color: #ffffff;
  background-color: #08254c;

  padding: 26px 12px;              /* 🔥 BIGGER SPACE FOR BG */
  margin: -15px -15px 0 -15px;

  border-radius: 14px 14px 0 0;
  line-height: 1.4;

  text-align: center;              /* 🔥 TEXT IN MIDDLE */
  min-height: 90px;                /* 🔥 SAME HEIGHT FOR ALL */
  display: flex;                   /* center vertically */
  align-items: center;
  justify-content: center;
}


/* ============================= */
/* IMAGE – TOUCHES CARD BORDER */
/* ============================= */
.service-card img {
  width: calc(100% + 30px);      /* extend image */
  height: 180px;
  object-fit: cover;

  border: none;                  /* NO IMAGE BORDER */
  border-radius: 0;              /* flat like reference */

  margin: 0 -15px 14px -15px;    /* stick to border */
}

/* ============================= */
/* DESCRIPTION */
/* ============================= */
.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.45;
  margin-bottom: 16px;
}

/* ============================= */
/* KNOW MORE BUTTON */
/* ============================= */
.know-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #DF125D
 ;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.3s ease;
  margin-bottom: 0; /* FIX */
}


.know-btn:hover {
  background: #08254c;
  transform: scale(1.05);
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
  .service-card img {
    height: 160px;
  }

  .service-card h5 {
    font-size: 16px;
  }
}

.know-btn {
    display: block;
    margin: 20px auto 40px;
    width: fit-content;
    padding: 10px 18px;
    background:#DF125D
 ;

    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}

.know-btn:hover {
    background: #08252c;
}



.gallery-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #08254c;
    margin-top:50px;
}



/* ================= SECTION ================= */
.happy-clients {
  padding: 60px 0;
  background: #ffffff;
  font-family: 'Arial', sans-serif;
}

.clients-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: #DF125D
 ; /* Teal color from image */
  text-transform: uppercase;
 
  margin-bottom: 40px;
}

/* ================= LAYOUT ================= */
.clients-layout {
  display: flex;
  gap: 25px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= LEFT SUMMARY CARD (TEAL) ================= */
.google-summary {
  flex: 0 0 280px;
}

.google-card {
  background: #d1eded; /* Light teal background from image */
  border-radius: 20px;
  padding: 30px 20px;
  text-align: left; /* Left aligned content */
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hospital-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.hospital-icon {
  width: 40px;
  height: 40px;
}


.hospital-icon-centered {
  width: 50px;
  height: auto;
  display: block;      /* Makes it a block to allow margin centering */
  margin: 0 auto 15px; /* 0 top/bottom, auto left/right, 15px bottom spacing */
}
.google-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #08254c;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.rating-score {
  font-size: 24px;
  font-weight: 800;
  color: #2e7d32;
}

.stars {
  color: #ff9800;
  font-size: 16px;
}

.review-info, .powered {
  font-size: 14px;
  color: #444;
  margin: 5px 0;
}

/* ORANGE BUTTON FROM IMAGE */
.google-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background:#DF125D
 ; /* Vibrant orange */
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 140, 66, 0.3);
}

/* ================= RIGHT CARDS (WHITE) ================= */
.reviews-scroll {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}

.review-card {
  width: 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #b2dfdb;
  color: #08254c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.small-google-logo {
  width: 18px;
}

.review-card h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.time {
  display: block;
  font-size: 12px;
  color: #777;
}

.review-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================= RESET (IMPORTANT) ================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ================= FULL WIDTH APPOINTMENT SECTION ================= */
.appointment-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: #eef5ff;          /* FULL WIDTH BG */
  padding: 70px 0;
}

/* ================= INNER CONTAINER ================= */
.appointment-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= TITLES ================= */
.appoint-title {
  font-size: 24px;
  font-weight: 700;
  color: rgb(225, 34, 66);
  margin-bottom: 18px;
}

/* ================= CONTACT DETAILS BOX ================= */
.contact-details-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ICON + TEXT LEFT ALIGNED */
.contact-details-box p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ICON COLOR */
.contact-details-box i {
  font-size: 20px;
  color: #DF125D;
  margin-top: 3px;
}

/* ================= MAP ================= */
.map-box {
  margin-top: 18px;
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: none;
}

/* ================= APPOINTMENT FORM ================= */
.appointment-form {
  background: #08254c;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* FORM TITLE WHITE */
.appointment-form .appoint-title {
  color: #ffffff;
}

/* INPUTS */
.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  margin-bottom: 14px;
  font-size: 14px;
}

/* ================= SUBMIT BUTTON ================= */
.submit-btn {
  background: #DF125D;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #b10f4b;
  transform: translateY(-2px);
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  .appointment-section {
    padding: 45px 0;
  }

  .appoint-title {
    font-size: 20px;
    text-align: center;
  }

  .contact-details-box {
    padding: 22px;
    margin-bottom: 20px;
  }

  .contact-details-box p {
    font-size: 15px;
  }

  .contact-details-box i {
    font-size: 18px;
  }

  .map-box iframe {
    height: 240px;
  }

  .appointment-form {
    padding: 24px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}








/* SECTION */
.stats-section {
 
  padding: 60px 0;
}

/* CARD */
.stat-card {
  padding: 35px 20px;
  background: linear-gradient(135deg, #08254c, #0b3a75); /* BLUE BOX */
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER */
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

/* NUMBER */
.stat-card h2 {
  color: #ffffff;        /* WHITE TEXT */
 font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 6px;
}

/* LABEL */
.stat-card p {
  color: #ffffff;        /* WHITE TEXT */
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stat-card h2 {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 0.95rem;
  }
}


/* ================= FACILITY SECTION (FULL WIDTH) ================= */

/* Reset (important for full width) */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* FULL WIDTH BLUE BACKGROUND */
.facility-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(180deg, #08254c, #061c36);
  padding: 70px 0;
  margin-top: 0px;
}

/* INNER CONTENT CENTER */
.facility-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.facility-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 45px;
  text-align: center;
}

/* CARD */
.facility-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-6px);
  background: #eef6ff;
}

/* ICON */
.facility-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* TEXT */
.facility-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: #08254c;
  margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .facility-section {
    padding: 55px 0;
  }

  .facility-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .facility-wrapper {
    padding: 0 16px;
  }

  .facility-card {
    padding: 22px 14px;
  }

  .facility-icon {
    width: 48px;
    height: 48px;
  }

  .facility-card h5 {
    font-size: 15px;
  }
}




.icon {
  width: 70px;
  height: 70px;
}









/* IMPORTANT RESET (one time only) */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ================= FULL WIDTH SECTION ================= */
.why-choose-us {
  width: 100vw;                           /* 🔑 FORCE FULL SCREEN */
  margin-left: calc(-50vw + 50%);         /* 🔑 BREAK OUT OF CONTAINER */
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f9fc, #eef4f8);
}

/* ================= INNER CONTENT ================= */
.why-choose-us .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* ================= HEADING ================= */
.why-choose-us h2 {
  font-size: 36px;
  font-weight: 800;
  color: #DF125D;
  margin-bottom: 12px;
}

/* ================= TAGLINE ================= */
.why-choose-us .tagline {
  font-size: 16px;
  font-weight: 600;
  color: #08254c;
  margin-bottom: 14px;
  text-align: center;
}

/* ================= DESCRIPTION ================= */
.why-choose-us .desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-us h2 {
    font-size: 28px;
  }

  .why-choose-us .desc {
    font-size: 15px;
  }
}


/* ================= FEATURES GRID ================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;                 /* 🔥 tighter spacing */
  max-width: 1050px;         /* 🔥 smaller grid */
  margin: 0 auto;
}

/* ================= FEATURE CARD ================= */
.feature-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;        /* 🔥 smaller cards */
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1.5px solid rgb(255, 205, 210);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* HOVER */
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(8,37,76,0.18);
}

/* ================= ICON ================= */
.feature-box i {
  font-size: 34px;
  color: #DF125D
 ;
  flex-shrink: 0;
}

/* ================= CARD TITLE ================= */
.feature-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #08254c;
  margin-bottom: 6px;
}

/* ================= CARD TEXT ================= */
.feature-box p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .why-choose-us {
    padding: 60px 15px;
  }

  .why-choose-us h2 {
    font-size: 28px;
  }

  .desc {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-box {
    padding: 18px 16px;
  }

  .feature-box i {
    font-size: 30px;
  }

  .feature-box h4 {
    font-size: 15px;
  }

  .feature-box p {
    font-size: 13px;
  }


}






/* ================= RESET ================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ================= SECTION ================= */
.srvv-section {
  width: 100%;
  padding: 80px 0;
}

/* ================= HEADING WITH BG ================= */
.section-heading {
  display: inline-block;
  margin: 0 auto 55px;
  padding: 14px 38px;
  background: #08254c;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 40px;
  text-align: center;
}

/* CENTER HEADING */
.section-heading-wrap {
  text-align: center;
}

/* ================= WRAPPER ================= */
.ortho-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* ================= GRID ================= */
.ortho-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

/* ================= CARD ================= */
.ortho-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid rgb(255,205,210);

  /* ✅ PROFESSIONAL SHADOW */
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 8px rgba(0, 0, 0, 0.04);

  transition: all 0.35s ease;
  position: relative;
}

/* TOP ACCENT LINE (KEEP BRAND IDENTITY) */
.ortho-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #DF125D;
  width: 100%;
  height: 4px;
 
}

/* HOVER */
.ortho-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.14),
    0 6px 14px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGE ================= */
.ortho-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

/* ================= CONTENT ================= */
.ortho-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #08254c;
  text-align: center;
  padding: 18px 14px 10px;
  margin: 0;
}

.ortho-card p {
  font-size: 14px;
  color: #555;
  text-align: center;
  padding: 0 18px 18px;
  line-height: 1.6;
  flex-grow: 1;
}

/* ================= BUTTON ================= */
.ortho-btn {
  align-self: center;
  margin-bottom: 22px;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  background: #DF125D;
  color: #ffffff;
  border: none;

  transition: all 0.3s ease;
}

.ortho-btn:hover {
  background: #08254c;
  transform: scale(1.05);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .ortho-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading {
    font-size: 28px;
    padding: 12px 30px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .section-heading {
    font-size: 24px;
    padding: 10px 26px;
  }

  .ortho-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .ortho-card img {
    height: 165px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .ortho-grid {
    grid-template-columns: 1fr;
  }

  .ortho-card img {
    height: 155px;
  }

  .ortho-btn {
    font-size: 13px;
    padding: 8px 22px;
  }
}












/* TITLE */
.main-title {
  color:#DF125D
 ;
  letter-spacing: 1px;

    
  
  margin-top: 60px !important;
}





/* SECTION */
.srv-section {
  background: #fff;
  padding: 40px 20px 90px;
  text-align: center;
  
  padding-top: 0;
}



.srv-heading {
  font-size: 18px;
  margin-bottom: 45px;
  color: #000;
}

/* GRID */
.srv-grid {
  max-width: 1100px;
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* SERVICE CARD */
.srv-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.srv-card:nth-child(2) { animation-delay: 0.2s; }
.srv-card:nth-child(3) { animation-delay: 0.4s; }
.srv-card:nth-child(4) { animation-delay: 0.6s; }

.srv-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.srv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

.srv-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.srv-content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.left-align {
  align-items: flex-start;
  text-align: left;
}

.right-align {
  align-items: flex-end;
  text-align: right;
}

.srv-content h4 {
  color: #ffffff;
  font-size: 25px;          /* INCREASED – matches reference image */
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 22px;
  
  letter-spacing: 0.3px;
}


.srv-content button {
  background: #DF125D;
  border: none;
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.srv-content button:hover {
  background: #08254c;
}

/* CENTER CIRCLE */
.srv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  padding: 28px;
  z-index: 5;
  animation: scaleIn 0.9s ease forwards;
}

.srv-center span {
  font-size: 12px;
  color: #DF125D;
  font-weight: bold;
}

.srv-center h2 {
  font-size: 22px;
  margin: 10px 0;
  color: #08254c;
}

.srv-center p {
  font-size: 13px;
  color:black
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }

  .srv-center {
    position: static;
    transform: none;
    margin: 30px auto;
  }

  .right-align {
    align-items: flex-start;
    text-align: left;
  }
}





/* SECTION BACKGROUND */
.specialised-section {
  width: 100%;
  padding: 100px 20px;
  text-align: center;
}

/* TITLE */
.spec-title {
  font-size: 38px;            /* BIGGER */
  font-weight: 800;
 
  margin-bottom: 15px;
}

/* SUB TITLE */
.spec-sub {
  max-width: 820px;
  margin: 0 auto 80px;
  font-size: 18px;            /* BIGGER */
  line-height: 1.8;
  color: #333;
}

/* CIRCLE WRAPPER */
.spec-circles {
  display: flex;
  justify-content: center;
  gap: 100px;                 /* MORE GAP */
  flex-wrap: wrap;
}

/* MAIN CIRCLE */
.spec-circle {
  width: 480px;               /* BIGGER CIRCLE */
  height: 480px;              /* BIGGER CIRCLE */
  border-radius: 50%;
  background: #08254c;
  color: #fff;
  padding: 55px 50px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 
    0 0 0 14px #e0e0e0,
    0 26px 55px rgba(0,0,0,0.35);

  transition: transform 0.4s ease;
}

.spec-circle:hover {
  transform: translateY(-10px);
}

/* CIRCLE HEADING */
.spec-circle h3 {
  font-size: 30px;            /* BIGGER */
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

/* LIST */
.spec-circle ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* LIST ITEMS */
.spec-circle ul li {
  font-size: 17px;            /* BIGGER */
  padding: 8px 0;
  color: #f1c84b;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
}

.spec-circle ul li:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .spec-circles {
    gap: 50px;
  }

  .spec-circle {
    width: 340px;
    height: 340px;
    padding: 35px 28px;
  }

  .spec-circle h3 {
    font-size: 24px;
  }

  .spec-circle ul li {
    font-size: 14px;
  }

  .spec-title {
    font-size: 28px;
  }

  .spec-sub {
    font-size: 15px;
  }
}






/* ============================= */
/* SERVICE BUTTONS (MIDDLE) */
/* ============================= */

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-buttons a {
    background-color: rgba(224, 224, 224, 0.9);
    color: #333;

    padding: 10px 22px;
    border-radius: 50px;

    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
    white-space: nowrap;
}

.service-buttons a:hover {
    background-color: #ffffff;
}

/* ============================= */
/* BOOK APPOINTMENT BUTTON */
/* ============================= */

.appointment-btn {
    display: inline-block;
    background-color: #08254c;
    color: #ffffff;

    padding: 14px 42px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;

    transition: 0.3s ease;
}

.appointment-btn:hover {
    background-color: #0b3a70;
    transform: scale(1.05);
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
    .hero-services {
        height: 85vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .service-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 20px;
    }

    .service-buttons a {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .appointment-btn {
        font-size: 0.95rem;
        padding: 12px 30px;
    }
}













/* SECTION */
.doctors-section-new {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* TITLE */
.section-tiitle {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color:#DF125D
 
}

/* CARD */
.doctor-card-new {
  display: flex;
  gap: 40px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 40px;
  align-items: center;
}

/* IMAGE */
.doctor-image-new {
  flex: 0 0 320px;           /* BIG IMAGE */
  display: flex;
  justify-content: center;
}

.doctor-image-new img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

/* CONTENT */
.doctor-content-new {
  flex: 1;
}

/* NAME */
.doctor-name-new {
  font-size: 26px;
  font-weight: 700;
  color: #DF125D
 ;
  margin-bottom: 6px;
}

/* DEGREE */
.doctor-degree-new {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 14px;
}

/* TAGS */
.doctor-tags-new {
  margin-bottom: 16px;
}

.doctor-tags-new span {
  display: inline-block;
  background: rgba(8, 37, 76, 0.08);
  color: #08254c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin: 4px 6px 4px 0;
}

/* ABOUT */
.doctor-about-new {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* SPECIALIZATION */
.doctor-special-title-new {
  font-size: 15px;
  font-weight: 700;
  color:#DF125D ;
  margin-bottom: 8px;
}

/* BULLET LIST */
.doctor-special-list-new {
  padding-left: 20px;
}

.doctor-special-list-new li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.doctor-special-list-new li::marker {
  color: #08254c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .doctor-card-new {
    flex-direction: column;
    text-align: center;
  }

  .doctor-image-new {
    width: 100%;
  }

  .doctor-image-new img {
    height: 320px;
  }

  .doctor-special-list-new {
    text-align: left;
    display: inline-block;
  }
}

                


    .know-btn {
    display: block;
    width: 150px;
    margin: 15px auto 20px;   
    padding: 10px 0;
    background: #08254c;
    color: white;
    font-weight: 600;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.know-btn:hover {
    background: #08254c;
    transform: scale(1.05);
}




.nav-links {
  list-style: none !important;   
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links li {
  list-style: none !important;
}




    



.facility-section {
    width: 100%;
    background: #08254c;   
    margin-top: 50px;  
    padding: 60px 0;
  
}


.facility-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}



    @media(max-width:900px){
      .hero-card{
        flex-direction:column;
      }
      .hero-text h1{
        font-size:2.2rem;
      }
      .hero-carousel{
        height:300px; 
      }
    }


    custom-card:hover {
        transform: translateY(-5px);
    }
    .custom-card:hover { transform: translateY(-6px); box-shadow:0 14px 30px rgba(14,30,50,0.12); }
    .custom-card img {
        width:100%;
    height:170px;
    object-fit:cover;
    display:block;
    border-bottom:1px solid #eef2f6;
    }
    .card-heading {
         font-size:1.05rem;
    font-weight:700;
    padding:16px 16px 8px;
    color:#0b3a60;
    text-align:center;
  }
    .custom-card p {
        background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(14,30,50,0.08);
    transition: transform .22s ease, box-shadow .22s ease;
    text-align:left;
  }
    
 @media (max-width:767px){
    .custom-heading { font-size:1rem; padding:14px 12px 6px; }
    .ortho-image { height:150px; }
  }
    
    .ortho-card {
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(14,30,50,0.08);
    transition: transform .22s ease, box-shadow .22s ease;
    text-align:left;
  }
  .ortho-card:hover { transform: translateY(-6px); box-shadow:0 14px 30px rgba(14,30,50,0.12); }
  .ortho-heading {
    font-size:1.05rem;
    font-weight:700;
    padding:16px 16px 8px;
    color:#0b3a60;
    text-align:center;
  }
  .ortho-image {
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
    border-bottom:1px solid #eef2f6;
  }
  .ortho-text {
    padding:14px 16px 20px;
    color:#34495e;
    line-height:1.45;
    font-size:0.96rem;
  }


  @media (max-width:767px){
    .ortho-heading { font-size:1rem; padding:14px 12px 6px; }
    .ortho-image { height:150px; }
  }

  gyn-card {
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(14,30,50,0.08);
    transition:.22s;
  }
  .gyn-card:hover {
    transform: translateY(-6px); 
    box-shadow:0 14px 30px rgba(14,30,50,0.12);
  }
  .gyn-heading {
    font-size:1.05rem;
    font-weight:700;
    padding:16px;
    color:#0b3a60;
    text-align:center;
  }
  .gyn-image {
    width:100%;
    height:310px;
    object-fit:cover;
    border-bottom:1px solid #eef2f6;
  }
  .gyn-text {
    padding:16px 18px 22px;
    color:#34495e;
    line-height:1.45;
    font-size:0.96rem;
  }

.contact-wrapper{
      max-width:1100px;
      margin:40px auto;
      padding:20px;
    }

    h1{
      text-align:center;
      margin-bottom:10px;
      color:#004f9f;
    }
    .subtitle{
      text-align:center;
      margin-bottom:30px;
      font-size:14px;
      color:#555;
    }

    .contact-container{
      display:flex;
      gap:20px;
      align-items:flex-start;
    }

    
    .contact-form{
      flex:3;
      background:#ffffff;
      border-left:4px solid #00b9b5;
      padding:20px;
      box-shadow:0 2px 8px rgba(0,0,0,0.1);
    }

    .contact-form h2{
      margin-bottom:15px;
      font-size:20px;
      color:#004f9f;
    }

    .form-group{
      margin-bottom:15px;
    }

    label{
      display:block;
      margin-bottom:5px;
      font-size:14px;
      font-weight:bold;
    }

    input, textarea{
      width:100%;
      padding:10px;
      border:1px solid #d5e2ee;
      border-radius:4px;
      font-size:14px;
    }

    textarea{
      min-height:120px;
      resize:vertical;
    }

    .btn-submit{
      display:inline-block;
      padding:10px 22px;
      border:none;
      border-radius:4px;
      background:#00b9b5;
      color:#fff;
      font-size:14px;
      cursor:pointer;
    }
    .btn-submit:hover{
      opacity:0.9;
    }

  
    .contact-info{
      flex:2;
      display:flex;
      flex-direction:column;
      gap:15px;
    }
    .info-card{
      background:#ffffff;
      border-radius:6px;
      padding:15px 18px;
      box-shadow:0 2px 8px rgba(0,0,0,0.08);
      display:flex;
      align-items:flex-start;
      gap:10px;
    }

    .info-icon{
      font-size:24px;
      margin-top:3px;
      color:#00b9b5;
    }

    .info-text h3{
      font-size:16px;
      margin-bottom:4px;
      color:#004f9f;
    }

    .info-text p{
      font-size:14px;
      line-height:1.4;
    }

    









.review-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;      /* REAL bold */
  font-size: 36px;
  letter-spacing: 1px;
}





    

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
  padding: 20px 0;
}

.marquee-images {
  display: flex;
  gap: 20px;
  animation: slide 20s linear infinite;
}

.marquee-images img {
  height: 300px;
  width: 450px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}




.marquee-images {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}









/* REMOVE DEFAULT PAGE MARGINS */

/* FULL WIDTH TITLE BAR */
/* SERVICE TITLE BAR */
.service-title-bar {
  background-color: #08254c;   /* same green tone */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTENT CENTER */
.service-title-bar .title-content {
  text-align: center;
}

/* MAIN HEADING */
.service-title-bar .section-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* QUOTE / TAGLINE */
.service-title-bar .section-quote {
  font-size: 18px;
  color: #e9f7f6;
  margin: 0;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-title-bar .section-title {
    font-size: 26px;
  }

  .service-title-bar .section-quote {
    font-size: 15px;
  }
}


/* ============================= */
/* SERVICE CARD */
/* ============================= */
.service-card {
  background: #ffffff;
  border-radius: 16px;
 
  text-align: center;
 padding: 20px 20px -20px;
  /* BLUE BORDER LIKE 1st CARD */
  border: 2px solid #08254c;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.25s ease-in-out;

  margin-top: 15px;
  margin-bottom: 30px;

  overflow: hidden;              /* VERY IMPORTANT */
}

/* ============================= */
/* TOP BLUE HEADER */
/* ============================= */
.service-card h5 {
  font-size: 18px;                 /* slightly bigger text */
  font-weight: 700;
  color: #ffffff;
  background-color: #08254c;

  padding: 26px 12px;              /* 🔥 BIGGER SPACE FOR BG */
  margin: -15px -15px 0 -15px;

  border-radius: 14px 14px 0 0;
  line-height: 1.4;

  text-align: center;              /* 🔥 TEXT IN MIDDLE */
  min-height: 90px;                /* 🔥 SAME HEIGHT FOR ALL */
  display: flex;                   /* center vertically */
  align-items: center;
  justify-content: center;
}


/* ============================= */
/* IMAGE – TOUCHES CARD BORDER */
/* ============================= */
.service-card img {
  width: calc(100% + 30px);      /* extend image */
  height: 180px;
  object-fit: cover;

  border: none;                  /* NO IMAGE BORDER */
  border-radius: 0;              /* flat like reference */

  margin: 0 -15px 14px -15px;    /* stick to border */
}

/* ============================= */
/* DESCRIPTION */
/* ============================= */
.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.45;
  margin-bottom: 16px;
}

/* ============================= */
/* KNOW MORE BUTTON */
/* ============================= */
.know-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #DF125D
 ;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.3s ease;
  margin-bottom: 0; /* FIX */
}


.know-btn:hover {
  background: #08254c;
  transform: scale(1.05);
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
  .service-card img {
    height: 160px;
  }

  .service-card h5 {
    font-size: 16px;
  }
}

.know-btn {
    display: block;
    margin: 20px auto 40px;
    width: fit-content;
    padding: 10px 18px;
    background:#DF125D
 ;

    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}

.know-btn:hover {
    background: #08252c;
}



.gallery-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #08254c;
    margin-top:50px;
}



/* ================= SECTION ================= */
/* ================= SECTION ================= */
.happy-clients {
  padding: 60px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.clients-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: #DF125D;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ================= LAYOUT ================= */
.clients-layout {
  display: flex;
  gap: 25px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= LEFT GOOGLE CARD ================= */
.google-summary {
  flex: 0 0 280px;
}

.google-card {
  background: #d1eded;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hospital-icon-centered {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  display: block;
}

.google-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #08254c;
  margin-bottom: 8px;
}

.rating-score {
  font-size: 24px;
  font-weight: 800;
  color: #2e7d32;
}

.stars {
  color: #ff9800;
  font-size: 16px;
}

.review-info,
.powered {
  font-size: 14px;
  color: #444;
}

.google-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #DF125D;
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

/* ================= REVIEWS SCROLL ================= */
.reviews-scroll {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}

.review-card {
  width: 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.review-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #b2dfdb;
  color: #08254c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.review-card h4 {
  font-size: 16px;
  margin: 0;
}

.time {
  font-size: 12px;
  color: #777;
}

.review-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
}

@keyframes scrollReviews {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  .happy-clients {
    padding: 50px 0;
  }

  .clients-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .clients-layout {
    flex-direction: column;
    gap: 30px;
  }

  .google-summary {
    width: 100%;
    max-width: 360px;
  }

  .reviews-scroll {
    width: 100%;
  }

  .reviews-track {
    animation-duration: 60s; /* slower for mobile */
  }

  .review-card {
    width: 260px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .clients-title {
    font-size: 22px;
  }

  .google-card h3 {
    font-size: 16px;
  }

  .review-card {
    width: 240px;
    padding: 16px;
  }

  .review-card p {
    font-size: 13px;
  }
}

/* ================= RESET (IMPORTANT) ================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ================= FULL WIDTH APPOINTMENT SECTION ================= */
.appointment-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: #eef5ff;          /* FULL WIDTH BG */
  padding: 70px 0;
}

/* ================= INNER CONTAINER ================= */
.appointment-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= TITLES ================= */
.appoint-title {
  font-size: 24px;
  font-weight: 700;
  color: rgb(225, 34, 66);
  margin-bottom: 18px;
}

/* ================= CONTACT DETAILS BOX ================= */
.contact-details-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ICON + TEXT LEFT ALIGNED */
.contact-details-box p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ICON COLOR */
.contact-details-box i {
  font-size: 20px;
  color: #DF125D;
  margin-top: 3px;
}

/* ================= MAP ================= */
.map-box {
  margin-top: 18px;
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: none;
}

/* ================= APPOINTMENT FORM ================= */
.appointment-form {
  background: #08254c;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* FORM TITLE WHITE */
.appointment-form .appoint-title {
  color: #ffffff;
}

/* INPUTS */
.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  margin-bottom: 14px;
  font-size: 14px;
}

/* ================= SUBMIT BUTTON ================= */
.submit-btn {
  background: #DF125D;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #b10f4b;
  transform: translateY(-2px);
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  .appointment-section {
    padding: 45px 0;
  }

  .appoint-title {
    font-size: 20px;
    text-align: center;
  }

  .contact-details-box {
    padding: 22px;
    margin-bottom: 20px;
  }

  .contact-details-box p {
    font-size: 15px;
  }

  .contact-details-box i {
    font-size: 18px;
  }

  .map-box iframe {
    height: 240px;
  }

  .appointment-form {
    padding: 24px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}








/* SECTION */
.stats-section {
 
  padding: 60px 0;
}

/* CARD */
.stat-card {
  padding: 35px 20px;
  background: linear-gradient(135deg, #08254c, #0b3a75); /* BLUE BOX */
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER */
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

/* NUMBER */
.stat-card h2 {
  color: #ffffff;        /* WHITE TEXT */
 font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 6px;
}

/* LABEL */
.stat-card p {
  color: #ffffff;        /* WHITE TEXT */
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stat-card h2 {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 0.95rem;
  }
}


/* ================= FACILITY SECTION (FULL WIDTH) ================= */

/* Reset (important for full width) */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* FULL WIDTH BLUE BACKGROUND */
.facility-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(180deg, #08254c, #061c36);
  padding: 70px 0;
  margin-top: 0px;
}

/* INNER CONTENT CENTER */
.facility-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.facility-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 45px;
  text-align: center;
}

/* CARD */
.facility-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-6px);
  background: #eef6ff;
}

/* ICON */
.facility-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* TEXT */
.facility-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: #08254c;
  margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .facility-section {
    padding: 55px 0;
  }

  .facility-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .facility-wrapper {
    padding: 0 16px;
  }

  .facility-card {
    padding: 22px 14px;
  }

  .facility-icon {
    width: 48px;
    height: 48px;
  }

  .facility-card h5 {
    font-size: 15px;
  }
}




.icon {
  width: 70px;
  height: 70px;
}









/* IMPORTANT RESET (one time only) */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ================= FULL WIDTH SECTION ================= */
.why-choose-us {
  width: 100vw;                           /* 🔑 FORCE FULL SCREEN */
  margin-left: calc(-50vw + 50%);         /* 🔑 BREAK OUT OF CONTAINER */
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f9fc, #eef4f8);
}

/* ================= INNER CONTENT ================= */
.why-choose-us .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* ================= HEADING ================= */
.why-choose-us h2 {
  font-size: 36px;
  font-weight: 800;
  color: #DF125D;
  margin-bottom: 12px;
}

/* ================= TAGLINE ================= */
.why-choose-us .tagline {
  font-size: 16px;
  font-weight: 600;
  color: #08254c;
  margin-bottom: 14px;
  text-align: center;
}

/* ================= DESCRIPTION ================= */
.why-choose-us .desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-us h2 {
    font-size: 28px;
  }

  .why-choose-us .desc {
    font-size: 15px;
  }
}


/* ================= FEATURES GRID ================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;                 /* 🔥 tighter spacing */
  max-width: 1050px;         /* 🔥 smaller grid */
  margin: 0 auto;
}

/* ================= FEATURE CARD ================= */
.feature-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;        /* 🔥 smaller cards */
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1.5px solid rgb(255, 205, 210);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* HOVER */
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(8,37,76,0.18);
}

/* ================= ICON ================= */
.feature-box i {
  font-size: 34px;
  color: #DF125D
 ;
  flex-shrink: 0;
}

/* ================= CARD TITLE ================= */
.feature-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #08254c;
  margin-bottom: 6px;
}

/* ================= CARD TEXT ================= */
.feature-box p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .why-choose-us {
    padding: 60px 15px;
  }

  .why-choose-us h2 {
    font-size: 28px;
  }

  .desc {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-box {
    padding: 18px 16px;
  }

  .feature-box i {
    font-size: 30px;
  }

  .feature-box h4 {
    font-size: 15px;
  }

  .feature-box p {
    font-size: 13px;
  }


}






/* ================= RESET ================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ================= SECTION ================= */
.srvv-section {
  width: 100%;
  padding: 80px 0;
}

/* ================= HEADING WITH BG ================= */
.section-heading {
  display: inline-block;
  margin: 0 auto 55px;
  padding: 14px 38px;
  background: #08254c;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 40px;
  text-align: center;
}

/* CENTER HEADING */
.section-heading-wrap {
  text-align: center;
}

/* ================= WRAPPER ================= */
.ortho-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* ================= GRID ================= */
.ortho-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

/* ================= CARD ================= */
.ortho-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid rgb(255,205,210);

  /* ✅ PROFESSIONAL SHADOW */
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 8px rgba(0, 0, 0, 0.04);

  transition: all 0.35s ease;
  position: relative;
}

/* TOP ACCENT LINE (KEEP BRAND IDENTITY) */
.ortho-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #DF125D;
  width: 100%;
  height: 4px;
 
}

/* HOVER */
.ortho-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.14),
    0 6px 14px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGE ================= */
.ortho-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

/* ================= CONTENT ================= */
.ortho-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #08254c;
  text-align: center;
  padding: 18px 14px 10px;
  margin: 0;
}

.ortho-card p {
  font-size: 14px;
  color: #555;
  text-align: center;
  padding: 0 18px 18px;
  line-height: 1.6;
  flex-grow: 1;
}

/* ================= BUTTON ================= */
.ortho-btn {
  align-self: center;
  margin-bottom: 22px;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  background: #DF125D;
  color: #ffffff;
  border: none;

  transition: all 0.3s ease;
}

.ortho-btn:hover {
  background: #08254c;
  transform: scale(1.05);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .ortho-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading {
    font-size: 28px;
    padding: 12px 30px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .section-heading {
    font-size: 24px;
    padding: 10px 26px;
  }

  .ortho-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .ortho-card img {
    height: 165px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .ortho-grid {
    grid-template-columns: 1fr;
  }

  .ortho-card img {
    height: 155px;
  }

  .ortho-btn {
    font-size: 13px;
    padding: 8px 22px;
  }
}










/* ================= TITLE ================= */
.main-title {
  color: #DF125D;
  letter-spacing: 1px;
  margin-top: 60px !important;
}

/* ================= SECTION ================= */
.srv-section {
  background: #ffffff;
  padding: 40px 20px 90px;
  text-align: center;
}

.srv-heading {
  font-size: 18px;
  margin-bottom: 45px;
  color: #000;
}

/* ================= GRID ================= */
.srv-grid {
  max-width: 1100px;
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= SERVICE CARD ================= */
.srv-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.srv-card:nth-child(2) { animation-delay: 0.2s; }
.srv-card:nth-child(3) { animation-delay: 0.4s; }
.srv-card:nth-child(4) { animation-delay: 0.6s; }

.srv-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.srv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

.srv-card:hover img {
  transform: scale(1.08);
}

/* ================= CONTENT ================= */
.srv-content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.left-align {
  align-items: flex-start;
  text-align: left;
}

.right-align {
  align-items: flex-end;
  text-align: right;
}

.srv-content h4 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 22px;
}

.srv-content button {
  background: #DF125D;
  border: none;
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.srv-content button:hover {
  background: #08254c;
}

/* ================= CENTER CIRCLE (DESKTOP) ================= */
.srv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  padding: 28px;
  z-index: 5;
  animation: scaleIn 0.9s ease forwards;
}

.srv-center span {
  font-size: 12px;
  color: #DF125D;
  font-weight: bold;
}

.srv-center h2 {
  font-size: 22px;
  margin: 10px 0;
  color: #08254c;
}

.srv-center p {
  font-size: 13px;
  color: #000;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ================= MOBILE FIX (PERFECT) ================= */
@media (max-width: 768px) {

  .srv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* 🔥 CONVERT CENTER CIRCLE INTO NORMAL CARD */
  .srv-center {
    position: relative;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 0 auto 20px;
    padding: 24px 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
  }

  .srv-center h2 {
    font-size: 22px;
  }

  .srv-center p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* CARD FIX */
  .srv-card img {
    height: 200px;
  }

  .srv-content h4 {
    font-size: 20px;
  }

  /* FORCE CLEAN TEXT ALIGNMENT */
  .right-align {
    align-items: flex-start;
    text-align: left;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .srv-content h4 {
    font-size: 18px;
  }

  .srv-card img {
    height: 180px;
  }
}



/* ================= SECTION BACKGROUND ================= */
.specialised-section {
  width: 100%;
  padding: 100px 20px;
  text-align: center;
  background: #ffffff;
}

/* ================= TITLE ================= */
.spec-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #08254c;
}

/* ================= SUB TITLE ================= */
.spec-sub {
  max-width: 820px;
  margin: 0 auto 80px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

/* ================= CIRCLE WRAPPER ================= */
.spec-circles {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

/* ================= DESKTOP CIRCLE ================= */
.spec-circle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: #08254c;
  color: #ffffff;
  padding: 55px 50px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 0 14px #e0e0e0,
    0 26px 55px rgba(0,0,0,0.35);

  transition: transform 0.4s ease;
}

.spec-circle:hover {
  transform: translateY(-10px);
}

/* ================= CIRCLE HEADING ================= */
.spec-circle h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

/* ================= LIST ================= */
.spec-circle ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* ================= LIST ITEMS ================= */
.spec-circle ul li {
  font-size: 17px;
  padding: 8px 0;
  color: #f1c84b;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
}

.spec-circle ul li:last-child {
  border-bottom: none;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .spec-circles {
    gap: 60px;
  }

  .spec-circle {
    width: 400px;
    height: 400px;
    padding: 45px 40px;
  }

  .spec-circle h3 {
    font-size: 26px;
  }

  .spec-circle ul li {
    font-size: 15px;
  }
}

/* ================= MOBILE (PERFECT FIX) ================= */
@media (max-width: 768px) {

  .specialised-section {
    padding: 70px 15px;
  }

  .spec-title {
    font-size: 26px;
  }

  .spec-sub {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .spec-circles {
    gap: 40px;
  }

  /* 🔥 CHANGE SHAPE ON MOBILE */
  .spec-circle {
    width: 100%;
    max-width: 360px;
    height: auto;              /* 🔥 KEY FIX */
    border-radius: 28px;       /* 🔥 NOT CIRCLE */
    padding: 30px 22px;

    box-shadow:
      0 0 0 8px #e0e0e0,
      0 18px 35px rgba(0,0,0,0.25);
  }

  .spec-circle h3 {
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .spec-circle ul li {
    font-size: 14px;
    padding: 6px 0;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .spec-circle {
    max-width: 320px;
    padding: 26px 18px;
  }

  .spec-circle h3 {
    font-size: 20px;
  }

  .spec-circle ul li {
    font-size: 13px;
  }
}












/*
/* ============================= */
/* SERVICE BUTTONS (MIDDLE) */
/* ============================= */

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-buttons a {
    background-color: rgba(224, 224, 224, 0.9);
    color: #333;

    padding: 10px 22px;
    border-radius: 50px;

    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
    white-space: nowrap;
}

.service-buttons a:hover {
    background-color: #ffffff;
}

/* ============================= */
/* BOOK APPOINTMENT BUTTON */
/* ============================= */

.appointment-btn {
    display: inline-block;
    background-color: #08254c;
    color: #ffffff;

    padding: 14px 42px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;

    transition: 0.3s ease;
}

.appointment-btn:hover {
    background-color: #0b3a70;
    transform: scale(1.05);
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
    .hero-services {
        height: 85vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .service-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 20px;
    }

    .service-buttons a {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .appointment-btn {
        font-size: 0.95rem;
        padding: 12px 30px;
    }
}






/* ================= FOOTER FULL WIDTH ================= */
.footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #08254c;
  color: #ffffff;
  padding: 60px 20px 40px;
}

/* ================= FOOTER CONTAINER ================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ================= LOGO BOX ================= */
.footer-logo-box {
  margin-top: 40px;
  text-align: left;
}

.footer-logo {
  height: 70px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-block;
}

.footer-logo-box p {
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

/* ================= FOOTER BOX ================= */
.footer-box {
  margin-left: 30px;
}

.footer-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

.footer-box a,
.footer-box p {
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  text-align: left;
}

.footer-box a:hover {
  color: #DF125D;
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social {
  font-size: 26px;
  color: white;
  transition: 0.3s;
}

.social:hover {
  transform: scale(1.2);
}

.instagram:hover { color: #E1306C; }
.facebook:hover { color: #1877F2; }
.youtube:hover { color: #FF0000; }
.whatsapp:hover { color: #25D366; }

/* ================= COPYRIGHT ================= */
.footer hr {
  margin-top: 30px;
  border-color: rgba(255,255,255,0.3);
}

.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-logo-box {
    grid-column: span 2;
    text-align: center;
  }

  .footer-box {
    margin-left: 0;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ================= MOBILE (FINAL FIX) ================= */
@media (max-width: 600px) {

  /* FORCE STACK */
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px;
  }

  /* FULL WIDTH SECTIONS */
  .footer-logo-box,
  .footer-box {
    width: 100%;
    margin: 0 !important;
    text-align: center !important;
  }

  /* HEADINGS CENTER */
  .footer-box h3 {
    text-align: center !important;
  }

  /* LINKS DOWN BY DOWN */
  .footer-box a {
    display: block !important;
    width: 100%;
    text-align: center !important;
    margin: 8px 0;
  }

  /* TEXT CENTER */
  .footer-box p {
    text-align: center !important;
  }

  

  /* BIG LOGO */
  .footer-logo {
    height: 120px;
  }

  /* COPYRIGHT */
  .footer-copy {
    font-size: 13px;
    padding: 5px 10px;
    margin: 0;
  }
}



/* ================= SOCIAL ICONS MOBILE FIX ================= */
@media (max-width: 600px) {

  /* SOCIAL ICONS ROW */
  .footer .social-icons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;   /* 👈 spacing like 1st image */
    margin-top: 10px;
  }

  /* REMOVE BLOCK + FULL WIDTH FROM A TAGS */
  .footer .social-icons a {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ICON SIZE */
  .footer .social-icons i {
    font-size: 24px;
    line-height: 1;
  }
}



.stats-section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .stats-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}


















/* ================= ABOUT SECTION ================= */
.about-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
  margin-bottom: -60px;
  
  
 
}

/* ================= CONTAINER ================= */
.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* ================= LEFT CONTENT ================= */
.about-content {
  width: 50%;
  max-width: 650px;
  padding-left: 50px;
  text-align: left;
  margin-top: -80px;
}

/* ================= HEADING (SINGLE LINE) ================= */
.about-title {
  font-size: 35px;
  font-weight: 700;
  color: #DF125D;
  margin-bottom: 25px;

  white-space: nowrap;          /* 🔑 force single line */
}

/* ================= TEXT (JUSTIFIED CLEAN) ================= */
.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 35px;

  text-align: justify;          /* 🔑 proper justify */
  text-justify: inter-word;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ================= BUTTON ================= */
.about-btn {
  display: inline-block;
  padding: 14px 38px;
  background: #DF125D;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #08254c;
}

/* ================= RIGHT IMAGE ================= */
.about-image {
  width: 50%;
  margin-top: -80px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin-top: -10px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .about-container {
    gap: 40px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-text {
    font-size: 17px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-section {
    padding: 60px 0;
   
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-content,
  .about-image {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  /* 🔥 SINGLE-LINE HEADING (AUTO SCALE) */
  .about-title {
    font-size: clamp(20px, 5vw, 26px);
    white-space: nowrap;
    text-align: center;
  }

  /* 🔥 PERFECT JUSTIFIED TEXT */
  .about-text {
    font-size: 16px;
    line-height: 1.7;

    text-align: justify;
    text-justify: inter-word;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;

    max-width: 380px;
    margin: 0 auto 25px;
  }

  /* 🔥 CENTER BUTTON */
  .about-btn {
    display: inline-block;
    margin: 0 auto;
    padding: 12px 34px;
    font-size: 16px;
  }

  .about-image img {
    border-radius: 14px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .about-title {
    font-size: 22px;
  }

  .about-text {
    font-size: 15px;
    max-width: 340px;
  }

  .about-btn {
    font-size: 15px;
    padding: 10px 26px;
  }
}



























.hero {
  width:100%;
  overflow:hidden;
  background:#fff;
}

/* slider window */
.hero-slider{
  width:100%;
  overflow:hidden;
}

/* moving strip */
.hero-track{
  display:flex;
  width:300vw;     /* 3 slides */
  transition:transform 0.7s ease-in-out;
}

/* each slide MUST be 100% screen */
.hero-slide{
  min-width:100vw;
  height:auto;
}

/* images */
.hero-slide img{
  width:100vw;
  height:auto;
  display:block;
  object-fit:cover;
}

/* Mobile */
@media(max-width:768px){
  .hero-slide img{
    width:100vw;
    height:auto;
    object-fit:contain;
  }
}












.floating-icons{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:9999;
}

.float-btn{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:24px;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
  animation:pulse 1.5s infinite;
}

/* Green theme */
.green{
  background:#25D366;
}

/* Hover effect */
.float-btn:hover{
  transform:scale(1.1);
  background:#1ebe5d;
}

/* Pulse animation */
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* Mobile Responsive */
@media(max-width:600px){
  .floating-icons{
    right:12px;
    bottom:12px;
  }
  .float-btn{
    width:50px;
    height:50px;
    font-size:22px;
  }
}



































