/* =========================
GLOBAL CSS & RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.captcha-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  
 
  background: linear-gradient(145deg, #ffffff, #f5f7fa);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin-top: -9px;
  transition: 0.3s;
}

.captcha-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* LEFT SIDE */
.captcha-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.captcha-check input {
  display: none;
}

/* CUSTOM CHECKBOX */
.captcha-check .box {
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

/* CHECK ANIMATION */
.captcha-check input:checked + .box {
  background: #1a73e8;
  border-color: #1a73e8;
}

.captcha-check input:checked + .box::after {
  content: "✔";
  position: absolute;
  color: #fff;
  font-size: 14px;
  left: 3px;
  top: -1px;
}

/* RIGHT SIDE */
.captcha-right {
  text-align: right;
}

.captcha-right .logo {
  font-weight: 700;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.5px;
}

.captcha-right .sub {
  font-size: 11px;
  color: #777;
}
/* =========================
TOP HEADER (STICKY)
========================= */

.top-header {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e8f0f7;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* LOGO SECTION */

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: auto;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.03);
}

.logo-text h2 {
  color: #004a9f;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin: 0;
}

.logo-text p {
  color: #00a8a8;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0px 0 0 0;
}

/* HEADER INFO BOXES */

.header-info {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: flex-end;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-1px);
}

.info-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.emergency-icon {
  background: linear-gradient(135deg, #ffe8e8 0%, #ffd4d4 100%);
  color: #e74c3c;
}

.work-icon {
  background: linear-gradient(135deg, #e8f8f6 0%, #d4f1ed 100%);
  color: #00a8a8;
}

.location-icon {
  background: linear-gradient(135deg, #e8f8f6 0%, #d4f1ed 100%);
  color: #00a8a8;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.info-label {
  color: #e74c3c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.info-label:nth-child(1) {
  color: #e74c3c;
}

.info-box:nth-child(2) .info-label,
.info-box:nth-child(3) .info-label {
  color: #00a8a8;
}

.info-value {
  color: #00a8a8;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.info-box:nth-child(1) .info-value {
  color: #e74c3c;
}

/* MOBILE MENU BUTTON (HAMBURGER) */

.menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 5px;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #004a9f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1),
.menu-btn.active span:nth-child(3) {
  transform: none;
}

.menu-btn.active span:nth-child(2) {
  opacity: 1;
}

/* =========================
NAVBAR (STICKY)
========================= */

.navbar {
  background: linear-gradient(135deg, #001123 0%, #003350 100%);
  /* border-top: 3px solid #159eec; */
  position: sticky;
  top: 92px !important;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  gap: 15px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
}

.nav-links.desktop-menu {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 41px;
  white-space: nowrap;
  padding: 8px;
}

.nav-links.desktop-menu li {
  flex-shrink: 0;
}

.nav-links.desktop-menu::-webkit-scrollbar {
  height: 5px;
}

.nav-links.desktop-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.mobile-menu-panel {
  display: none;
}

.nav-link {
  color: #b9e2fa;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 6px 8px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #159eec;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #159eec;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  background: #b9e2fa;
  color: #004a9f;
  padding: 6px 12px;
  border-radius: 18px;
  font-weight: 500;
}

.nav-link.active::after {
  display: none;
}

/* APPOINTMENT BUTTON */

.appointment-btn {
  background: linear-gradient(135deg, #159eec 0%, #0d7abc 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(21, 158, 236, 0.25);
}

.appointment-btn:hover {
  background: linear-gradient(135deg, #00a8a8 0%, #008080 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 168, 168, 0.35);
}

.appointment-btn:active {
  transform: translateY(0);
}

/* CLOSE BUTTON (Mobile) */

.close-btn {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1002;
  transition: all 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg) scale(1.1);
}


/* =========================
RESPONSIVE DESIGN
========================= */

@media (max-width: 1200px) {
  .header-info {
    gap: 30px;
  }

  .info-box {
    gap: 10px;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .info-label {
    font-size: 9px;
  }

  .info-value {
    font-size: 13px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .logo-text h2 {
    font-size: 17px;
    font-weight: 700;
  }

  .logo-text p {
    font-size: 10px;
    font-weight: 500;
  }

  .info-box {
    gap: 8px;
  }

  .info-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .info-label {
    font-size: 9px;
  }

  .info-value {
    font-size: 12px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-link {
    font-size: 13px;
    padding: 5px 0;
  }

  .appointment-btn {
    padding: 10px 22px;
    font-size: 13px;
  }

  .navbar {
    top: 92px;
  }
}

/* TABLET & SMALLER */

@media (max-width: 768px) {
  .top-header {
    padding: 10px 0;
  }

  .header-wrapper {
    gap: 12px;
  }

  .logo-area {
    gap: 10px;
    min-width: auto;
  }

  .logo-img {
    width: 65px;
    height: 65px;
  }

  .logo-text h2 {
    font-size: 16px;
    font-weight: 700;
  }

  .logo-text p {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .header-info {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .navbar {
    top: 84px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #001123 0%, #003350 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 25px 40px 25px;
    gap: 20px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(21, 158, 236, 0.1);
    padding-left: 22px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    background: #159eec;
    color: #001123;
    padding-left: 22px;
    border-radius: 8px;
    font-weight: 500;
  }

  

  .close-btn {
    display: block;
  }

  main {
    padding: 25px 0;
  }
}

/* SMALL PHONES */

@media (max-width: 480px) {
  .top-header {
    padding: 10px 0;
  }

  .header-wrapper {
    gap: 10px;
  }

  .logo-area {
    gap: 8px;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  .logo-text h2 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  .logo-text p {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.4px;
  }

  .menu-btn {
    gap: 5px;
  }

  .menu-btn span {
    width: 24px;
    height: 2px;
  }

  .navbar {
    top: 80px;
  }

  .nav-links {
    width: 100%;
    max-width: none;
    left: -100%;
    padding: 90px 18px 30px 18px;
    gap: 15px;
  }

  .nav-link {
    font-size: 13px;
    padding: 10px 12px;
  }

  .close-btn {
    font-size: 26px;
    top: 14px;
    right: 14px;
  }

  main {
    padding: 18px 0;
  }
}

/* EXTRA SMALL PHONES */

@media (max-width: 360px) {
  .logo-area {
    gap: 6px;
  }

  .logo-img {
    width: 55px;
    height: 55px;
  }

  .logo-text h2 {
    font-size: 14px;
  }

  .logo-text p {
    font-size: 7px;
  }

  .menu-btn span {
    width: 22px;
  }
}

/* =========================
MAIN CONTENT
========================= */

main {
  padding: 35px 0;
  min-height: calc(100vh - 300px);
}












/*================= section start================ */

/* =========================
HERO SECTION
========================= */

.hero-section{
  width:100%;
  min-height:566px;
  position:relative;
  overflow:hidden;

  background-image:url("../images/hero.png");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center;
  background-color:#f4f8fc;

  display:flex;
  align-items:center;
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.20),
    rgba(255,255,255,0.05)
  );
  z-index:1;
}

/* CIRCLE */

.hero-circle{
  width:390px;
  height:390px;
  position:absolute;
  right:-100px;
  bottom:-120px;
  border-radius:50%;
  background:#B9E2FA;
  opacity:0.45;
  z-index:1;
}

/* CONTENT */

.hero-content{
  position:relative;
  z-index:2;
  max-width:720px;
  padding:80px 0;
}

/* TAG */

.hero-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:6px 18px;

  background:#B9E2FA;
  border:1px solid #038388;
  border-radius:40px;

  color:#038388;
  font-size:14px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;

  margin-bottom:12px;
}

/* TITLE */

.hero-content h1{
  font-size:64px;
  line-height:88px;
  color:#80011B;
  font-weight:700;
  margin-bottom:30px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

/* BUTTON */

.hero-btn{
  text-decoration:none;
  padding:9px 26px;
  border-radius:40px;

  font-size:17px;
  font-weight:600;

  transition:0.3s ease;
  border:1px solid #fff;
}

/* PRIMARY */

.primary-btn{
  background:#159EEC;
  color:#fff;
}

.primary-btn:hover{
  background:#038388;
}

/* EMERGENCY */

.emergency-btn{
  background:#ff0000;
  color:#fff;
}

.emergency-btn:hover{
  background:#c50000;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

  .hero-content h1{
    font-size:54px;
    line-height:74px;
  }

}

@media(max-width:992px){

  .hero-section{
    min-height:500px;
  }

  .hero-content{
    max-width:100%;
    padding:70px 0;
  }

  .hero-content h1{
    font-size:46px;
    line-height:64px;
  }

}

@media(max-width:768px){

  .hero-section{
    min-height:auto;
  }

  .hero-content{
    padding:60px 0;
  }

  .hero-content h1{
    font-size:36px;
    line-height:50px;
    margin-bottom:24px;
  }

  .hero-tag{
    font-size:13px;
    padding:7px 16px;
    margin-bottom:18px;
  }

  .hero-btn{
    padding:12px 20px;
    font-size:15px;
  }

  .hero-circle{
    width:260px;
    height:260px;
    right:-80px;
    bottom:-80px;
  }

}

@media(max-width:500px){

  .hero-content{
    padding:45px 0;
  }

  .hero-content h1{
    font-size:28px;
    line-height:40px;
  }

  .hero-buttons{
    gap:12px;
  }

  .hero-btn{
    width:100%;
    text-align:center;
    font-size:14px;
    padding:11px 16px;
  }

  .hero-tag{
    font-size:11px;
    letter-spacing:1px;
    padding:6px 14px;
  }

  .hero-circle{
    width:180px;
    height:180px;
    right:-60px;
    bottom:-50px;
  }

}
.welcome-banner img {
  width: 100%;
  display: block;
  transition: filter 0.6s ease;
}

/* Only subtle glow/brightness */
.welcome-banner:hover img {
  filter: brightness(1.1) contrast(1.05);
}

/* Slow light sweep effect */
.welcome-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: skewX(-20deg);
  opacity: 0;
}

.welcome-banner:hover::after {
  opacity: 1;
  animation: slowFlash 1.2s ease;
}

@keyframes slowFlash {
  0% { left: -120%; }
  100% { left: 220%; }
}
/* =========================
HEADER, DRAWER & HERO POLISH
========================= */


.header-wrapper {
  flex-wrap: nowrap;
}

.logo-area {
  flex: 0 0 auto;
}

.logo-img {
  width: 245px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.header-info {
  gap: clamp(24px, 4vw, 58px);
}

.info-icon {
  width: 42px;
  height: 42px;
  background: transparent;
  /* border: 2px solid currentColor; */
  font-size: 22px;
  line-height: 1;
}

.info-label {
  font-size: 13px;
  line-height: 1.1;
}

.info-value {
  font-size: 15px;
}

.navbar {
  top: 92px !important;
}

.nav-wrapper {
  min-height: 70px;
}

.nav-links {
    gap: clamp(16px, 5.75vw, 43px);
}

.nav-link {
  font-size: 15px;
  white-space: nowrap;
}

.appointment-btn,
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero-section {
  min-height: 530px;
  background-position: center top;
}



.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(720px, 54%);
  margin-left: auto;
  padding: 74px 0 82px;
}

.hero-content h1 {
  font-size: clamp(46px, 4.55vw, 64px);
  line-height: 1.32;
  letter-spacing: 0;
}

@media (max-width: 1280px) {
  .logo-img {
    width: 224px;
    max-height: 64px;
  }

  .header-info {
    gap: 24px;
  }

  .info-label {
    font-size: 12px;
  }

  .info-value {
    font-size: 14px;
  }

  .nav-links {
    gap: 17px;
  }

  .nav-link {
    font-size: 14px;
  }

  .appointment-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 1100px) {
  .logo-img {
    width: 205px;
  }

  .header-info {
    gap: 16px;
  }

  .info-box {
    gap: 8px;
  }

  .info-icon {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .info-label {
    font-size: 10px;
  }

  .info-value {
    font-size: 12px;
  }

  .navbar {
    top: 92px;
  }

  .nav-wrapper {
    min-height: 64px;
  }

  .nav-links {
    gap: 13px;
  }

  .nav-link {
    font-size: 13px;
  }

  .nav-link.active {
    padding: 7px 14px;
  }
}

@media (max-width: 900px) {
  .header-info {
    display: none;
  }

  .top-header {
    padding: 9px 0;
  }

  .logo-img {
    width: 218px;
    max-height: 61px;
  }

  .menu-btn {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(0, 168, 168, 0.28);
    border-radius: 10px;
    background: #ffffff;
  }

  .menu-btn span {
    width: 24px;
    height: 2px;
    background: #003a77;
  }

  .menu-btn.active span:nth-child(1),
  .menu-btn.active span:nth-child(3) {
    transform: none;
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 1;
  }

  .desktop-navbar {
    display: none;
  }

  .mobile-menu-panel {
    display: none;
    position: fixed;
    top: 77px;
    bottom: 0;
    left: -100%;
    width: min(86vw, 368px);
    max-width: 100%;
    padding: 88px 20px 28px;
    gap: 16px;
    background: #001123;
    border-right: 3px solid #159eec;
    transition: left 0.28s ease;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
  }

  .mobile-menu-panel.active,
  body.mobile-menu-open .mobile-menu-panel {
    display: flex;
    left: 0;
  }

  .mobile-menu-panel .nav-links {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    background: transparent;
    padding: 0;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    box-shadow: none;
    z-index: auto;
  }

  .mobile-menu-panel .nav-links li,
  .mobile-menu-panel .nav-link {
    width: 100%;
  }

  .mobile-menu-panel .nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 15px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .mobile-menu-panel .nav-link.active,
  .mobile-menu-panel .nav-link:hover {
    padding-left: 16px;
  }

  .mobile-menu-panel .close-btn {
    display: inline-flex;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    z-index: 1003;
  }

  .mobile-menu-panel .close-btn:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  /* .appointment-btn {
    display: none;
  } */

  .hero-section {
    min-height: 520px;
    background-position: 43% top;
  }

  .hero-content {
    width: min(560px, 58%);
    padding: 64px 0;
  }

  .hero-content h1 {
    font-size: clamp(38px, 5.3vw, 48px);
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }

  .navbar {
    top: 78px;
  }

  .hero-section {
    min-height: 560px;
    align-items: flex-end;
    background-position: left top;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.50) 45%,
      rgba(255,255,255,0.92) 100%
    );
  }

  .hero-content {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 220px 0 42px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .top-header {
    padding: 8px 0;
  }

  .logo-img {
    width: min(72vw, 214px);
    max-height: 58px;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .navbar {
    top: 74px;
  }

  .nav-links {
    width: 88vw;
    padding: 82px 16px 24px;
  }

  .close-btn {
    left: calc(88vw - 56px);
  }

  .hero-section {
    min-height: 420px;
    background-size: auto 100%;
    background-position: 21% top;
  }

  .hero-content {
    padding: 10px 0 30px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .hero-tag {
    margin-bottom: 14px;
  }

  .hero-buttons {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .logo-img {
    width: min(70vw, 190px);
  }

  .hero-content h1 {
    font-size: 27px;
  }

  .hero-btn {
    min-height: 42px;
  }
}









/* =========================
FEATURE SECTION
========================= */

.feature-section{
  width:100%;
  padding:60px 0;

  background:#159EEC;

  border-top:2px solid #038388;
  border-bottom:2px solid #038388;
}

/* WRAPPER */

.feature-wrapper{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* CARD */

.feature-card{
  display:flex;
  align-items:center;
  gap:20px;

  padding:28px;

  border-radius:24px;

  transition:0.3s ease;
}

/* LIGHT CARD */

.light-card{
  background:#E7EDFF;

  box-shadow:
  4px 4px 10px rgba(25,90,255,0.15),
  inset 4px 4px 10px rgba(25,90,255,0.20);
}

/* ACTIVE CARD */

.active-card{
  background:#038388;

  box-shadow:
  4px 4px 12px rgba(3,131,136,0.35);
}

/* ICON */

.feature-icon{
  min-width:68px;
  width:68px;
  height:68px;

  border-radius:50%;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
}

/* CONTENT */

.feature-content h3{
  font-size:24px;
  font-weight:600;
  line-height:34px;
  margin-bottom:8px;
}

/* LIGHT TEXT */

.light-card h3{
  color:#033A77;
}

.light-card p{
  color:#131313;
}

/* ACTIVE TEXT */

.active-card h3{
  color:#fff;
}

.active-card p{
  color:#fff;
}

/* PARAGRAPH */

.feature-content p{
  font-size:15px;
  line-height:25px;
  opacity:0.85;
}

/* HOVER */

.feature-card:hover{
  transform:translateY(-5px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .feature-wrapper{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .feature-section{
    padding:40px 0;
  }

  .feature-wrapper{
    gap:18px;
  }

  .feature-card{
    padding:22px;
    gap:16px;
    border-radius:20px;
  }

  .feature-icon{
    width:58px;
    height:58px;
    min-width:58px;

    font-size:24px;
  }

  .feature-content h3{
    font-size:20px;
    line-height:28px;
  }

  .feature-content p{
    font-size:14px;
    line-height:22px;
  }

}

@media(max-width:500px){

  .feature-section{
    padding:30px 0;
  }

  .feature-card{
    flex-direction:column;
    align-items:flex-start;

    padding:18px;
  }

  .feature-icon{
    width:52px;
    height:52px;
    min-width:52px;

    font-size:22px;
  }

  .feature-content h3{
    font-size:18px;
    line-height:26px;
    margin-bottom:6px;
  }

  .feature-content p{
    font-size:13px;
    line-height:21px;
  }

}








/* =========================
WELCOME SECTION
========================= */

.welcome-section{
  width:100%;
  padding:70px 0;
  background:#fff;
}

/* CONTAINER */

.container{
  width:100%;
  max-width:1290px;
  margin:auto;
  padding:0 20px;
}

/* =========================
BANNER
========================= */

.welcome-banner{
  position:relative;
  overflow:hidden;
  border-radius:18px;

  box-shadow:0 6px 18px rgba(0,0,0,0.12);

  margin-bottom:60px;
}

.welcome-banner img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

/* STRIP */

.banner-strip{
  position:absolute;
  left:0;
  bottom:0;

  width:100%;
  height:13px;

  display:flex;
}

.strip-green{
  width:22%;
  background:#038388;
}

.strip-blue{
  width:61%;
  background:#033A77;
}

.strip-light{
  width:17%;
  background:#159EEC;
}

/* =========================
CONTENT
========================= */

.welcome-content{
  width:100%;
  max-width:1182px;

  margin:auto;

  display:flex;
  flex-direction:column;
  align-items:center;

  gap:24px;

  text-align:center;
}

/* =========================
MOST TRUSTED
========================= */

.trust-box{
  display:flex;
  align-items:center;
  gap:12px;
}

/* GOOGLE ICON */

.google-icon{
  width:48px;
  height:48px;

  border-radius:50%;

  background:#f3f5ff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;
  font-weight:700;

  color:#4285F4;
}

/* TRUST TEXT */

.trust-text{
  text-align:left;
}

.trust-text span{
  display:block;

  font-size:18px;
  font-weight:500;

  color:#131313;

  opacity:0.8;

  margin-bottom:4px;
}

/* RATING */

.rating-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.rating-row h4{
  color:#F8B81A;

  font-size:18px;
  font-weight:700;
}

.stars{
  font-size:16px;
}

/* =========================
WELCOME TAG
========================= */

.welcome-tag{
  padding:8px 18px;

  background:#B9E2FA;

  border:1px solid #038388;
  border-radius:40px;

  color:#038388;

  font-size:14px;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:1.5px;
}

/* =========================
TITLE
========================= */

.welcome-title{
  color:#80011B;

  font-size:44px;
  font-weight:700;

  line-height:56px;
}

/* =========================
DESCRIPTION
========================= */

.welcome-description{
  color:#131313;

  font-size:16px;
  font-weight:400;

  line-height:30px;

  opacity:0.8;

  max-width:1000px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

  .welcome-title{
    font-size:38px;
    line-height:50px;
  }

}

@media(max-width:768px){

  .welcome-section{
    padding:50px 0;
  }

  .welcome-banner{
    margin-bottom:40px;
  }

  .welcome-banner img{
    height:220px;
  }

  .welcome-content{
    gap:20px;
  }

  .welcome-tag{
    font-size:12px;
    padding:7px 14px;
    letter-spacing:1px;
  }

  .welcome-title{
    font-size:30px;
    line-height:42px;
  }

  .welcome-description{
    font-size:15px;
    line-height:28px;
  }

}

@media(max-width:500px){

  .welcome-section{
    padding:35px 0;
  }

  .welcome-banner{
    border-radius:14px;
    margin-bottom:28px;
  }

  .welcome-banner img{
    height:170px;
  }

  .banner-strip{
    height:8px;
  }

  .trust-box{
    gap:10px;
  }

  .google-icon{
    width:40px;
    height:40px;

    font-size:22px;
  }

  .trust-text span{
    font-size:14px;
  }

  .rating-row h4{
    font-size:15px;
  }

  .stars{
    font-size:13px;
  }

  .welcome-tag{
    width:100%;

    font-size:8px;
    line-height:18px;

    padding:8px 12px;
  }

  .welcome-title{
    font-size:14px;
    line-height:14px;
  }

      .welcome-description {
        font-size: 12px;
        line-height: 24px;
        text-align: justify;
    }

}










/* =========================
IMPORTANT NOTICE SECTION
========================= */

.notice-section{
  width:100%;
  padding:70px 0;

  background-image:url('../images/noticeimage.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* CONTAINER */

.container{
  width:100%;
  max-width:1290px;
  margin:auto;
  padding:0 20px;
}

/* NOTICE BOX */

.notice-box{
  width:100%;

  background:#ff0000;

  border-radius:24px;

  overflow:hidden;

  display:flex;

  box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

/* =========================
LEFT SIDE
========================= */

.notice-left{
  width:240px;
  min-width:240px;

  padding:35px 25px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;

  border-right:2px solid rgba(255,255,255,0.25);
}

/* ICON */

.notice-icon{
  width:72px;
  height:72px;

  background:#fff;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:34px;

  margin-bottom:18px;
}

/* TITLE */

.notice-left h2{
  color:#fff;

  font-size:28px;
  font-weight:800;

  line-height:36px;
}

/* =========================
RIGHT SIDE
========================= */

.notice-right{
  flex:1;
}

/* ITEM */

.notice-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  padding:20px 26px;

  border-bottom:2px solid rgba(255,255,255,0.20);
}

.notice-item:last-child{
  border-bottom:none;
}

/* TEXT */

.notice-item p{
  color:rgba(255,255,255,0.92);

  font-size:18px;
  font-weight:500;

  line-height:30px;
}

/* CHECK */

.notice-item span{
  width:28px;
  height:28px;

  min-width:28px;

  border-radius:50%;

  background:#fff;

  color:#ff0000;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:16px;
  font-weight:700;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

  .notice-box{
    flex-direction:column;
  }

  .notice-left{
    width:100%;
    min-width:100%;

    border-right:none;
    border-bottom:2px solid rgba(255,255,255,0.20);
  }

}

@media(max-width:768px){

  .notice-section{
    padding:45px 0;
  }

  .notice-left{
    padding:28px 20px;
  }

  .notice-icon{
    width:62px;
    height:62px;

    font-size:28px;

    margin-bottom:14px;
  }

  .notice-left h2{
    font-size:24px;
    line-height:32px;
  }

  .notice-item{
    padding:16px 18px;
    gap:14px;
  }

  .notice-item p{
    font-size:15px;
    line-height:25px;
  }

  .notice-item span{
    width:24px;
    height:24px;

    min-width:24px;

    font-size:14px;
  }

}

@media(max-width:500px){

  .notice-section{
    padding:35px 0;
  }

  .notice-box{
    border-radius:18px;
  }

  .notice-left{
    padding:22px 16px;
  }

  .notice-icon{
    width:54px;
    height:54px;

    font-size:24px;
  }

  .notice-left h2{
    font-size:20px;
    line-height:28px;
  }

  .notice-item{
    padding:14px 14px;
    gap:12px;
  }

  .notice-item p{
    font-size:12px;
    line-height:22px;
  }

  .notice-item span{
    width:22px;
    height:22px;

    min-width:22px;

    font-size:12px;
  }

}








/* =========================
MEDICAL EXPERTISE SECTION
========================= */

.expertise-section{
  width:100%;
  padding:80px 0;
  background:#fff;
}

/* CONTAINER */

.container{
  width:100%;
  max-width:1288px;
  margin:auto;
  padding:0 20px;
}

/* =========================
HEADING
========================= */

.expertise-heading{
  max-width:1182px;
  margin:auto;

  text-align:center;

  margin-bottom:50px;
}

/* TAG */

.expertise-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 18px;

  background:#B9E2FA;

  border:1px solid #038388;
  border-radius:40px;

  color:#038388;

  font-size:14px;
  font-weight:600;

  letter-spacing:1.5px;
  text-transform:uppercase;

  margin-bottom:24px;
}

/* TITLE */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}
.expertise-heading h2{
  color:#80011B;

  font-size:44px;
  font-weight:700;

  line-height:56px;

  margin-bottom:16px;
}

/* DESCRIPTION */

.expertise-heading p{
  color:#131313;

  font-size:15px;
  line-height:28px;

  opacity:0.8;

  max-width:900px;
  margin:auto;
}

/* =========================
GRID
========================= */

.expertise-grid{
  display:grid;

  grid-template-columns:repeat(5,1fr);

  gap:24px;
}

/* CARD */

.expertise-card{
  background:#033A77;

  border-radius:24px;

  overflow:hidden;

  box-shadow:0 6px 14px rgba(3,58,119,0.20);

  transition:0.3s ease;
}

/* IMAGE */

.expertise-card img{
  width:100%;
  height:154px;
  object-fit:cover;
  display:block;
}

/* TITLE */

.expertise-card h3{
  color:#B9E2FA;

  font-size:20px;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:0.3px;

  text-align:center;

  padding:22px 14px;
}

/* HOVER */

.expertise-card:hover{
  transform:translateY(-6px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

  .expertise-grid{
    grid-template-columns:repeat(4,1fr);
  }

}

@media(max-width:992px){

  .expertise-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .expertise-heading h2{
    font-size:38px;
    line-height:50px;
  }

}

@media(max-width:768px){

  .expertise-section{
    padding:55px 0;
  }

  .expertise-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .expertise-heading{
    margin-bottom:36px;
  }

  .expertise-tag{
    font-size:12px;
    padding:7px 14px;
    letter-spacing:1px;
  }

  .expertise-heading h2{
    font-size:30px;
    line-height:42px;
    margin-bottom:12px;
  }

  .expertise-heading p{
    font-size:15px;
    line-height:26px;
  }

  .expertise-card{
    border-radius:18px;
  }

  .expertise-card img{
    height:140px;
  }

  .expertise-card h3{
    font-size:17px;
    padding:18px 10px;
  }

}

@media(max-width:500px){

  .expertise-section{
    padding:38px 0;
  }

  .expertise-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .expertise-heading{
    margin-bottom:28px;
  }

  .expertise-tag{
    width:100%;

    font-size:10px;
    line-height:18px;

    padding:8px 12px;
  }

  .expertise-heading h2{
   font-size: 15px;
        line-height: 15px;
  }

  .expertise-heading p{
    font-size:14px;
    line-height:24px;
  }

  .expertise-card img{
    height:190px;
  }

  .expertise-card h3{
    font-size:16px;
    padding:16px 10px;
  }

}







/* ===================================
APPOINTMENT SECTION
=================================== */

.appointment-section{
  width:100%;
  position:relative;

  padding:90px 0;

  background-image:url('../images/formbgimage.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  overflow:hidden;
}

/* OVERLAY */

.appointment-overlay{
  position:absolute;
  inset:0;

  background: rgb(0 17 35 / 4%);
}

/* CONTAINER */

.container{
  width:100%;
  max-width:1280px;

  margin:auto;
  padding:0 20px;

  position:relative;
  z-index:2;
}

/* WRAPPER */

.appointment-wrapper {
    display: flex
;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

/* ===================================
LEFT CONTENT
=================================== */

.appointment-content{
  max-width:520px;
}

/* TAG */

.section-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 18px;

  background:#B9E2FA;

  border:1px solid #038388;
  border-radius:40px;

  color:#038388;

  font-size:14px;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:1.5px;

  margin-bottom:24px;
}

/* TITLE */

.appointment-content h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 11px;
}

/* DESCRIPTION */

.appointment-content p {
    color: rgb(255 255 255 / 63%);
    font-size: 15px;
    line-height: 25px;
}

/* ===================================
FORM BOX
=================================== */

.appointment-form{
  width:100%;
  max-width:520px;

  background:#BFD2F8;

  border-radius:12px;

  overflow:hidden;

  box-shadow:0 10px 35px rgba(0,0,0,0.20);
}

/* FORM */

.appointment-form form{
  padding:0;
}

/* GRID */

.form-grid{
  display:grid;
  grid-template-columns:1fr;
}

/* GROUP */

.form-group{
  position:relative;
}

/* INPUT */

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;

  background:#1F2B6C;

  border:none;
  outline:none;

  color:#fff;

  padding:16px 18px;

  font-size:15px;
  font-family:Poppins, sans-serif;

  border-bottom:1px solid rgba(255,255,255,0.10);
}

/* SELECT */

.form-group select{
  appearance:none;
  cursor:pointer;
  padding-right:46px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 18px center;
  background-size:18px;
}

.form-group select::-ms-expand{
  display:none;
}

/* TEXTAREA */

.message-box textarea{
  height:170px;
  resize:none;
}

/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:#FCFEFE;
}

/* SUBMIT BUTTON */

.submit-btn{
  width:100%;

  border:none;
  outline:none;

  background:#BFD2F8;

  color:#1F2B6C;

  padding:18px;

  font-size:17px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s ease;
}

.submit-btn:hover{
  background:#d5e2ff;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:1100px){

  .appointment-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

  .appointment-content{
    max-width:100%;
  }

  .appointment-form{
    max-width:100%;
  }

}

@media(max-width:768px){

  .appointment-section{
    padding:60px 0;
  }

  .appointment-wrapper{
    gap:35px;
  }
    .appointment-wrapper {
        flex-direction: column;
        align-items: center;
    }
  .section-tag{
    font-size:12px;
    padding:7px 14px;
  }

  .appointment-content h2{
    font-size:34px;
    line-height:48px;
  }

  .appointment-content p{
    font-size:15px;
    line-height:26px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea{
    font-size:14px;
    padding:15px 16px;
  }

  .message-box textarea{
    height:140px;
  }

  .submit-btn{
    font-size:15px;
    padding:16px;
  }

}

@media(max-width:480px){

  .appointment-section{
    padding:45px 0;
  }

  .container{
    padding:0 14px;
  }

  .section-tag{
    width:100%;
    text-align:center;

    font-size:10px;
    letter-spacing:1px;
  }
  .appointment-content {
        max-width: 100%;
        text-align: center;
    }

  .appointment-content h2{
    font-size:26px;
    line-height:38px;
  }

  .appointment-content p{
    font-size:14px;
    line-height:24px;
  }

  .appointment-form{
    border-radius:10px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea{
    padding:14px;
    font-size:13px;
  }

  .submit-btn{
    padding:14px;
    font-size:14px;
  }

}





/* ===================================
OUR FACILITIES SECTION
=================================== */

.facilities-section{
  width:100%;
  padding:80px 0;
  background:#ffffff;
}

/* CONTAINER */

.container{
  width:100%;
  max-width:1290px;
  margin:auto;
  padding:0 20px;
}

/* MAIN WRAPPER */

.facilities-wrapper{
  position:relative;

  width:100%;
  min-height:520px;

  border-radius:24px;
  overflow:hidden;

  background-image:url('../images/emergency.png');
  background-size:cover;
  background-position:center;

  box-shadow:0 0 10px rgba(0,0,0,0.15);
}

/* OVERLAY */

.facilities-overlay{
  position:absolute;
  inset:0;

  background:rgba(0, 17, 35, 0.45);
}

/* CONTENT */

.facilities-content{
  position:relative;
  z-index:2;

  max-width:720px;

  padding:40px;
}

/* TAG */

.facility-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 18px;

  background:#B9E2FA;

  border:1px solid #038388;
  border-radius:40px;

  color:#038388;

  font-size:14px;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:1.5px;

  margin-bottom:24px;
}

/* TITLE */

.facilities-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 10px;
}

/* DESCRIPTION */

.facilities-content p {
    max-width: 650px;
    color: #ffffff;
    font-size: 13px;
    line-height: 23px;
    opacity: 0.92;
}

/* ===================================
EMERGENCY BOX
=================================== */

.emergency-box {
    position: absolute;
    left: 0;
    bottom: 139px;
    z-index: 2;
    display: flex
;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 13px 25px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    min-width: 340px;
}

/* ICON */

.emergency-icon{
  width:42px;
  height:42px;

  /* border-radius:50%; */

  /* background:#ffe4e4; */

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
}

/* INFO */
.emergency-info span {
    display: block;
    color: #ff0000;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.emergency-info h3 {
    color: #033A77;
    font-size: 18px;
    font-weight: 700;
}

/* ===================================
BOTTOM BAR
=================================== */

.facility-bottom{
  position:absolute;
  left:0;
  bottom:19px;

  z-index:2;

  width:100%;

  background:#ff0000;

  padding:22px 30px;

  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

/* ITEM */

.facility-item{
  display:flex;
  align-items:center;
  gap:12px;

  position:relative;
}

/* BORDER */

.facility-item::after{
  content:"";

  position:absolute;
  right:-10px;
  top:50%;

  transform:translateY(-50%);

  width:1px;
  height:65px;

  background:rgba(255,255,255,0.35);
}

.facility-item:last-child::after{
  display:none;
}

/* IMAGE */

.facility-item img{
  width:42px;
  height:42px;

  border-radius:50%;

  object-fit:cover;
}

/* TEXT */

.facility-item h4{
  color:#fff;

  font-size:15px;
  font-weight:500;

  line-height:24px;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:1200px){

  .facility-bottom{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:992px){

  .facilities-wrapper{
    min-height:auto;
    padding-bottom:260px;
  }

  .facilities-content{
    max-width:100%;
  }

  .facilities-content h2{
    font-size:40px;
    line-height:52px;
  }

  .facility-bottom{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .facilities-section{
    padding:55px 0;
  }

  .container{
    padding:0 16px;
  }

  .facilities-content{
    padding:28px 22px;
  }

  .facility-tag{
    font-size:12px;
    padding:7px 14px;
  }

  .facilities-content h2{
    font-size:30px;
    line-height:42px;
    margin-bottom:14px;
  }

  .facilities-content p{
    font-size:15px;
    line-height:26px;
  }

  .emergency-box{
    position:relative;
    bottom:auto;

    margin-top:20px;

    width:calc(100% - 20px);

    min-width:auto;

    padding:18px 20px;
  }

  .emergency-info span{
    font-size:18px;
  }

  .emergency-info h3{
    font-size:22px;
  }

  .facility-bottom{
    padding:18px;
    grid-template-columns:1fr;
    gap:18px;
  }

  .facility-item::after{
    display:none;
  }

  .facility-item{
    padding-bottom:14px;
    border-bottom:1px solid rgba(255,255,255,0.20);
  }

  .facility-item:last-child{
    border-bottom:none;
    padding-bottom:0;
  }

}

@media(max-width:480px){

  .facilities-section{
    padding:40px 0;
  }

  .container{
    padding:0 12px;
  }

  .facilities-wrapper{
    border-radius:18px;
  }

  .facilities-content{
    padding:22px 16px;
  }

  .facility-tag{
    width:100%;

    text-align:center;

    font-size:10px;
    letter-spacing:1px;
  }

  .facilities-content h2{
    font-size:24px;
    line-height:34px;
  }

  .facilities-content p{
    font-size:14px;
    line-height:24px;
  }

  .emergency-box{
    gap:12px;

    padding:14px 16px;

    border-radius:0 16px 16px 0;
  }

  .emergency-icon{
    width:40px;
    height:40px;

    font-size:18px;
  }

  .emergency-info span{
    font-size:15px;
  }

  .emergency-info h3{
    font-size:18px;
  }

  .facility-bottom{
    padding:16px;
  }

  .facility-item h4{
    font-size:14px;
    line-height:22px;
  }

}










*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}

/* SECTION */

.doctors-section{
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #B9E2FA 100%);
}

.container{
    max-width: 1280px;
    margin: auto;
}

/* HEADER */

.section-header{
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-tag{
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: #B9E2FA;
    border: 1px solid #038388;
    color: #038388;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.section-header h2{
    color: #80011B;
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 14px;
}

.section-header p{
    color: #424242;
    font-size: 17px;
    line-height: 28px;
}

/* GRID */

.doctor-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */

.doctor-card{
    background: #033A77;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.doctor-card:hover{
    transform: translateY(-5px);
}

.doctor-image img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.doctor-content{
    padding: 18px 18px 20px;
    text-align: center;
}

.doctor-name{
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 10px;
}

.doctor-content h3{
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* SOCIAL ICONS */

.doctor-social{
    display: flex;
    justify-content: center;
    gap: 14px;
}

.doctor-social a{
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #033A77;
    font-size: 15px;
    transition: 0.3s;
}

.doctor-social a:hover{
    background: #159EEC;
    color: #ffffff;
}

/* BUTTON */

.doctor-btn{
    width: 100%;
    height: 50px;
    background: #159EEC;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.doctor-btn:hover{
    background: #038388;
}

/* RESPONSIVE */

@media(max-width: 1100px){

    .doctor-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 768px){

    .doctors-section{
        padding: 45px 14px;
    }

    .section-header{
        margin-bottom: 30px;
    }

    .section-tag{
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }

    .section-header h2{
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 12px;
    }

    .section-header p{
        font-size: 14px;
        line-height: 24px;
    }

    .doctor-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .doctor-image img{
        height: 210px;
    }

    .doctor-content{
        padding: 16px;
    }

    .doctor-name{
        font-size: 14px;
    }

    .doctor-content h3{
        font-size: 18px;
        margin-bottom: 16px;
    }

    .doctor-social a{
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .doctor-btn{
        height: 46px;
        font-size: 14px;
    }

}






*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
}

/* SECTION */

.how-work-section{
    width:100%;
    padding:60px 20px;
    background:url('../images/How ir works.png') center/cover no-repeat;
    position:relative;
}

.how-work-section::before{
    content:'';
    position:absolute;
    inset:0;
    /* background:rgba(3, 58, 119, 0.78); */
}

.container{
    max-width:1320px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* HEADER */

.work-header{
    max-width:1000px;
    margin:0 auto 32px;
    text-align:center;
}

.work-tag{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#B9E2FA;
    border:1px solid #038388;
    color:#038388;
    font-size:14px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.work-header h2{
    color:#ffffff;
    font-size:44px;
    font-weight:700;
    line-height:54px;
    margin-bottom:18px;
}

.work-header p{
    color:#ffffff;
    font-size:17px;
    line-height:28px;
    opacity:0.9;
}

/* GRID */

.work-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
}

/* CARD */

.work-card{
    display:flex;
    align-items:flex-start;
    gap:24px;
    padding:28px 24px;
    border-radius:24px;
    background:linear-gradient(135deg,#ffffff 0%, #B9E2FA 100%);
    transition:0.3s ease;
}

.work-card:hover{
    transform:translateY(-4px);
}

.step-number{
    min-width:60px;
    height:60px;
    border-radius:50%;
    background:#159EEC;
    color:#ffffff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.work-content{
    flex:1;
}

.work-content h3{
    color:#159EEC;
    font-size:23px;
    font-weight:700;
    line-height:36px;
    margin-bottom:12px;
}

.work-content p{
    color:#038388;
    font-size:16px;
    line-height:26px;
    opacity:0.9;
}

/* RESPONSIVE */

@media(max-width:991px){

    .work-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .how-work-section{
        padding:45px 14px;
    }

    .work-header{
        margin-bottom:24px;
    }

    .work-tag{
        font-size:11px;
        padding:6px 12px;
        margin-bottom:14px;
    }

    .work-header h2{
        font-size:22px;
        line-height:38px;
        margin-bottom:12px;
    }

    .work-header p{
        font-size:13px;
        line-height:24px;
    }

    .work-card{
        flex-direction:column;
        gap:18px;
        padding:22px 18px;
        border-radius:18px;
    }

    .step-number{
        width:52px;
        height:52px;
        min-width:52px;
        font-size:18px;
    }

    .work-content h3{
        font-size:20px;
        line-height:30px;
        margin-bottom:10px;
    }

    .work-content p{
        font-size:14px;
        line-height:24px;
    }

}









/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  width:100%;
  padding:70px 20px;
  background:#ffffff;
  font-family:'Poppins', sans-serif;
}

.contact-container{
  max-width:1280px;
  margin:auto;
}

.contact-heading{
  text-align:center;
  margin-bottom:40px;
}

.contact-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 16px;
  border-radius:30px;
  border:1px solid #038388;
  background:#B9E2FA;
  color:#038388;
  font-size:14px;
  font-weight:500;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.contact-heading h2{
  font-size:44px;
  line-height:1.2;
  font-weight:700;
  color:#80011B;
  margin:0;
}

/* GRID */

.contact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* CARD */
.contact-card {
    background: #B9E2FA;
    border-radius: 14px;
    padding: 20px 20px;
    min-height: 200px;
    transition: 0.3s ease;
    text-align: center;
}

.contact-card:hover{
  transform:translateY(-5px);
}

.location-card{
  background:#159EEC;
}

.contact-icon{
  font-size:34px;
  margin-bottom:2px;
}

.contact-card h3{
  font-size:20px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:14px;
  color:#033A77;
}

.location-card h3{
  color:#ffffff;
}

.contact-card p{
  font-size:16px;
  line-height:1.7;
  color:#038388;
  margin:0;
  word-break:break-word;
}

.location-card p{
  color:#ffffff;
}

.contact-main-text{
  font-size:20px !important;
  font-weight:600;
}

.contact-card span{
  display:block;
  margin-top:10px;
  font-size:14px;
  color:#038388;
}

.emergency-card h3{
  color:#FF0000;
}

/* =========================
   TABLET
========================= */

@media (max-width:992px){

  .contact-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width:576px){

  .contact-section{
    padding:50px 16px;
  }

  .contact-heading{
    margin-bottom:28px;
  }

  .contact-heading h2{
    font-size:30px;
    line-height:1.2;
  }

  .contact-badge{
    font-size:11px;
    padding:5px 12px;
    letter-spacing:1px;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .contact-card{
    padding:22px 18px;
    min-height:auto;
    border-radius:12px;
  }

  .contact-icon{
    font-size:28px;
    margin-bottom:16px;
  }

  .contact-card h3{
    font-size:18px;
    margin-bottom:10px;
  }

  .contact-card p{
    font-size:14px;
    line-height:1.6;
  }

  .contact-main-text{
    font-size:18px !important;
  }

  .contact-card span{
    font-size:13px;
    margin-top:8px;
  }

}







/* =========================
   MAP SECTION
========================= */

.map-section{
  width:100%;
  padding:0;
  margin:0;
}

.map-container{
  width:100%;
  overflow:hidden;
}

.map-container iframe{
  width:100%;
  height:450px;
  border:none;
  display:block;
}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width:768px){

  .map-container iframe{
    height:300px;
  }

}

@media (max-width:480px){

  .map-container iframe{
    height:250px;
  }

}
