*{ font-family: 'poppins', sans-serif; }


.top-bar {
  background-color: #1f2f4d;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 10px;
}

.top-bar i {
  margin-right: 5px;
}

.social-icons a {
  color: #ffffff;
  margin-left: 12px;
  font-size: 15px;
}

.social-icons a:hover,
.top-bar a:hover {
  color: #f5c400;
}
@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
}
  

/* nav bar */
 
.navbar-nav .nav-link{
  font-weight: 600;
  font-size: 16px;
  color: #1f2a44;
  margin: 0 12px;
  position: relative;
}
 
.navbar-nav .nav-link:hover{
  color: #90E704;
}
 
/* ACTIVE LINK */
.navbar-nav .nav-link.active{
  color: #07B4E1;
}
 
/* BLUE UNDERLINE */
.navbar-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background-color: #07B4E1;
}
 
/* LOGO SIZE */
.navbar-brand img{
  height: 100px;
}

@media(max-width:768px){
  /* BLUE UNDERLINE */
.navbar-nav .nav-link.active::after{
  display: block;
}
 
}

/* Slider */

.hero-section{
    background: url('../Image/slide2.jpg') center center/cover no-repeat;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    /* background: rgba(0,0,0,0.35); */
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-subtitle{
    color:#fff;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hero-title{
    color:#fff;
    font-size:70px;
    font-weight:700;
    line-height:1.1;
}

.hero-btn .btn{
    padding:14px 32px;
    border-radius:50px;
    font-weight:500;
}

.btn-find{
    background:#ffffff;
    color:#000;
}

.btn-appointment{
    border:2px solid #fff;
    color:#fff;
}
.btn-appointment:hover{
    background:#fff;
    color:#000;
}

/* Responsive */
@media(max-width:768px){
    .hero-title{
        font-size:40px;
    }
}

/* About us */
.about-section{
    padding:80px 0;
}

.about-img{
    border-radius:12px;
    width:90%;
    height:90%;
    object-fit:cover;
}

.about-label{
    color:#16c1d9;
    font-weight:600;
    letter-spacing:1px;
}

.about-title{
    font-size:48px;
    font-weight:700;
    color:#1f2b4d;
}

.about-text{
    color:#6c757d;
    font-size:15px;
    line-height:1.8;
}

.service-icon{
    background:#f1f8fb;
    width:120px;
    height:120px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
}

.service-icon i{
    font-size:42px;
    color:#1f2b4d;
}

.service-title{
    margin-top:12px;
    font-weight:600;
    color:#1f2b4d;
}

/* Responsive */
@media(max-width:768px){
    .about-title{
        font-size:34px;
    }
}

/* service heading */
.services-heading{
    background:#ffffff;
    margin-top: -50px;
    margin-bottom: -50px;
}

.section-label{
    display:inline-block;
    color:#18c2dc;
    font-weight:600;
    letter-spacing:1px;
    position:relative;
    padding-bottom:6px;
}

.section-label::after{
    content:'';
    width:40px;
    height:3px;
    background:#dcdcdc;
    display:block;
    margin:6px auto 0;
}

.section-title{
    font-size:48px;
    font-weight:700;
    color:#1f2b4d;
    line-height:1.2;
}

/* Responsive */
@media(max-width:768px){
    .section-title{
        font-size:34px;
    }
}

/* services */

.service-card{
    background:#f3f9fc;
    padding:40px 30px 60px;
    border-radius:14px;
    position:relative;
    transition:0.4s ease;
    height:100%;
}

/* IMAGE FULL – ZERO RADIUS */
.service-icon{
    width:110px;
    height:auto;
    margin-bottom:20px;
    border-radius:0 !important;   /* ❌ NO curve */
    background:none !important;
    padding:0;
}

/* Title */
.service-card h4{
    color:#18c2dc;
    font-weight:600;
    margin-bottom:15px;
}

/* Description */
.service-card p{
    color:#6c757d;
    font-size:15px;
    line-height:1.7;
}

/* Hover Button */
.service-btn{
    width:60px;
    height:60px;
    background:#18c2dc;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    position:absolute;
    left:50%;
    bottom:-30px;
    transform:translateX(-50%);
    opacity:0;
    transition:0.4s ease;
    text-decoration:none;
}

.service-card:hover .service-btn{
    opacity:1;
    bottom:-20px;
}

 /* Gallery Heading home */

/* Section tag */
.section-tag{
  font-size:16px;
  font-weight:600;
  color:#10bcd4;
  position:relative;
  display:inline-block;
  padding-bottom:6px;
}

/* underline */
.section-tag::after{
  content:"";
  width:50px;
  height:4px;
  background:#d9dee3;
  display:block;
  margin:6px auto 0;
}

/* Main title */
.section-title{
  font-size:48px;
  font-weight:700;
  color:#1f2a44;
}

/* Responsive */
@media(max-width:768px){
  .section-title{
    font-size:34px;
  }
}

.vision-mission-section {
    background: url('../Image/slider3.jpg') no-repeat center center/cover;
    position: relative;
    padding: 80px 15px;
}

.vision-mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(173, 205, 213, 0.75);  */
}

.vision-box {
    position: relative;
    background: rgba(12, 7, 37, 0.65); /* inner box */
    border-radius: 25px;
    padding: 50px 40px;
    color: #fff;
}

.vision-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-box p {
    font-size: 18px;
    line-height: 1.7;
    
}

/* Gallery home */
/* OUTER WRAPPER */
.clinic-gallery {
  position: relative;
  /* padding-top: 60px; */
  margin-bottom: 40px;
}
 
/* IMAGE VIEWPORT (NO BLUE BG) */
.clinic-viewport {
  width: 100%; /* 3 images */
  margin: auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
 
/* SLIDER TRACK */
.clinic-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}
 
/* IMAGE CARD */
.clinic-slide {
  background: #fff;
  padding: 10px;
}
 
.clinic-slide img {
  width: 340px;
  height: 220px;
  object-fit: cover;
  display: block;
}
 
/* BLUE CURVED SECTION (ONLY BOTTOM) */
.clinic-curve {
  background: #0bb2e4;
  height: 240px;
      width: 100%;
  margin-top: -120px; /* overlap effect */
  border-bottom-left-radius: 50% 40%;
  border-bottom-right-radius: 50% 40%;
  position: relative;
  z-index: 1;
}
 
/* BUTTONS */
.clinic-nav {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}
 
.clinic-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0bb2e4;
  font-size: 22px;
  cursor: pointer;
}
 

/* conatct form */

 .appointment-section {
      background-color: #19c1e6;
      color: #fff;
      padding: 60px 0;
    }
    .appointment-section h1 {
      font-weight: 700;
    }
    .appointment-section p {
      font-weight: 400;
    }
    .appointment-form {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .appointment-form .form-control {
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 12px;
    }
    .appointment-form button {
      background-color: #19c1e6;
      color: #fff;
      font-weight: 600;
      border: none;
      padding: 12px;
      border-radius: 8px;
      width: 100%;
    }
    .appointment-form button:hover {
      background-color: #1593b6;
    }

    /* footer */
    
.footer-section {
  background:#1f2f54;
  color:#ffffff;
}
.footer-text {
  color:#dcdcdc;
  font-size:14px;
}
.footer-title {
  color:#2de2e6;
  margin-bottom:15px;
  border-bottom:3px solid #2de2e6;
  display:inline-block;
  padding-bottom:5px;
}
.footer-links {
  list-style:none;
  padding:0;
}
.footer-links li {
  margin-bottom:10px;
}
.footer-links a {
  color:#ffffff;
  text-decoration:none;
}
.footer-links a:hover {
  color:#2de2e6;
}
.footer-section i {
  color:#2de2e6;
  margin-right:10px;
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.2);
  padding:15px 0;
  font-size:14px;
}
.footer-bottom span {
  color:#2de2e6;

}


/* About page css */

.about-banner-bg {
  background-image: url('../Image/slider1.jpg'); /* your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Optional overlay for better text visibility */
.about-banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.about-banner-bg .container {
  position: relative;
  z-index: 1;
}

.about-badge {
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 16px;
  border-radius: 25px;
  color: #1ca9e6;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.about-title {
  font-size: 60px;
  font-weight: 800;
  color: #0b2a4a;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 40px;
  }
}

/* information */

.about-section {
  background:#ffffff;
}

.about-img {
  border-radius:12px;
}

.about-tag {
  color:#1ccad8;
  font-weight:700;
  font-size:14px;
  display:inline-block;
  margin-bottom:10px;
  border-bottom:3px solid #1ccad8;
}

.about-heading {
  font-size:42px;
  font-weight:800;
  color:#1e2a4a;
  margin-bottom:20px;
  line-height:1.3;
}

.about-heading span {
  color:#1e2a4a;
}

.about-text {
  font-size:16px;
  color:#6b7280;
  line-height:1.8;
  margin-bottom:15px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-heading {
    font-size:30px;
  }
}

.clinic-title {
      margin-top:-50px ;
      font-size: 42px;
      font-weight: 700;
      color: #1f2a44;
      line-height: 1.2;
    }
    .clinic-text {
      font-size: 16px;
      color: #6c757d;
      line-height: 1.8;
    }
    .clinic-title1{
      margin-top:-50px ;
      font-weight: 700;
      color: #1f2a44;
      line-height: 1.2;
      font-size: 30px;
    }

    .about-text1{
      margin-top: -50px;
      font-size:16px;
      color:#6b7280;
      line-height:1.8;
    }

    @media (max-width: 768px) {
      .clinic-title {
        font-size: 30px;
      }
    }

   /* Gallery page css */
   
   .gallery-subtitle{
  display:inline-block;
  font-size:16px;
  font-weight:600;
  color:#14b7dc;
  letter-spacing:1px;
  position:relative;
  padding-bottom:6px;
}

.gallery-subtitle::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:#dfe6ea;
}

.gallery-title{
  font-size:48px;
  font-weight:700;
  color:#1f2b4d;
}

/* Responsive */
@media(max-width:768px){
  .gallery-title{
    font-size:34px;
  }
}

/* clinic-gallery */

  .gallery-img {
    margin-top: -60px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin: 20px;
    transition: transform 0.3s ease;
  }

  .gallery-img:hover {
    transform: scale(1.03);
  }

  @media (max-width: 768px) {
    .gallery-img {
      height: 220px;
    }
  }

  /* FAQ */

  .faq-subtitle{
  font-size:16px;
  font-weight:600;
  color:#14b7dc;
  letter-spacing:1px;
  position:relative;
  padding-bottom:6px;
}

.faq-subtitle::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#d7e6ef;
  margin:6px auto 0;
}

.faq-title{
  font-size:46px;
  font-weight:700;
  color:#1f2b4d;
}

/* Accordion styling */
.faq-accordion .accordion-item{
  border:none;
  margin-bottom:15px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.faq-accordion .accordion-button{
  font-weight:600;
  color:#1f2b4d;
  background:#f5f9fc;
}

.faq-accordion .accordion-button:not(.collapsed){
  background:#14b7dc;
  color:#fff;
}

.faq-accordion .accordion-body{
  background:#fff;
  color:#6c757d;
  font-size:15px;
  line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
  .faq-title{
    font-size:32px;
  }
}

/* Contact page css */

  .contact-box {
    background: #f1f7fb;
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
    background: #17c1d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .icon-circle:hover{
    background:#01346A ;
  }

  .icon-circle i {
    font-size: 36px;
    color: #fff;
  }

  .contact-text {
    font-weight: 600;
    color: #0b1c39;
  }

  /* map & contact form */

    .contact-section {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
  }

  .form-box {
    padding: 40px;
  }

  .form-title {
    color: #12b7d9;
    font-weight: 700;
    margin-bottom: 25px;
  }

  .form-control {
    background: #f3f3f3;
    border: none;
    padding: 14px;
    border-radius: 6px;
  }

  .btn-send {
    background: #12b7d9;
    color: #fff;
    padding: 14px;
    font-weight: 600;
    border-radius: 6px;
  }

  .btn-send:hover {
    background: #0aa1bf;
    color: #fff;
  }

/* Service pages css */

      /* HEADER */
    .page-header{
      padding:50px 20px;
      text-align:center;
      background:#f5fbff;
    }
    .page-header h1{
      font-size:38px;
      font-weight:700;
      color:#1f2b6c;
    }
    .page-header p{
      color:#555;
      max-width:800px;
      margin:10px auto 0;
    }
 
    /* SERVICE SECTION */
    .service-section{
      max-width:1200px;
      margin:60px auto;
      padding:0 20px;
      display:flex;
      gap:50px;
      align-items:center;
    }
 
    .service-image{
      flex:1;
    }
    .service-image img{
      width:100%;
      border-radius:14px;
    }
 
    .service-content{
      flex:1;
    }
    .service-content h2{
      font-size:30px;
      color:#00bcd4;
      margin-bottom:15px;
    }
    .service-content p{
      font-size:15px;
      line-height:1.9;
      color:#555;
      margin-bottom:15px;
    }
 
    .service-content ul{
      padding-left:18px;
    }
    .service-content ul li{
      margin-bottom:10px;
      font-size:15px;
    }


    @media (max-width: 768px) {
  .service-section {
    flex-direction: column; /* image top, text bottom */
  }

  .service-image img {
    max-width: 100%;
  }
}
 
    /* CTA SECTION */
    .cta-section{
      margin-top:80px;
      padding:60px 20px;
      background:#00bcd4;
      color:#fff;
      text-align:center;
    }
    .cta-section h2{
      font-size:32px;
      margin-bottom:15px;
    }
    .cta-section p{
      max-width:700px;
      margin:0 auto 30px;
      font-size:16px;
    }
 
    .cta-buttons{
      display:flex;
      justify-content:center;
      gap:20px;
      flex-wrap:wrap;
    }
    .cta-buttons a{
      text-decoration:none;
      padding:14px 30px;
      border-radius:30px;
      font-weight:600;
      font-size:15px;
      transition:0.3s;
    }
 
    .btn-primary{
      background:#ffffff;
      color:#00bcd4;
    }
    .btn-primary:hover{
      background:#e6f9fc;
    }
 
    .btn-outline{
      border:2px solid #fff;
      color:#fff;
    }
    .btn-outline:hover{
      background:#fff;
      color:#00bcd4;
    }
 
    /* MOBILE */
    @media(max-width:768px){
      .service-section{
        flex-direction:column;
      }
    }