:root{
      --primary:#08254c;
      --accent:#08254c;
      --text-dark:rgb(225, 34, 66);
      --header-dark:#08254c;
    }

    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:#9CA7B7
 ;
    }

    
    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;
    }


    
.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;
  }
}


    
.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;       
}





/* ===== 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;
  }
}





.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);
}














.site-header .wrap{
  padding-top:18px;
  padding-bottom:8px;
}
.site-header h1{
  font-size:26px;
  color:var(--accent);
  margin:0;
  text-align:center;
}
.title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin: 40px 0;
    color:#08254C;
}


.zigzag{
  display:flex;
  gap:28px;
  align-items:stretch;
  margin: 28px 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(8,20,40,0.06);
}


.zz-media{
  flex: 0 0 48%;
  min-width: 220px;
  max-height: 420px;
  overflow: hidden;
  background:#ddd;
}
.zz-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


.zz-content{
  flex: 1 1 52%;
  padding: 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.zz-content h2{
  margin:0 0 12px;
  font-size:22px;
  color:var(--accent);
}
.zz-content p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  white-space:pre-line;
}


.zigzag.reverse{
  flex-direction: row-reverse;
}


@media (max-width: 880px){
  .zigzag{
    flex-direction:column;
  }
  .zz-media{
    width:100%;
    height:260px;
    max-height:none;
  }
  .zz-content{
    padding:18px;
  }
  .site-header h1{
    font-size:20px;
  }
}


@media (max-width:420px){
  .zz-media{
    height:200px;
  }
  .zz-content h2{
    font-size:18px;
  }
}



.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;
}



.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;
}



.menu-toggle {
  display: none;
  font-size: 35px;
  cursor: pointer;
  color: #08254c;
}


@media (max-width: 850px) {

  .menu-toggle {
    display: block;
  }

  .nav-container {
    padding: 10px 20px;
  }

  
  .nav-links {
    position: absolute;
    top: 90px; 
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    padding: 15px 0;
    border-top: 2px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
    text-align: center;
  }

  .nav-links a {
    margin-left: 0 !important;
    font-size: 18px;
  }

 
  .services-dropdown .dropdown {
    position: relative;
    background: #08254c;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .service-item {
    font-size: 16px;
    padding: 10px 20px;
  }
}




.ped-wrapper {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


.ped-box {
    display: flex;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ped-box.reverse {
    flex-direction: row-reverse;
}


.ped-img {
    flex: 50%;
    max-height: 340px;
}

.ped-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ped-content {
    flex: 50%;
    padding: 25px;
}

.ped-content h3 {
    font-size: 22px;
    color: #DF125D;;
    margin-bottom: 10px;
}

.ped-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.55;
}


@media (max-width: 768px) {
    .ped-box,
    .ped-box.reverse {
        flex-direction: column;
    }
    .ped-img {
        height: 240px;
    }
} 





















.footer {
  width: 100%;
  background: #08254c;
  color: white;
  padding: 60px 20px 40px;
  margin: 0;
}

.footer-container {
  width: 100%;
  max-width: 1350px;
  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-address,
.footer-box p {
  margin-bottom: 18px;
  line-height: 1.6;
}


.footer-box a {
  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;
}


@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  
}

@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;
  }
}





@media (max-width: 850px) {

  .services-dropdown .dropdown {
    position: static;
    background: white;        
    width: auto;              
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    margin-top: 8px;
  }

  .service-item {
    color: #08254c;          
    text-align: center;
    font-size: 16px;
  }

  .service-item:hover {
    background: #eef7ff;
    color: #08254c !important;
  }
}




@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 2px;
        padding: 6px 0;
    }
}












.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;
  }
}
