/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: 'Nunito', sans-serif;
    background-color: #f9fcff;
    color: #333;
  }
  
  /* Header */
  .header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 119, 204, 0.1);
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    max-width: 1300px;
    margin: auto;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .logo span {
    font-size: 24px;
    color: #0077cc;
    font-weight: 700;
  }
  
  /* Navigation */
  .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    position: relative;
  }
  
  .nav-link::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #0077cc;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* Menu Toggle (for mobile) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0077cc;
    border-radius: 5px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav {
      position: absolute;
      top: 70px;
      right: 5%;
      background: #ffffff;
      width: 200px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-radius: 10px;
      display: none;
      flex-direction: column;
      padding: 20px;
    }
  
    .nav.active {
      display: flex;
    }
  
    .nav-list {
      flex-direction: column;
      gap: 20px;
    }
  
    .menu-toggle {
      display: flex;
    }
  }
  /* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #eaf6fd;
  }
  
  .hero-slider {
    height: 100%;
    display: flex;
    position: relative;
  }
  
  .hero-slide {
    flex: 0 0 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/img-3.avif') no-repeat center/cover;
    padding: 0 20px;
    transition: opacity 1s ease-in-out;
  }
  
  .hero-slide:nth-child(2) {
    background: url('images/img-4.avif') no-repeat center/cover;
  }
  
  .hero-slide:nth-child(3) {
    background: url('images/img-5.png') no-repeat center/cover;
  }
  
  .hero-slide.active {
    display: flex;
  }
  
  .hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.1);
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    color: #0077cc;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .hero-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
  }
  
  .hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0077cc;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .hero-btn:hover {
    background: #005fa3;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 28px;
    }
    .hero-content p {
      font-size: 16px;
    }
  }
  /* SERVICES SECTION */
.services {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 5%;
    background: #f1faff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0077cc;
    margin-bottom: 50px;
    text-align: center;
  }
  
  /* Services Slider */
  .services-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }
  
  .service-card {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.15);
    text-align: center;
    padding: 30px 20px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    color: #0077cc;
    margin-bottom: 15px;
  }
  
  .service-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #555;
  }
  
  /* Card Hover Effect */
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 119, 204, 0.2);
  }
  
  /* Hide scrollbar */
  .services-slider::-webkit-scrollbar {
    display: none;
  }
  
  .services-slider {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .service-card {
      flex: 0 0 80%;
    }
  }
  /* ABOUT SECTION */
.about {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #f1faff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
  }
  
  .about-content {
    max-width: 600px;
  }
  
  .about-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    color: #0077cc;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0077cc;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .about-btn:hover {
    background: #005fa3;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-content {
      max-width: 100%;
    }
  }
  .about-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
  }
  .about-content.show {
    opacity: 1;
    transform: translateY(0);
  }
  /* CALL TO ACTION SECTION */
.cta {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: url('images/img-8.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 204, 0.6); /* Light blue transparent overlay */
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
  }
  
  .cta-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .cta-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #0077cc;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #0077cc;
    color: #fff;
    border: 2px solid #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .cta-content h2 {
      font-size: 30px;
    }
    .cta-content p {
      font-size: 18px;
    }
    .cta-btn {
      font-size: 16px;
      padding: 12px 28px;
    }
  }
  .cta-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
  }
  .cta-content.show {
    opacity: 1;
    transform: translateY(0);
  }
  /* APPOINTMENT PREVIEW SECTION */
.appointment-preview {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color:white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    overflow: hidden;
  }
  
  .appointment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    z-index: 1;
  }
  
  .appointment-text {
    flex: 1;
    color:#0077cc;
  }
  
  .appointment-text h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .appointment-text p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .appointment-btn {
    padding: 14px 32px;
    background:#0077cc;
    color:white;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .appointment-btn:hover {
    background: #0077cc;
    color: #fff;
  }
  
  .appointment-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.3);
  }
  
  /* HIDDEN FORM */
  .appointment-form-container {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    padding: 30px 20px;
    transition: right 0.5s ease;
    z-index: 999;
  }
  
  .appointment-form-container.active {
    right: 0;
  }
  
  .appointment-form h3 {
    font-family: 'Nunito', sans-serif;
    color: #0077cc;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
  }
  
  .appointment-form input,
  .appointment-form select,
  .appointment-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  .submit-btn {
    width: 100%;
    background: #0077cc;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background: #005fa3;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .appointment-content {
      flex-direction: column;
      text-align: center;
    }
    .appointment-image img {
      max-width: 90%;
    }
  }
  /* FOOTER SECTION */
.footer {
    background-color: #0077cc;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    padding: 60px 5% 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    flex: 1 1 220px;
  }
  
  .footer-about h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .footer-about p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #ffcc00;
  }
  
  .footer-contact p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .footer-social a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: #ffcc00;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
  }
  
  .footer-bottom p {
    font-size: 14px;
    color: #e0e0e0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }













  /* Global Settings */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f8ff;
  }
  
  /* History Section */
  .history-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #e6f7ff;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
  }
  
  /* Text Area */
  .history-text {
    flex: 1;
    padding-right: 30px;
  }
  
  .history-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0077cc;
    margin-bottom: 20px;
  }
  
  .history-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0077cc;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #005fa3;
  }
  
  /* Image Area */
  .history-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .history-image img {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 119, 204, 0.3);
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .history-section {
      flex-direction: column;
      text-align: center;
      padding: 50px 5%;
    }
  
    .history-text {
      padding-right: 0;
      margin-bottom: 30px;
    }
  
    .history-image img {
      max-width: 100%;
    }
  }


  /* Base Settings */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f8ff;
  }
  
  /* Doctors Section */
  .doctors-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #e6f7ff;
    min-height: 100vh;
    flex-wrap: wrap;
  }
  
  /* Text Area */
  .doctors-text {
    flex: 1;
    padding-right: 30px;
  }
  
  .doctors-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0077cc;
    margin-bottom: 20px;
  }
  
  .doctors-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0077cc;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #005fa3;
  }
  
  /* Doctors Grid */
  .doctors-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .doctor-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 119, 204, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .doctor-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .doctor-card h3 {
    font-size: 20px;
    color: #0077cc;
    margin: 10px 0 5px;
  }
  
  .doctor-card p {
    font-size: 16px;
    color: #666;
  }
  
  /* Hover Effects */
  .doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 119, 204, 0.25);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .doctors-section {
      flex-direction: column;
      text-align: center;
    }
  
    .doctors-text {
      padding-right: 0;
      margin-bottom: 40px;
    }
  
    .doctors-grid {
      gap: 20px;
    }
  }
  /* Reset and Fonts */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f8ff;
  }
  
  /* About Hero Section */
  .about-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #e6f7ff;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
  }
  
  /* Text Content */
  .about-text {
    flex: 1;
    padding-right: 30px;
  }
  
  .about-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0077cc;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0077cc;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #005fa3;
  }
  
  /* Image Section */
  .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 119, 204, 0.3);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-hero-section {
      flex-direction: column;
      text-align: center;
      padding: 50px 5%;
    }
  
    .about-text {
      padding-right: 0;
      margin-bottom: 30px;
    }
  
    .about-image img {
      max-width: 100%;
    }
  }

  /* Global Settings */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #f4f9fc;
    scroll-behavior: smooth;
  }
  
  /* Mission and Awards Section */
  .mission-awards-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #e0f7fa;
    padding: 100px 5%;
    position: relative;
    z-index: 1;
  }
  
  /* Mission Content */
  .mission-content {
    flex: 1;
    min-width: 280px;
    padding-right: 30px;
  }
  
  .mission-content h2 {
    font-size: 40px;
    color: #0077cc;
    font-weight: 900;
    margin-bottom: 20px;
  }
  
  .mission-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Awards Content */
  .awards-content {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .award-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 119, 204, 0.15);
    transition: transform 0.3s ease-in-out;
  }
  
  .award-card:hover {
    transform: translateY(-10px);
  }
  
  .award-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .award-card h4 {
    font-size: 22px;
    color: #0077cc;
    margin-bottom: 10px;
  }
  
  .award-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .mission-awards-section {
      flex-direction: column;
      text-align: center;
      padding: 50px 5%;
    }
  
    .awards-content {
      flex-direction: column;
      align-items: center;
    }
  }
  /* Base Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5fbff;
  }
  
  /* Services Hero Section */
  .services-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #e6f7ff;
    min-height: 90vh;
    position: relative;
  }
  
  /* Hero Content */
  .hero-content {
    flex: 1;
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0077cc;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0077cc;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #005fa3;
  }
  
  /* Hero Image */
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-hero {
      flex-direction: column-reverse;
      text-align: center;
      padding: 60px 20px;
    }
    
    .hero-image {
      margin-bottom: 30px;
    }
    
    .hero-content h1 {
      font-size: 36px;
    }
  }



  /* Base Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5fbff;
  }
  
  /* Services List Section */
  .services-list-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #e6f7ff;
    min-height: 90vh;
  }
  
  /* Services Text */
  .services-text {
    flex: 1;
    max-width: 600px;
  }
  
  .services-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0077cc;
    margin-bottom: 20px;
  }
  
  .services-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }
  
  .services-items {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .services-items li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
  }
  
  .services-items li i {
    color: #0077cc;
    margin-right: 10px;
    font-size: 20px;
  }
  
  /* Button */
  .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0077cc;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #005fa3;
  }
  
  /* Services Image */
  .services-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .services-image img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-list-section {
      flex-direction: column-reverse;
      text-align: center;
      padding: 60px 20px;
    }
    
    .services-image {
      margin-bottom: 30px;
    }
    
    .services-text h2 {
      font-size: 32px;
    }
  }




 /* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #f0faff;
  }
  
  /* Appointment Form Section */
  .appointment-form-section {
    background: linear-gradient(rgba(0, 119, 204, 0.05), rgba(0, 119, 204, 0.05)), url('https://images.unsplash.com/photo-1600508770000-e16efc03f7f7?crop=entropy&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .form-container {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
    text-align: center;
  }
  
  .form-container h2 {
    color: #0077cc;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 36px;
  }
  
  .form-container p {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
  }
  
  /* Form Styling */
  #appointmentForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .input-group input,
  .input-group select {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f9f9f9;
  }
  
  textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-height: 120px;
    resize: vertical;
    font-size: 16px;
    background-color: #f9f9f9;
  }
  
  /* Button */
  .btn-submit {
    padding: 14px;
    background-color: #0077cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-submit:hover {
    background-color: #005fa3;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .input-group {
      flex-direction: column;
    }
  
    .form-container {
      padding: 30px 20px;
    }
  }








  /* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  /* Contact Hero Section */
  .contact-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 119, 204, 0.5), rgba(0, 119, 204, 0.5)),
                url('images/img-15.avif') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
  }
  
  /* Hero Content */
  .hero-content {
    max-width: 700px;
  }
  
  .hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  /* Contact Button */
  .btn-contact {
    padding: 14px 30px;
    background-color: #ffffff;
    color: #0077cc;
    font-weight: 600;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .btn-contact:hover {
    background-color: #0077cc;
    color: #ffffff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  }



/* Reset and base setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0faff;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Contact Us Section */
  .contact-us-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 119, 204, 0.3), rgba(0, 119, 204, 0.3)),
                url('https://images.unsplash.com/photo-1600508770000-e16efc03f7f7?crop=entropy&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 60vh;
    color: #fff;
  }
  
  .contact-info {
    flex: 1;
    padding: 20px;
  }
  
  .contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .contact-info i {
    color: #0077cc;
    margin-right: 10px;
  }
  
  /* Contact Form Container */
  .contact-form-container {
    flex: 1;
    max-width: 500px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 119, 204, 0.2);
  }
  
  .contact-form-container h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0077cc;
  }
  
  .input-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .input-group input {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f9f9f9;
  }
  
  textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-height: 120px;
    resize: vertical;
    font-size: 16px;
    background-color: #f9f9f9;
  }
  
  .btn-submit {
    padding: 14px 30px;
    background-color: #0077cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-submit:hover {
    background-color: #005fa3;
  }
  
  /* Map Section */
  .map-section {
    padding: 40px;
    background-color: #fff;
  }
  
  .map-section h2 {
    font-size: 36px;
    color: #0077cc;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .map-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }
  
  iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-us-section {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-info {
      margin-bottom: 20px;
      text-align: center;
    }
  
    .contact-form-container {
      max-width: 90%;
    }
  }
  
  
  






  