


    :root{
      --primar:#08254c;   
      --accent:#08254c;    
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
      font-family:Arial, Helvetica, sans-serif;
    }

    body{
      background:white;
      color:#333;
    }

    a{
      text-decoration:none;
      color:inherit;
    }


/* ===== 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;
  }
}


    
    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:#DF125D;

    }
    
.services-dropdown {
  position: relative;
}


.services-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #08252c;   
  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;          
}


.service-item:hover {
  background: #08254c;     
  color: white !important;
  padding-left: 22px;      
}



.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; 
  }

  .nav-links {
    position: absolute;
    top: 100px;          
    left: 0;
    width: 100%;
    background: white;
    display: none !important;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .nav-links.active {
    display: flex !important ;
  }

  .nav-links li {
    margin: 12px 0;
    text-align: center;
  }

  
  .services-dropdown .dropdown {
    position: relative;
    background: #08254c;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}
@media (max-width: 850px) {

  .nav-container {
    flex-direction: row;       
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;    
         
  }
}







  
    footer{
      background:#08254c; 
      color:white; 
      padding:40px 20px; 
      margin-top:40px;
    }
    footer a{
      color:white;
      text-decoration:none;
    }
   

    

   
    
  


    .services-dropdown .dropdown {
    display: none;
    position: absolute;
    background: white;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 10px;
    z-index: 999;
}

.services-dropdown:hover .dropdown {
    display: block;
}

.submenu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-link {
    flex: 1;
    padding: 5px 0;
}

.toggle {
    cursor: pointer;
    padding: 5px;
}

.submenu {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
}

.submenu li {
    margin: 4px 0;
    font-size: 14px;
}



.footer {
  background: #08254c;
  color: white;
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}




.footer-logo-box {
  
  margin-top: 40px;
}

.footer-logo {
   height: 70px;           
  margin-top: -40px;
  background: white;
  padding: 5px 10px;       
  border-radius: 12px;
  display: inline-block;   
} 

.footer-logo-box p {
  margin-top: 15px;  
}


.footer-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
}

.footer-box h4 {
  margin: 12px 0 5px;
}

.footer-address, .footer-branch {
  margin-bottom: 18px;
  line-height: 1.6;
}


.footer-box a, .footer-box p {
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-box a:hover {
  color: #DF125D;
  
}



.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social {
  font-size: 26px;
  color: white;
  transition: 0.3s;
}

.instagram:hover { color: #E1306C; }
.facebook:hover { color: #1877F2; }
.youtube:hover { color: #FF0000; }
.whatsapp:hover { color: #25D366; }

.social:hover {
  transform: scale(1.2);
}

.footer hr {
  margin-top: 30px;
  border-color: rgba(255,255,255,0.3);
}

.footer-copy {
  text-align: center;
  margin-top: 20px;   /* small space */
  margin-bottom: 0; /* no extra space */
  font-size: 14px;
  line-height: 1.3;
}
.logopara{
  margin-bottom: 50px;
}


@media (max-width: 600px) {
  .footer-logo {
    height: 120px;
  }
}



@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-logo-box {
    grid-column: span 2;
  }

  .social-icons {
    justify-content: center;
  }
}


@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-box {
    grid-column: span 1;
    margin-top: 0;
  }

  .social-icons {
    justify-content: center;
  }

   .footer-copy {
    font-size: 13px;
    padding: 2px 10px;
    margin: 0;
    line-height: 1.3;
  }
}




.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);
}
.nav-links {
  list-style: none !important;   
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links li {
  list-style: none !important;
}





/* SECTION */
.doctors-section-new {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 34px;
  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;
  }
}


    footer{
      background:#00008B; 
      color:white; 
      padding:40px 20px; 
      margin-top:40px;
    }
    footer a{
      color:white;
      text-decoration:none;
    }
    footer a:hover{
      text-decoration:underline;
    }

    

    
    


    /* ================= BANNER ================= */
.banner {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.banner-text h1 {
    font-size: 2.8rem;
    font-weight: bold;
}

.banner-text p {
    font-size: 1.2rem;
}

/* ================= ABOUT SECTION ================= */
/* ABOUT SECTION */
.about-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

/* CONTAINER */
.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;       /* vertical center */
  gap: 60px;
  padding: 0 20px;
}

/* LEFT CONTENT */
.about-content {
  width: 50%;
  max-width: 650px;
  padding-left: 50px;   /* 👈 increase this value */
}


/* HEADING */
.about-title {
  font-size: 35px;
  font-weight: 700;
  color:#DF125D;             /* same red tone */
  margin-bottom: 25px;
}

/* TEXT */
.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 35px;
  text-align: justify;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 14px 38px;
  background:#DF125D;        /* same red */
  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 {
  flex: 1;                   /* 50% */
}


.about-image img {
  width: 100%;
  height: auto;          /* 🔥 IMPORTANT */
  object-fit: contain;  /* show full image */
  border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image img {
    height: 320px;
  }
}
/* TABLET */
@media (max-width: 992px) {
  .about-container {
    gap: 40px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-text {
    font-size: 17px;
  }

  .about-image img {
    height: 360px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-content {
    width: 100%;
    max-width: 100%;
    padding-left: 0;     /* 🔥 IMPORTANT FIX */
    padding: 0 15px;
  }

  .about-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
  }

  .about-btn {
    font-size: 16px;
    padding: 12px 30px;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    height: 260px;
    border-radius: 14px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-btn {
    font-size: 15px;
    padding: 10px 26px;
  }

  .about-image img {
    height: 220px;
  }
}

/* ================= MISSION / VISION ================= */
.mv-section {
    background: #e7f8f8;
}

.mv-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.mv-box h3 {
    color:#DF125D;
    font-weight: bold;
}

/* ================= STATS SECTION ================= */
.stats-section {
    background: #f1f5f6
    font-color=#08254c;
}

.stat-card {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-card h2 {
    color: #08254c;
    font-weight: bold;
    font-size: 2rem;
}

.stat-card p {
    color: #444;
    margin-top: 8px;
}

/* ================= GALLERY ================= */
.facility-img {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.facility-img:hover {
    transform: scale(1.04);
}



.services-dropdown .dropdown {
    display: none;
    position: absolute;
    background: white;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 10px;
    z-index: 999;
}

.services-dropdown:hover .dropdown {
    display: block;
}

.submenu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-link {
    flex: 1;
    padding: 5px 0;
}

.toggle {
    cursor: pointer;
    padding: 5px;
}

.submenu {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
}

.submenu li {
    margin: 4px 0;
    font-size: 14px;
}



.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;
  }
}
