

*{

  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif ;

}




.container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ===== TOP BAR ===== */
.top-bar{
  background:#0b4a55;
  height:110px;
  color:#fff;
  font-size:14px;
  padding-top:10px;
}

.top-bar i{
  margin-right:6px;
  color:#7fb6ff;
}

/* ===== LOGO SECTION ===== */
.logo-section{
  position:relative;
}

.top-navbar{
  background:#e9e9e9;
  height:120px;
  margin-top:-65px;
  padding:0 25px;
}

.logo-img{
  height:95px;
  width:auto;
}

/* ===== APPOINTMENT BUTTON ===== */
.appointment-btn a{
  background:#4c5bb7;
  color:#fff;
  padding:14px 26px;
  text-decoration:none;
  font-weight:bold;
  font-size:13px;
  letter-spacing:0.5px;
  transition:0.3s;
}

.appointment-btn a:hover{
  background:#3d4aa3;
}

/* ===== NAVBAR ===== */
.navbar{
 
  position:relative;
  position:sticky;   
  top:0;            
  z-index:999; 
}

.nav-links{
  list-style:none;
  display:flex;
}

.nav-links li{
  padding:18px 22px;
  transition:0.3s;
}

.nav-links li.active,
.nav-links li:hover{
  background:#4c5bb7;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
}

.search-icon{
  color:#fff;
  font-size:18px;
  cursor:pointer;
  padding-right:10px;
}


/* ===== MOBILE ===== */
@media(max-width:900px){

  .top-bar{
    height:auto;
    padding:10px 0;
  }

  .top-navbar{
    height:auto;
    margin-top:-50px;
    padding:10px 0;
  }

  .logo-img{
    height:70px;
  }

  .appointment-btn{
    display:none;
  }

  .nav-links{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:#083f48;
    flex-direction:column;
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
  }

  .nav-links.open{
    max-height:400px;
  }

  .nav-links li{
    width:100%;
    text-align:center;
    padding:15px 0;
    border-top:1px solid rgba(255,255,255,0.1);
  }



  .search-icon{
    display:none;
  }
}


.about-doctor {
  padding: 80px 0;
  
}

.doctor-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.small-title {
  color: #5a6fd6;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.doctor-name {
  color: #2f55d4;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor-role {
  color: #2f55d4;
  font-size: 18px;
  margin-bottom: 20px;
}

.doctor-desc {
  color: #000;

  line-height:25px;
  margin-bottom: 20px;
  font-size: 15px;
}

.doctor-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
    font-size: 15px;
}

.doctor-points li {
  margin-bottom: 10px;
  color: #033b4a;

  position: relative;
  padding-left: 25px;
}

.doctor-points li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #2f55d4;
}

/* Button */
.about-btn {
  display: inline-block;
  background: #2f55d4;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* GREEN HOVER */
.about-btn:hover {
  background: #28a745;
  color: #fff;
}
.diabetes-center {
  background: #f5f7fb;
}

.small-title {
  letter-spacing: 2px;
  font-size: 14px;
  color: #6b7cff;
  margin-bottom: 8px;
}

.main-title {
  font-size: 42px;
  font-weight: 600;
  color: #4b6cff;
}

.sub-text {
  color: #444;
  max-width: 650px;
}

.more-btn {
  border: 1px solid #4b6cff;
  padding: 10px 22px;
  color: #4b6cff;
  border-radius: 2px;
  transition: 0.3s;
}

.more-btn:hover {
  background: #4b6cff;
  color: #fff;
}

.card-wrapper {
  background: #9fb2d3;
  padding: 30px;
}
.text-t p{
  color: #4457bc;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.text-t h2{
  color: #4457bc;
  font-weight: 400;
  font-size: 35px;
  line-height: 42px;
}
.card-title{
  color: #387dff;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
}
.card{
  padding: 11px;
  background-color: #b3c7e8;
}
/* Section background (light grey area behind button) */
.btn-wrapper {
    background-color: #f2f2f2;

    text-align: center;
}

/* Button Style */
.custom-btn {
    background-color: transparent;
    color: #0b5c63;
    border: 1.5px solid #0b5c63;
    padding: 15px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-btn:hover {
    background-color: #0b5c63;
    color: #ffffff;
}


/* HERO */
.clinic2-hero{
  background:#0b4b52;
  color:#fff;
  text-align:center;
  padding:60px 20px;
}

.clinic2-hero h1{
  font-size:32px;
  font-weight:500;
}

.clinic2-hero h2{
  font-size:24px;
  margin-top:5px;
}

.clinic2-call{
  margin-top:20px;
  font-size:18px;
}

.clinic2-call a{
  color:#6aa0ff;
  text-decoration:none;
  font-weight:600;
}


/* CLIENT SECTION */
.clinic2-section{
  background:#4b5bb5;
  padding:60px 0;
}

.clinic2-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
  padding:0 20px;
}

/* IMAGE */
.clinic2-image img{
  width:520px;
  border-radius:4px;
}

/* CONTENT */
.clinic2-content{
  color:#fff;
}

.clinic2-content .clinic2-small{
  letter-spacing:2px;
  font-size:12px;
  opacity:0.8;
}

.clinic2-content h2{
  font-size:32px;
  margin:10px 0 30px;
}

/* RATING */
.clinic2-rating h3{
  font-size:22px;
}

.clinic2-stars{
  color:#ffc107;
  font-size:20px;
}

/* CARDS */
.clinic2-cards{
  display:flex;
  gap:20px;
  margin-top:20px;
}

.clinic2-card{
  background:#fff;
  color:#333;
  padding:15px;
  border-radius:6px;
  width:220px;
}

.clinic2-card h4{
  font-size:16px;
}

.clinic2-card span{
  font-size:12px;
  color:#777;
}

.clinic2-card p{
  margin-top:8px;
  font-size:14px;
}
/* HERO */
.clinic-hero{
  background:#0b4b52;
  color:#fff;
  text-align:center;
  padding:60px 20px;
}

.clinic-hero h1{
  font-size:32px;
  font-weight:500;
}

.clinic-hero h2{
  font-size:24px;
  margin-top:5px;
}

.call{
  margin-top:20px;
  font-size:18px;
}

.call a{
  color:#6aa0ff;
  text-decoration:none;
  font-weight:600;
}


/* SECTION BG */
.appoint-section{
  background:#f4f4f4;
  padding:80px 20px;
}

/* CONTAINER */
.appoint-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT */
.appoint-left{
  flex:1;
}

.appoint-small{
  color:#3b6eea;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.appoint-left h2{
  font-size:42px;
  color:#3b6eea;
  margin-bottom:10px;
  font-weight:500;
}

.appoint-desc{
  color:#333;
  margin-bottom:25px;
}

/* CARD */
.appoint-card{
  background:#0b4b52;
  color:#fff;
  padding:25px;
  border-radius:12px;
  border:3px solid #cfd8dc;
  box-shadow:0 12px 0 #08363c;
  max-width:520px;
}

.appoint-card h3{
  font-size:18px;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:10px;
}

.icon{
  font-size:20px;
}

.appoint-card p{
  font-size:14px;
  line-height:1.6;
  opacity:0.9;
}

/* RIGHT IMAGE */
.appoint-right img{
  width:420px;
  border-radius:4px;
}
.appoint-banner{
  min-height:220px;   /* IMPORTANT — gives space to show image */

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;

  background:url("../images/rowbg-third-img.jpg") center/cover no-repeat;

  position:relative;
}

/* dark overlay */
.appoint-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0, 70, 80, 0.75);  /* ONLY color overlay */
  z-index:1;
}

.appoint-banner-content{
  position:relative;
  z-index:2;
}

.appoint-phone{
  font-size:22px;
  margin-bottom:10px;
  letter-spacing:1px;
}

.appoint-banner h2{
  font-size:36px;
  line-height: 40px;
  font-weight:400;
  letter-spacing:1px;
}
/* CONTACT BAR */
.contact-bar{
  background:#4b5bb5;
  padding:40px 20px;
}

.contact-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:20px;
  color:#fff;
}

.contact-item img{
  width:70px;
}

.contact-item h3{
  font-size:22px;
  margin-bottom:5px;
  font-weight:600;
}

.contact-item p{
  font-size:18px;
}


.main-footer{
  background:#0b4b52;        /* dark teal like screenshot */
  text-align:center;
  padding:10px 10px;
  color:#c7d3d6;             /* light gray text */
  font-size:16px;
  position:relative;
}

/* link style same as image */
.main-footer a{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
}

.main-footer a:hover{
  text-decoration:underline;
}


/* ================= MOBILE (max-width: 768px) ================= */
@media (max-width: 768px){

  /* HERO */
  .clinic-hero h1{
    font-size:24px;
  }
  .clinic-hero h2{
    font-size:18px;
  }
  .call{
    font-size:16px;
  }

  /* CLIENT SECTION */
  .clinic2-container{
    flex-direction:column;
    text-align:center;
  }

  .clinic2-image img{
    width:100%;
    max-width:420px;
  }

  .clinic2-cards{
    flex-direction:column;
    align-items:center;
  }

  .clinic2-card{
    width:100%;
    max-width:320px;
  }

  /* APPOINTMENT SECTION */
  .appoint-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .appoint-left h2{
    font-size:28px;
  }

  .appoint-right img{
    width:100%;
    max-width:350px;
  }

  /* BANNER */
  .appoint-banner{
    min-height:180px;
    padding:20px;
  }

  .appoint-phone{
    font-size:18px;
  }

  .appoint-banner h2{
    font-size:22px;
    line-height:1.3;
  }

  /* CONTACT BAR */
  .contact-container{
    flex-direction:column;
    text-align:center;
    gap:30px;
  }

  .contact-item{
    flex-direction:column;
  }

  .contact-item img{
    width:55px;
  }

  .contact-item h3{
    font-size:18px;
  }

  .contact-item p{
    font-size:16px;
  }

  /* FOOTER */
  .main-footer{
    font-size:14px;
    padding:15px 10px;
  }
}


/* ================= TABLET (769px – 1024px) ================= */
@media (max-width: 1024px){

  .clinic2-container,
  .appoint-container{
    gap:30px;
  }

  .clinic2-image img{
    width:270px !important;
  }

  .appoint-right img{
    width:250px;
  }

  .appoint-left h2{
    font-size:34px;
  }

  .appoint-banner h2{
    font-size:28px;
  }
}
@media (max-width:768px){

  .container{
    display:flex;
    flex-direction:column;   /* stack items vertically */
    align-items:center;
    text-align:center;
  }

  .btn-wrapper{
    margin-top:20px;   /* space between text and button */
    width:100%;
    display:flex;
    justify-content:center;
  }

  .custom-btn{
    width:100%;
    max-width:260px;
  }
}


#scrollTopBtn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: #4c5bb7;   /* same blue */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  display: none;          /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s;
}

#scrollTopBtn:hover{
  background: #3d4aa3;    /* hover color */
}


.left-float{
  position: fixed;
  left: 0;
  top: 40%;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.float-btn{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

/* WhatsApp */
.float-btn.whatsapp{
  background: #8bc53f;   /* green same */
  border-top-right-radius: 8px;
}

/* Call */
.float-btn.call{
  background: #6e6e6e;   /* gray same */
  border-bottom-right-radius: 8px;
}

/* Hover effect */
.float-btn:hover{
  opacity: 0.85;
}
