/* google font   */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */

/* root color  */
:root {
  --blue: #0188df;
  --black: #444d53;
  --wight: #fff;
}

/* custom css  */
* {
  font-family: "Baloo Bhai 2", sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-transform: capitalize;
  outline: none;
  box-sizing: border-box;
  transition: all linear .2s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 70%; /* increased from 62.5% */
  overflow-x: hidden;
}

/* button  */
.button {
  height: 4.5rem; /* increased from 3.5rem */
  width: 18rem; /* increased from 15rem */
  background: var(--blue);
  color: var(--wight);
  font-size: 2.2rem; /* increased from 1.7rem */
  text-transform: capitalize;
  border-radius: .5rem;
  cursor: pointer;
  margin: 1rem 0;
  border: .1rem solid var(--blue);
}

.button:hover {
  border: .1rem solid var(--blue);
  background: var(--wight);
  color: var(--blue);
  letter-spacing: .2rem;
}

.fa-bars, .fa-xmark {
  font-size: 24px;
  cursor: pointer;
}


/* heading  */
.heading {
  text-align: center;
  font-size: 5.2rem; /* increased from 4rem */
  padding: 1rem;
  padding-top: 8rem;
  color: var(--blue);
  letter-spacing: .1rem;
}

/* title  */
.title {
  text-align: center;
  padding: 0rem 1rem;
  font-size: 3.3rem; /* increased from 2.5rem */
  color: var(--black);
  font-weight: 300;
}

/* ===== Navbar Styling ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* Clean white */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    z-index: 1000;
}

/* Logo */
header .logo {
    font-size: 2.4rem; /* increased from 1.8rem */
    font-weight: bold;
    color: #222;
    text-decoration: none;
}

header .logo span {
    color: #3bb78f; /* Health green */
}

/* Navbar Links */
header .navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

header .navbar ul li {
    display: inline-block;
}

header .navbar ul li a {
    text-decoration: none;
    font-size: 1.3rem; /* increased from 1rem */
    color: #333;
    text-transform: capitalize;
    transition: color 0.3s ease;
    position: relative;
}

/* Hover underline effect */
header .navbar ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #3bb78f;
    transition: width 0.3s ease;
}

header .navbar ul li a:hover {
    color: #3bb78f;
}

header .navbar ul li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
header .fa-bars {
    font-size: 2rem; /* increased from 1.5rem */
    color: #333;
    cursor: pointer;
    display: none; /* Hidden on desktop */
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    header .navbar {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 220px;
        background: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    header .navbar ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    header .fa-bars {
        display: block;
    }
    /* Active menu */
    header .navbar.active {
        right: 0;
    }
}

/* ===== Home Section Styling ===== */
.home {
    padding: 80px 20px;
    background: linear-gradient(to right, #f4f9fc, #ffffff);
}

.home .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap; /* For responsiveness */
}

/* Image Section */
.home .images {
    flex: 1 1 45%;
    text-align: center;
}

.home .images img {
    max-width: 100%;
    height: auto;
}

/* Text Content */
.home .content {
    flex: 1 1 50%;
}

.home .content h1 {
    font-size: 3.25rem; /* increased from 2.5rem */
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.home .content h1 span {
    color: #3bb78f; /* Health green accent */
}

.home .content p {
    font-size: 1.4rem; /* increased from 1.1rem */
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Appointment Button */
.home .button {
    padding: 14px 36px; /* increased from 12px 30px */
    background: #3bb78f;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem; /* increased from 1rem */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-transform: capitalize;
}

.home .button:hover {
    background: #2e9c78;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .home {
        padding: 60px 15px;
    }
    .home .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    .home .content h1 {
        font-size: 2.6rem; /* increased from 2rem */
    }
}

@media (max-width: 576px) {
    .home .content h1 {
        font-size: 2.3rem; /* increased from 1.8rem */
    }
    .home .button {
        padding: 12px 30px; /* increased from 10px 25px */
        font-size: 1.1rem; /* increased from 0.9rem */
    }
}

/* Health Info Section */
.health-info-section {
  padding: 60px 20px;
  background: #f4f9fc; /* subtle light blue background */
  font-family: "Roboto", sans-serif;
  color: #333;
}

.health-info-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.health-info-section .info-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  flex: 1 1 45%;
  min-width: 280px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #3bb78f; /* accent green */
}

.health-info-section .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.health-info-section h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #0188df; /* nice blue */
  text-transform: capitalize;
}

.health-info-section ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.3rem;
  line-height: 1.6;
}

.health-info-section ul li {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .health-info-section .container {
    flex-direction: column;
    gap: 30px;
  }
  .health-info-section .info-box {
    flex: 1 1 100%;
    text-align: center;
  }
  .health-info-section ul {
    padding-left: 0;
    list-style-type: none;
  }
  .health-info-section ul li::before {
    content: "• ";
    color: #3bb78f;
    font-weight: bold;
  }
}

/* ===================== */
/* Clinic Info Section CSS */
/* ===================== */
.clinic-info-section {
  background: #f9fbfc;
  padding: 70px 15px;
  font-family: "Roboto", Arial, sans-serif;
  color: #2e3a59;
}

.clinic-info-section .container {
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

/* Info block common styles */
.info-block {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow:
    0 6px 18px rgba(50, 50, 93, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #4ac18e;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-block:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(50, 50, 93, 0.1),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-block h2 {
  font-size: 2.6rem;
  color: #3a5068;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #4ac18e;
  padding-bottom: 8px;
  text-transform: uppercase;
}

/* About text */
.about-section p {
  font-size: 1.38rem;
  line-height: 1.75;
  color: #4a4a4a;
  letter-spacing: 0.01em;
}

.about-section p strong {
  color: #4ac18e;
  font-weight: 700;
}

/* Services list */
.services-section ul {
  list-style: none;
  padding-left: 0;
}

.services-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.32rem;
  color: #4a4a4a;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.services-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.4rem;
  color: #4ac18e;
}

/* Clinic hours */
.clinic-hours-section .hours-details {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.clinic-hours-section .hours-details > div {
  flex: 1 1 220px;
}

.clinic-hours-section h3 {
  font-size: 1.9rem;
  color: #4ac18e;
  font-weight: 700;
  margin-bottom: 8px;
}

.clinic-hours-section p {
  font-size: 1.3rem;
  color: #5a5a5a;
  margin: 0;
}

.clinic-hours-section p span {
  font-weight: 600;
  color: #2e3a59;
}

.appointment {
  font-weight: 700;
  font-size: 1.38rem;
  color: #2e3a59;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}

.appreciation {
  font-style: italic;
  font-size: 1.18rem;
  color: #777;
  border-top: 1px solid #e3e8ee;
  padding-top: 16px;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .clinic-info-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clinic-hours-section .hours-details {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 400px) {
  .info-block h2 {
    font-size: 2.2rem;
  }
  .about-section p,
  .services-section ul li,
  .clinic-hours-section p,
  .appointment {
    font-size: 1.2rem;
  }
  .clinic-hours-section h3 {
    font-size: 1.5rem;
  }
}


/* Footer section */
/* Footer Section Styling */
.footer-section {
  background: #e9f2f7; /* Soft light blue for a calm clinic vibe */
  color: #34495e; /* Dark slate text */
  font-family: "Roboto", sans-serif;
  padding: 50px 20px 30px;
  box-shadow: inset 0 8px 20px -10px #a3c4d5;
}

/* Container for left and right */
.footer-container {
  max-width: 1080px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Contact Info */
.footer-contact {
  flex: 1 1 60%;
  min-width: 280px;
}

.footer-contact h4 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 0.06em;
  border-bottom: 3px solid #2980b9;
  padding-bottom: 8px;
  max-width: fit-content;
}

.footer-contact address {
  font-style: normal;
  font-size: 1.35rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #2f3c4a;
}

.footer-contact p {
  font-size: 1.3rem;
  margin: 8px 0;
}

.footer-contact a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #1c5980;
  text-decoration: underline;
}

/* Social Links */
.footer-social {
  flex: 1 1 30%;
  min-width: 220px;
  text-align: right;
}

.footer-social h4 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 0.06em;
  border-bottom: 3px solid #2980b9;
  padding-bottom: 8px;
  max-width: fit-content;
  margin-left: auto;
}

.footer-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.3rem;
}

.footer-social a {
  color: #2980b9;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  padding: 8px 16px;
  border-radius: 30px;
  background: #d6e9fb;
  transition: all 0.3s ease;
  width: fit-content;
  margin-left: auto;
}

.footer-social a:hover {
  background: #2980b9;
  color: #fff;
  border-color: #1c5980;
}

/* Footer bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: #677d9a;
  border-top: 1px solid #b0c4db;
  padding-top: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-contact, 
  .footer-social {
    flex: none;
    min-width: auto;
    text-align: center;
  }

  .footer-social h4,
  .footer-contact h4 {
    margin-left: 0;
    border-bottom: 3px solid #2980b9;
    padding-bottom: 6px;
    display: inline-block;
  }

  .footer-social .social-links {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }

  .footer-social a {
    margin-left: 0;
  }
}


