html {
  scroll-behavior: smooth;
}
body{
  padding: 0;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 1000;

  width: 100%;

  background: #ffffff;
}

/* =========================================================
   COMMON HEADER CONTAINER
========================================================= */

.header-container {
  width: 88%;
  max-width: 1200px;

  margin: 0 auto;
}

/* =========================================================
   TOP HEADER
========================================================= */

.header-top {
  width: 100%;

  background: #ffffff;
}

.header-top .header-container {
  min-height: 110px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

/* =========================================================
   LOGO
========================================================= */

.site-logo {
  flex-shrink: 0;

  display: flex;
  align-items: center;
}

.site-logo a {
  display: block;
}

.site-logo img {
  display: block;

  width: 290px;
  height: auto;
}

/* =========================================================
   HEADER CONTACT
========================================================= */

.header-contact {
  margin-left: auto;

  color: #163b78;

  font-size: 15px;

  line-height: 1.5;

  text-align: left;
}

/* Emergency */

.emergency-line {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 2px;

  color: #163b78;

  font-size: 16px;
  font-weight:500;
}

.phone-icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: #f7941d;

  font-size: 24px;

  font-weight: 700;

  transform: rotate(-35deg);
}

/* Appointment */

.appointment-line {
  color: #163b78;

  font-size: 18px;

  white-space: nowrap;
}

.appointment-line a {
  color: #163b78;

  text-decoration: none;
}

.appointment-line a:hover {
  color: #f7941d;
}

.appointment-line span {
  margin: 0 2px;
}

/* =========================================================
   BLUE NAVIGATION BAR
========================================================= */

.header-navigation {
  width: 100%;

  min-height: 60px;

  background: #073b82;
}

.header-navigation .header-container {
  min-height: 60px;

  display: flex;
  align-items: center;
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
  width: 100%;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  margin: 0;
  padding: 0;

  list-style: none;
}

.main-navigation li {
  position: relative;

  margin: 0;
  padding: 0;
}

.main-navigation a {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 60px;

  padding: 0 3px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 600;

  line-height: 1;

  text-decoration: none;

  white-space: nowrap;

  transition: color 0.3s ease;
}

/* Hover */

.main-navigation a:hover {
  color: #ffffff;
}

/* =========================================================
   ACTIVE MENU
========================================================= */

.main-navigation li.active a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  width: 45px;
  height: 4px;

  margin: auto;

  background: #26a9ed;

  border-radius: 2px 2px 0 0;
}

/* =========================================================
   DROPDOWN PLUS
========================================================= */

.dropdown-icon {
  display: inline-block;

  margin-left: 5px;

  font-size: 15px;
  font-weight: 400;
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 7px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: #073b82;

  transition: all 0.3s ease;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  .header-container {
    width: 88%;
    max-width: 1200px;
  }

  .site-logo img {
    width: 290px;
  }

  .main-navigation a {
    font-size: 16px;
  }
}

/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1199px) {
  .header-container {
    width: 92%;
  }

  .header-top .header-container {
    min-height: 95px;
  }

  .site-logo img {
    width: 240px;
  }

  .header-contact {
    font-size: 13px;
  }

  .emergency-line {
    font-size: 13px;
  }

  .appointment-line {
    font-size: 13px;
  }

  .header-navigation,
  .header-navigation .header-container {
    min-height: 55px;
  }

  .main-navigation a {
    min-height: 55px;

    font-size: 11px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .header-container {
    width: 94%;
  }

  .header-top .header-container {
    min-height: 85px;
  }

  .site-logo img {
    width: 210px;
  }

  .header-contact {
    font-size: 11px;
  }

  .emergency-line {
    font-size: 11px;
  }

  .appointment-line {
    font-size: 11px;
  }

  .phone-icon {
    font-size: 18px;
  }

  .header-navigation,
  .header-navigation .header-container {
    min-height: 50px;
  }

  .main-navigation a {
    min-height: 50px;

    font-size: 9px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .header-container {
    width: calc(100% - 30px);
  }

  /* Top */

  .header-top .header-container {
    min-height: 72px;

    justify-content: space-between;
  }

  /* Logo */

  .site-logo img {
    width: 165px;
  }

  /* Hide desktop contact */

  .header-contact {
    display: none;
  }

  /* Mobile button */

  .mobile-menu-toggle {
    display: block;
  }

  /* Navigation */

  .header-navigation {
    display: none;

    min-height: auto;

    background: #073b82;
  }

  .header-navigation.mobile-menu-open {
    display: block;
  }

  .header-navigation .header-container {
    display: block;

    min-height: auto;
  }

  .main-navigation ul {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    justify-content: flex-start;

    width: 100%;
  }

  .main-navigation li {
    width: 100%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-navigation a {
    min-height: 45px;

    justify-content: space-between;

    padding: 0 5px;

    font-size: 13px;
  }

  /* Active */

  .main-navigation li.active a::after {
    left: 0;
    right: auto;

    bottom: 0;

    width: 45px;
  }

  /* Hamburger active */

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .header-top .header-container {
    min-height: 65px;
  }

  .site-logo img {
    width: 145px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 55px 0 0;

  background: #073c8b;

  color: #ffffff;
}

.site-footer .container {
  width: 90%;
  max-width: 1200px;

  margin: 0 auto;
}

/* Footer Grid */

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr
    1fr
    1.2fr
    1.2fr;

  gap: 45px;

  padding-bottom: 45px;
}

/* Footer Logo */

.footer-logo {
  display: inline-block;

  margin-bottom: 15px;
}

.footer-logo img {
  width: 170px;
  height: auto;
}

/* Footer Heading */

.footer-column h3 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;
}

/* Footer Text */

.footer-column p {
  margin: 0 0 12px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 11px;
  line-height: 1.7;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.85);

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #45c7c7;
}

/* Footer Lists */

.footer-column ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column li a {
  font-size: 11px;
}

/* Footer Bottom */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 10px;
}

.footer-legal {
  display: flex;

  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);

  font-size: 10px;
}

/* =========================================================
   FOOTER TABLET
========================================================= */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
  }
}

/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 767px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 30px;

    padding-bottom: 30px;
  }

  .footer-column {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;

    justify-content: center;

    gap: 12px;

    padding: 20px 0;

    text-align: center;
  }

  .footer-legal {
    justify-content: center;

    flex-wrap: wrap;
  }
}


/* =========================================================
   BOTTOM COPYRIGHT STRIP
========================================================= */

.bottom-strip {
    width: 100%;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
}


/* =========================================================
   CONTAINER
========================================================= */

.bottom-strip-container {
    width: 98%;

    max-width: 1400px;

    min-height: 58px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;
}


/* =========================================================
   LEFT LINKS
========================================================= */

.bottom-links {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 5px;

    white-space: nowrap;
}

.bottom-links a {
    color: #2589e8;

    font-size: 18px;

    line-height: 1.5;

    text-decoration: none;

    transition: color .3s ease;
}

.bottom-links a:hover {
    color: #063b8a;
}

.bottom-links span {
    color: #2589e8;

    font-size: 15px;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.copyright-text {
    color: #a4a4a4;

    font-size: 15px;

    line-height: 1.5;

    text-align: right;

    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .bottom-strip-container {
        width: 94%;

        min-height: 55px;

        gap: 15px;
    }

    .bottom-links a,
    .bottom-links span,
    .copyright-text {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .bottom-strip-container {
        width: 90%;

        padding: 15px 0;

        flex-direction: column;

        justify-content: center;

        gap: 10px;

        text-align: center;
    }


    .bottom-links {
        justify-content: center;

        white-space: normal;

        text-align: center;

        line-height: 1.8;
    }


    .bottom-links a,
    .bottom-links span {
        font-size: 11px;
    }


    .copyright-text {
        white-space: normal;

        font-size: 10px;

        text-align: center;

        line-height: 1.6;
    }

}
/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 767px) {
  .main-navigation.mobile-menu-open {
    display: block;

    position: absolute;

    top: 70px;
    left: 0;

    width: 100%;

    padding: 15px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .main-navigation.mobile-menu-open ul {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;
  }

  .main-navigation.mobile-menu-open li {
    border-bottom: 1px solid #eeeeee;
  }

  .main-navigation.mobile-menu-open a {
    padding: 13px 5px;

    font-size: 12px;
  }

  /* Hamburger animation */

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-toggle span {
    transition: all 0.3s ease;
  }
}

/* =========================================================
   LANDING PAGE
========================================================= */

.landing-page {
  width: 100%;
  overflow: hidden;
  color: #173b82;
  background: #ffffff;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

/* =========================================================
   COMMON
========================================================= */

.landing-page .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 75px 0;
}

.section-heading {
  max-width: 950px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-label {
  display: block;
  margin-bottom: 8px;

  color: #e4a928;

  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.section-heading h2 {
  margin: 0 0 15px;

  color: #0a3380;

  font-size: 42px;
  line-height: 1.25;
  font-weight: 600;
}

.section-heading p {
  max-width: 950px;
  margin: 0 auto;

  color: #666;

  font-size: 18px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 95px;
  padding: 15px 30px;

  border: 0;
  border-radius: 3px;

  font-size: 18px;
  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-primary {
  background: #2196ed;
  color: #ffffff;
}

.btn-primary:hover {
  background: #073c8b;
}

.btn-teal {
  background: #45c7c7;
  color: #ffffff;
}

.btn-teal:hover {
  background: #073c8b;
}

.section-button {
  margin-top: 35px;
  text-align: center;
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;

  min-height: 550px;

  display: flex;
  align-items: center;

  /* IMAGE IS INSIDE assets/img/ */
  background-image: url("img/slider1-bg.webp");

  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* White overlay on LEFT side */

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.97) 25%,
    rgba(255, 255, 255, 0.8) 45%,
    rgba(255, 255, 255, 0.25) 70%,
    rgba(255, 255, 255, 0) 100%
  );

  z-index: 1;
}

.hero-section .container {
  position: relative;

  z-index: 2;
}

.hero-content {
  max-width: 670px;

  padding: 65px 0;
}

.hero-small-title {
  display: inline-block;

  color: #e5a92a;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
}

.hero-content h1 {
  margin: 12px 0 20px;

  color: #0a3380;

  font-family: Georgia, serif;

  font-size: 55px;

  line-height: 1.12;
}

.hero-content p {
  max-width: 490px;

  margin: 0 0 25px;

  color: #0a3380;

  font-size: 19px;

  line-height: 1.6;
}

.hero-buttons {
  display: flex;

  align-items: center;

  gap: 22px;
}

.hero-link {
  color: #1774c7;

  font-size: 16px;

  font-weight: 600;

  text-decoration: none;
}

.hero-link span {
  margin-left: 5px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .hero-section {
    min-height: 390px;

    background-position: center right;
  }

  .hero-content {
    max-width: 500px;

    padding: 55px 0;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .hero-section {
    min-height: 520px;

    align-items: flex-end;

    background-position: 65% center;

    background-size: cover;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.95) 38%,
      rgba(255, 255, 255, 0.45) 70%,
      rgba(255, 255, 255, 0.05) 100%
    );
  }

  .hero-content {
    max-width: 100%;

    padding: 40px 0 45px;
  }

  .hero-content h1 {
    font-size: 32px;

    line-height: 1.15;
  }

  .hero-content p {
    max-width: 100%;

    font-size: 13px;

    line-height: 1.6;
  }

  .hero-buttons {
    flex-wrap: wrap;

    gap: 15px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .hero-section {
    min-height: 500px;

    background-position: 65% center;
  }

  .hero-content h1 {
    font-size: 29px;
  }

  .hero-content p {
    font-size: 12px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    min-height: 390px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .services-grid {
    gap: 15px;
  }

  .horizontal-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .review-card img,
  .guide-card img {
    height: 220px;
  }

  .blog-grid {
    gap: 15px;
  }

  .appointment-wrapper {
    grid-template-columns: 160px 1fr;
  }

  .appointment-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment-btn {
    width: 100%;
  }

  .contact-grid {
    gap: 25px;
  }
}
/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;

  grid-template-columns: 42% 58%;

  align-items: center;

  gap: 55px;
}

/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image-wrapper {
  position: relative;

  width: 100%;

  display: flex;
  align-items: center;
}

.about-image {
  display: block;

  width: 100%;
  max-width: 400px;

  height: 450px;

  margin: 0;

  object-fit: cover;

  border-radius: 12px;
}

/* =========================================================
   CIRCLE IMAGE
========================================================= */

.about-circle-image {
  position: absolute;

  /*
       Moves circle onto the right edge
       of the main image
    */
  left: 78%;

  /*
       Vertical center
    */
  top: 50%;

  width: 150px;
  height: 150px;

  transform: translate(-50%, -50%);

  object-fit: contain;

  z-index: 3;
}

/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
  max-width: 600px;
}

.about-content .section-label {
  display: block;

  margin-bottom: 8px;

  color: #f39a18;

  font-size: 18px;

  font-weight: 600;

  letter-spacing: 0.5px;
}

.about-content h2 {
  margin: 0 0 22px;

  color: #0a3380;

  font-size: 42px;

  line-height: 1.2;

  font-weight: 700;
}

.about-content p {
  margin: 0 0 12px;

  color: #53627c;

  font-size: 18px;

  line-height: 1.6;
}

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  margin-top: 8px;

  color: #40c7ca;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;
}

.text-link span {
  font-size: 25px;

  line-height: 12px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 42% 58%;

    gap: 35px;
  }

  .about-image {
    max-width: 330px;

    height: 380px;
  }

  .about-circle-image {
    width: 115px;
    height: 115px;

    left: 82%;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;

    line-height: 1.7;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .about-image-wrapper {
    justify-content: center;
  }

  .about-image {
    width: 100%;

    max-width: 360px;

    height: auto;

    aspect-ratio: 1 / 1.1;

    object-fit: cover;
  }

  .about-circle-image {
    left: auto;

    right: 2%;

    top: 50%;

    width: 105px;
    height: 105px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 28px;

    line-height: 1.25;
  }

  .about-content p {
    font-size: 16px;

    line-height: 1.6;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .about-image {
    max-width: 320px;
  }

  .about-circle-image {
    width: 85px;
    height: 85px;

    right: 0;
  }

  .about-content h2 {
    font-size: 25px;
  }
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
  background: #f8f8f8;
}

/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  max-width: 1100px;

  margin: 0 auto;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
  min-height: 230px;

  padding: 30px;

  text-align: center;

  background: #ffffff;

  border-radius: 5px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.025);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
  width: 110px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 18px;

  border: 1px solid #57cbd0;

  border-radius: 50%;

  background: #ffffff;

  overflow: hidden;
}

/* Icon Image */

.service-icon img {
  display: block;

  width: 70px;
  height: 70px;

  object-fit: contain;
}

/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card h3 {
  margin: 0 0 10px;

  color: #063b8a;

  font-size: 24px;

  line-height: 1.3;

  font-weight: 600;
}

/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.service-card p {
  max-width: 420px;

  margin: 0 auto;

  color: #53627c;

  font-size: 16px;

  line-height: 1.6;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .service-card {
    min-height: auto;

    padding: 25px 20px;
  }

  .service-icon {
    width: 65px;
    height: 65px;
  }

  .service-icon img {
    width: 38px;
    height: 38px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    max-width: 350px;

    font-size: 16px;
  }
}
/* =========================================================
   DOCTORS / SURGEONS
========================================================= */

.doctors-section {
    background: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.doctors-section .section-heading {
    text-align: center;
}

.doctors-section .section-heading h2 {
    max-width: 950px;

    margin: 0 auto 30px;

    color: #063b8a;

    font-size: 36px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================================
   DOCTORS GRID
========================================================= */

.doctors-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    justify-content: center;

    max-width: 650px;

    margin: 0 auto;
}


/* =========================================================
   DOCTOR CARD
========================================================= */

.doctor-card {
    padding: 10px;

    text-align: left;
}


/* =========================================================
   DOCTOR IMAGE
========================================================= */

.doctor-image {
    width: 100%;

    max-width: 390px;

    height: 390px;

    margin: 0 auto 15px;

    overflow: hidden;

    background: #f5f5f5;
}


.doctor-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =========================================================
   DOCTOR NAME
========================================================= */

.doctor-card h3 {
    margin: 0 0 7px;

    color: #143d84;

    font-size: 24px;

    line-height: 1.4;

    font-weight: 600;
}


/* =========================================================
   DOCTOR DESCRIPTION
========================================================= */

.doctor-card p {
    max-width: 300px;

    margin: 0;

    color: #666666;

    font-size: 18px;

    line-height: 1.6;
}


/* =========================================================
   VIEW MORE
========================================================= */

.doctors-section .section-button {
    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .doctors-section .section-heading h2 {
        max-width: 750px;

        font-size: 30px;

        line-height: 1.35;
    }


    .doctors-grid {
        max-width: 620px;

        gap: 25px;
    }


    .doctor-image {
        max-width: 270px;

        height: 270px;
    }


    .doctor-card h3 {
        font-size: 16px;
    }


    .doctor-card p {
        font-size: 11px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .doctors-section .section-heading {
        margin-bottom: 25px;
    }


    .doctors-section .section-heading h2 {
        max-width: 100%;

        margin-bottom: 0;

        font-size: 24px;

        line-height: 1.4;
    }


    /* Single column */

    .doctors-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 30px;

        max-width: 100%;

        margin: 0 auto;
    }


    /* Doctor Card */

    .doctor-card {
        width: 100%;

        padding: 0;

        text-align: left;
    }


    /* Doctor Image */

    .doctor-image {
        width: 100%;

        max-width: 300px;

        height: 300px;

        margin: 0 auto 15px;
    }


    /* Doctor Name */

    .doctor-card h3 {
        max-width: 300px;

        margin: 0 auto 7px;

        font-size: 16px;
    }


    /* Description */

    .doctor-card p {
        max-width: 300px;

        margin: 0 auto;

        font-size: 16px;

        line-height: 1.6;
    }


    /* Button */

    .doctors-section .section-button {
        margin-top: 30px;
    }

}



/* =========================================================
   PATIENT REVIEWS
========================================================= */

.reviews-section {
  background: #ffffff;
}

/* =========================================================
   REVIEWS GRID
========================================================= */

.reviews-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;
}

/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #ffffff;

  border-radius: 0;
}

/* =========================================================
   YOUTUBE VIDEO WRAPPER
========================================================= */

.review-video {
  position: relative;

  width: 100%;

  /*
     * Portrait video ratio
     * Similar to your reference screenshot
     */
  aspect-ratio: 9 / 16;

  overflow: hidden;

  background: #000000;

  border-radius: 0;
}

/* =========================================================
   YOUTUBE IFRAME
========================================================= */

.review-video iframe {
  position: absolute;

  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  border: 0;

  background: #000000;
}

/* =========================================================
   REVIEW CARD HOVER
========================================================= */

.review-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   SECTION BUTTON
========================================================= */

.reviews-section .section-button {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: 40px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {
  .reviews-grid {
    gap: 14px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .review-video {
    aspect-ratio: 9 / 16;
  }

  .reviews-section .section-button {
    margin-top: 35px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .reviews-grid {
    display: flex;

    width: 100%;

    overflow-x: auto;

    gap: 15px;

    padding: 0 0 10px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 47%;

    width: 47%;

    scroll-snap-align: start;

    box-shadow: none;
  }

  .review-card:hover {
    transform: none;

    box-shadow: none;
  }

  .review-video {
    width: 100%;

    aspect-ratio: 9 / 16;
  }

  .reviews-section .section-button {
    margin-top: 25px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .reviews-grid {
    gap: 12px;
  }

  .review-card {
    flex: 0 0 72%;

    width: 72%;
  }

  .review-video {
    aspect-ratio: 9 / 16;
  }
}

/* =========================================================
   DOCTOR'S GUIDES
========================================================= */

.guides-section {
  background: #f8f8f8;
}

/* =========================================================
   GUIDES GRID
========================================================= */

.guides-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;
}

/* =========================================================
   GUIDE CARD
========================================================= */

.guide-card {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #ffffff;

  border-radius: 0;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover */

.guide-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   YOUTUBE VIDEO
========================================================= */

.guide-video {
  position: relative;

  width: 100%;

  /*
     * Portrait video
     * Same style as Patient Reviews
     */
  aspect-ratio: 9 / 16;

  overflow: hidden;

  background: #000000;
}

/* =========================================================
   YOUTUBE IFRAME
========================================================= */

.guide-video iframe {
  position: absolute;

  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  border: 0;

  background: #000000;
}

/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.guides-section .section-button {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: 40px;
}

/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {
  .guides-grid {
    gap: 14px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .guide-video {
    aspect-ratio: 9 / 16;
  }

  .guides-section .section-button {
    margin-top: 35px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .guides-grid {
    display: flex;

    width: 100%;

    overflow-x: auto;

    gap: 15px;

    padding: 0 0 10px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .guides-grid::-webkit-scrollbar {
    display: none;
  }

  .guide-card {
    flex: 0 0 47%;

    width: 47%;

    scroll-snap-align: start;
  }

  .guide-card:hover {
    transform: none;

    box-shadow: none;
  }

  .guide-video {
    width: 100%;

    aspect-ratio: 9 / 16;
  }

  .guides-section .section-button {
    margin-top: 25px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .guides-grid {
    gap: 12px;
  }

  .guide-card {
    flex: 0 0 72%;

    width: 72%;
  }

  .guide-video {
    aspect-ratio: 9 / 16;
  }
}

/* =========================================================
   ACHIEVEMENTS
========================================================= */

.achievements-section {
  background: #ffffff;
}

.achievements-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 25px;
}

.achievement-item {
  display: flex;
  justify-content: center;
}

.achievement-item img {
  width: 100%;
  max-width: 170px;
  height: 170px;

  object-fit: contain;
}

/* =========================================================
   BLOG
========================================================= */

.blog-section {
  background: #f8f8f8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  overflow: hidden;

  background: #ffffff;

  border-radius: 3px;
}

.blog-image {
  height: 190px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin: 0 0 10px;

  color: #063b8a;

  font-size: 15px;
  line-height: 1.4;
}

.blog-content p {
  margin: 0 0 12px;

  color: #777;

  font-size: 11px;
  line-height: 1.6;
}

.blog-content a {
  color: #2196ed;

  font-size: 11px;
  font-weight: 600;
}

/* =========================================================
   APPOINTMENT
========================================================= */

.appointment-section {
  padding: 35px 0;

  background: #f7f7f7;
}

.appointment-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;

  min-height: 80px;

  overflow: hidden;

  border-radius: 2px;

  background: #ffffff;
}

.appointment-title {
  display: flex;
  align-items: center;

  padding: 20px;

  background: #28a9ed;
}

.appointment-title h2 {
  margin: 0;

  color: #ffffff;

  font-size: 18px;
  line-height: 1.35;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;

  align-items: center;

  padding: 15px;
}

.form-group input {
  width: 100%;
  height: 40px;

  padding: 0 12px;

  border: 1px solid #e6e6e6;
  border-radius: 2px;

  outline: none;

  color: #555;

  font-size: 11px;
}

.form-group input:focus {
  border-color: #2196ed;
}

.appointment-btn {
  height: 40px;

  padding: 0 18px;

  border: 0;
  border-radius: 2px;

  background: #073c8b;

  color: #ffffff;

  font-size: 10px;
  font-weight: 700;

  cursor: pointer;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 50px;
}

.contact-column h2 {
  margin: 0 0 20px;

  color: #063b8a;

  font-size: 18px;
}

.contact-item {
  margin-bottom: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;

  color: #333;

  font-size: 11px;
}

.contact-item p {
  margin: 2px 0;

  color: #777;

  font-size: 10px;
  line-height: 1.6;
}

.contact-item a {
  color: #218bd4;
}

.contact-links {
  margin: 0;
  padding: 0;

  list-style: none;
}

.contact-links li {
  margin-bottom: 9px;
}

.contact-links a {
  color: #666;

  font-size: 11px;
}

.contact-links a:hover {
  color: #2196ed;
}

.map-wrapper {
  width: 100%;
  height: 230px;

  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;

  border: 0;
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-actions {
    position: fixed;

    left: 0;
    right: 0;

    bottom: 20%;

    transform: translateY(-50%);

    z-index: 9999;

    width: 100%;

    pointer-events: none;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.floating-actions a {
    position: absolute;

    top: 0;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.20);

    pointer-events: auto;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   CALL - LEFT
========================================================= */

.floating-call {
    left: 18px;

    background: transparent;
}


/* =========================================================
   WHATSAPP - RIGHT
========================================================= */

.floating-whatsapp {
    right: 18px;

    background: transparent;
}


/* =========================================================
   ICON IMAGE
========================================================= */

.floating-actions img {
    display: block;

    width: 50px;
    height: 50px;

    object-fit: contain;
}


/* =========================================================
   HOVER
========================================================= */

.floating-call:hover {
    transform: scale(1.08);

    box-shadow:
        0 6px 20px rgba(80, 108, 245, 0.35);
}


.floating-whatsapp:hover {
    transform: scale(1.08);

    box-shadow:
        0 6px 20px rgba(32, 196, 107, 0.35);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .floating-call {
        left: 12px;
    }

    .floating-whatsapp {
        right: 12px;
    }

    .floating-actions a {
        width: 52px;
        height: 52px;
    }

    .floating-actions img {
        width: 27px;
        height: 27px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .floating-call {
        left: 8px;
    }

    .floating-whatsapp {
        right: 8px;
    }

    .floating-actions a {
        width: 48px;
        height: 48px;
    }

    .floating-actions img {
        width: 25px;
        height: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .floating-call {
        left: 6px;
    }

    .floating-whatsapp {
        right: 6px;
    }

    .floating-actions a {
        width: 45px;
        height: 45px;
    }

    .floating-actions img {
        width: 23px;
        height: 23px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .landing-page .container {
    width: calc(100% - 30px);
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 16px;
  }

  /* HERO */

  .hero-section {
    min-height: 520px;

    align-items: flex-end;

    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.85) 45%,
      rgba(255, 255, 255, 0.15) 100%
    );
  }

  .hero-content {
    padding: 40px 0 45px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }

  /* ABOUT */

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    max-width: 300px;
  }

  .about-content {
    text-align: left;
  }

  .about-content h2 {
    font-size: 25px;
  }

  /* SERVICES */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 25px 20px;
  }

  /* DOCTORS */

  

  /* REVIEWS */

  .horizontal-cards {
    display: flex;

    overflow-x: auto;

    gap: 12px;

    padding-bottom: 10px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }

  .horizontal-cards::-webkit-scrollbar {
    display: none;
  }

  .review-card,
  .guide-card {
    flex: 0 0 46%;

    scroll-snap-align: start;
  }

  .review-card img,
  .guide-card img {
    height: 245px;
  }

  /* ACHIEVEMENTS */

  .achievements-slider {
    display: flex;

    overflow-x: auto;

    gap: 15px;

    padding-bottom: 10px;

    scrollbar-width: none;
  }

  .achievements-slider::-webkit-scrollbar {
    display: none;
  }

  .achievement-item {
    flex: 0 0 110px;
  }

  .achievement-item img {
    width: 110px;
    height: 110px;
  }

  /* BLOG */

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-image {
    height: 210px;
  }

  /* APPOINTMENT */

  .appointment-section {
    padding: 30px 0;
  }

  .appointment-wrapper {
    display: block;
  }

  .appointment-title {
    justify-content: center;

    text-align: center;
  }

  .appointment-title h2 {
    font-size: 20px;
  }

  .appointment-form {
    grid-template-columns: 1fr;

    padding: 20px;
  }

  /* CONTACT */

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .map-wrapper {
    height: 250px;
  }

  /* FLOATING BUTTON */

  .floating-actions {
    right: 10px;
    bottom: 15px;
  }

  .floating-actions a {
    width: 38px;
    height: 38px;

    font-size: 16px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .hero-section {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .review-card,
  .guide-card {
    flex: 0 0 43%;
  }

  .review-card img,
  .guide-card img {
    height: 215px;
  }

  

 


}



/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
    position: relative;

    width: 100%;

    min-height: 350px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-image: url("img/portfolio_10.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================================
   CTA OVERLAY
========================================================= */

.cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 55, 126, 0.94) 0%,
            rgba(7, 66, 143, 0.88) 45%,
            rgba(7, 66, 143, 0.55) 75%,
            rgba(7, 66, 143, 0.35) 100%
        );

    z-index: 1;
}


/* =========================================================
   CTA CONTAINER
========================================================= */

.cta-section .container {
    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {
    max-width: 700px;

    padding: 65px 0;
}


/* =========================================================
   CTA LABEL
========================================================= */

.cta-label {
    display: inline-block;

    margin-bottom: 16px;

    color: #f3a21b;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   CTA HEADING
========================================================= */

.cta-content h2 {
    margin: 0 0 24px;

    color: #ffffff;

    font-size: 42px;

    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   CTA DESCRIPTION
========================================================= */

.cta-content p {
    max-width: 600px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 175px;

    padding: 13px 22px;

    background: #20c46b;

    color: #ffffff;

    border-radius: 3px;

    font-size: 18px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.cta-button span {
    font-size: 18px;

    line-height: 1;
}


.cta-button:hover {
    background: #159b53;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cta-section {
        min-height: 320px;

        background-position: center;
    }


    .cta-content {
        max-width: 600px;

        padding: 55px 0;
    }


    .cta-content h2 {
        font-size: 34px;
    }


    .cta-content p {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cta-section {
        min-height: 430px;

        background-position: center;
    }


    .cta-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 55, 126, 0.72) 0%,
                rgba(5, 55, 126, 0.94) 60%,
                rgba(5, 55, 126, 0.98) 100%
            );
    }


    .cta-section .container {
        width: 88%;
    }


    .cta-content {
        max-width: 100%;

        padding: 55px 0;

        text-align: center;
    }


    .cta-label {
        font-size: 10px;
    }


    .cta-content h2 {
        font-size: 28px;

        line-height: 1.25;
    }


    .cta-content p {
        font-size: 13px;

        line-height: 1.7;
    }


    .cta-button {
        min-width: 170px;

        padding: 12px 18px;

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cta-section {
        min-height: 410px;
    }


    .cta-content {
        padding: 45px 0;
    }


    .cta-content h2 {
        font-size: 24px;
    }


    .cta-content p {
        font-size: 12px;
    }

}