* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
 }
 html, body {
  overflow-x: hidden;
}


/* Navbar */
.custom-navbar {
  background-color: #ffffff !important;
}
body {
  font-family: 'Segoe UI', sans-serif;
 
  color: #333;
}
.navbar-brand {
  font-size: 1.5rem;
 color: #13efd5;
 font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.navbar-brand img{
width:65px;
height:50px;
}
.nav-link {
  font-size: larger;
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.nav-link:hover,
.nav-link.active {
  color:#149f8f !important;
}

.social-icons i {
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #198754;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, #059887, #4dd2d2); /* Emerald blend */
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle overlay for better text visibility */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero-img {
  max-height: 350px;
  border: 6px solid #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Headings animation */
.profile-heading {
  font-size: 1.2rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

.display-4 {
  line-height: 1.2;
  animation: fadeInUp 1s ease-in-out;
}

/* CTA Button */
.btn-primary {
  background-color: #ff6600;   /* Orange for contrast */
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #e65c00;
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------ */
/* 
.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #059887;
  border-left: 5px solid #157a6e;
  padding-left: 12px;
} */
/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #059887;
  border-left: 6px solid #157a6e;
  padding-left: 14px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Backgrounds */
.education {
  background: linear-gradient(135deg, #42716a, #2f5b55);
  color: #fff;
}

.experience {
  background: linear-gradient(135deg, #f9fbfc, #eef3f6);
}

.memberships {
  background: linear-gradient(135deg, #f0f7fa, #dfeaf0);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(5, 152, 135, 0.2);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #157a6e;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

/* List Groups */
.list-group-item {
  background: transparent;
  border: none;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.2s ease;
}

.list-group-item:hover {
  color: #059887;
  transform: translateX(5px);
}
.education .section-title {
  border-left-color:#059887;   
  /* color: #ffffff;               */
}

/* Expertise List */
.procedures .col {
  background: #ffffff;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.procedures .col:hover {
  background: #eaf8f6;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(5, 152, 135, 0.15);
}

/* ----------- */
.kidney-health-section{
   background: #b2ddd4;
  color: #1e2a35;   
}
.section-title1 {
  font-size: 2.5rem;
  color: #2c5f2d;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
}

.section-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Cards ===== */
.card-custom {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-custom:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Icon style */
.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #2c5f2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 5px 12px rgba(44,95,45,0.3);
}

.card-custom h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ff6b6b;
  font-weight: 600;
}

.card-custom p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Animation */
.card-custom {
  opacity: 0;
  transform: translateY(20px);
}
.card-custom.animate {
  animation: fadeInUp 0.8s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------- */



/* Section title */
.section-title {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}
/* .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  margin: 10px auto 0;
  border-radius: 2px;
} */

/* Headings */
.treatment-section h4 {
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.treatment-section h4::before {
  content: "▸";
  color: #4facfe;
  margin-right: 8px;
}

/* Paragraphs */
.treatment-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.treatment-section{
  margin-bottom: 10%;
}
.treatment-img img {
  width: 60%;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
} 
.treatment-img1 img{
max-width:40%;
border-radius: 20px;
}

.treatment-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


/* Gradient line separator */
.gradient-line {
  border: none;
  height: 3px;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  border-radius: 2px;
  margin: 40px 0;

}

.blueprint img {
  width: 100%;
  max-width: 100%;
  height: auto;
}


  /* ---------- */
  /* Section Styling */
.services-section {
  padding: 70px 20px;
 background: linear-gradient(135deg, #e0f7f7, #f0fcfb);
}


.service-box {
  background: #fff;
  border-left: 5px solid #cfd8dc;
  padding: 25px 25px 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 130px; 
}

.service-box:hover {
  border-left: 5px solid #00796b;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Service Icon */
.service-icon {
  font-size: 2.2rem;
  color: #00509e;
  flex-shrink: 0;
  transition: transform 0.4s ease, color 0.4s ease;
}

.service-box:hover .service-icon {
  transform: translateX(5px);
  color: #003366;
}

/* Service Text */
.service-text h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
  transition: color 0.3s ease;
}

.service-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  transition: color 0.3s ease;
}

.service-box:hover .service-text h5 {
  color: #003366;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-box {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .service-box {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 10px;
  }
}


/* ------------------- */
.footer-section {
  background: linear-gradient(135deg, #f8f9fa, #e9f5ff);
  color: #1e2a35;
  font-family: "Segoe UI", sans-serif;
}

.footer-box h4 {
  font-weight: 600;
  color: #059887;
}

.footer-box ul li {
  margin-bottom: 6px;
}

.footer-box ul li a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

.footer .social a {
  color: #059887;
  font-size: 18px;
  transition: 0.3s;
}

.footer .social a:hover {
  color: #0069d9;
}

.gradient-line {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #00bcd4);
}

.footer p {
  font-size: 14px;
}

/* Responsive adjustments for small screens */
@media (max-width: 576px) {
  .footer-box {
    text-align: center !important;
  }

  .footer-box .logo2 {
    justify-content: center !important;
  }

  .footer-box ul li {
    display: inline-block;
    margin: 0 8px;
  }

  .footer .social {
    justify-content: center !important;
  }
}
/* 
.yt-title{
  /* font-size: 2rem;
  font-weight: 700;
  color: #059887;

  padding-left: 14px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
} */

   /* Floating contact button */
    .floating-contact {
       position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
      /* Animation */
      animation: float 2s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }


/* 768px*/
@media (max-width: 768px) {
  .hero-section {
    padding-top: 120px;
  }

}

  /* ------------- */
  /* =============================== */
   
@media only screen and (min-width:768px) {


.treatment-img  img{
   max-width: 50%; 
   border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.treatment-img1  img{
   max-width: 65%; 
}
}


/* 992px*/
@media only screen and (min-width:992px){
.nav-logo {
  margin-left:30px;
}
.nav-link a{
  font-size: 40px;
}
.navbar-brand img{
width:75px;
}
.nav-list ul{
  margin-right:10rem;
}
.hype {
  margin: 0 auto; /* centers the column */
}
.service-text {
  text-align: center; /* centers the text */
}

}
@media (max-width: 992px) {
  .hero-section {
    padding-top: 120px;
  }
/* .navbar-nav ul{ */
  
  /* ------------------ */
  .footer-cnt{
    margin-left: 60px;
    
}
.ft-cnt li{
    list-style-type: none;
}
.ft-cnt{
    padding-top:5px ;
}

  }
   