:root {
  --primary: #046d88;
  --secondary: #35aebc;
  --accent: #732a87;
  --bg: #eaeaea;
  --text-color: #1f1f1f;
  --white: #fafafa;
}

/* Alumni Sans */
@font-face {
  font-family: "Alumni Sans";
  src: url("../fonts/AlumniSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Alumni Sans";
  src: url("../fonts/AlumniSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Nunito Sans */
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/NunitoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Outfit */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Darker Grotesque — Regular (400) */
@font-face {
  font-family: "Darker Grotesque";
  src: url("../fonts/DarkerGrotesque-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Medium (500) */
@font-face {
  font-family: "Darker Grotesque";
  src: url("../fonts/DarkerGrotesque-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* SemiBold (600) */
@font-face {
  font-family: "Darker Grotesque";
  src: url("../fonts/DarkerGrotesque-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Bold (700) */
@font-face {
  font-family: "Darker Grotesque";
  src: url("../fonts/DarkerGrotesque-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Nobile Regular */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Nobile Medium */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Nobile Bold */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: var(--bg);
}

header {
  background-color: var(--bg);
  padding: 10px 50px;
  border-bottom: 2px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: inline-block;
}

.navbar-brand img {
  max-width: 380px;
  height: 70px;
}

.nav-link {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 600;
  color: var(--text-color) !important;
  margin: 0 20px;
  font-size: 22px;
  position: relative;
  text-decoration: none;
}

/* Active nav link ki dot */
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* Hover underline effect */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 80%;
  margin-left: 8px;
}

.contact-btn {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 600;
  background-color: var(--primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
  background: linear-gradient(to right, #046d88, #35aebc, #046d88);
  color: #fff;
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  background: url("../assets/Hero\ Background.png") no-repeat center
    center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 110px;
  padding-top: 40px;
  padding-bottom: 50px;
}

.hero-content {
  max-width: 970px;
}

.hero-content h2 {
  font-family: "Alumni Sans", sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: #000;
}

.hero-content .hero-main {
  background: linear-gradient(90deg, #046d88, #35aebc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Alumni Sans", sans-serif;
  font-size: 160px;
  font-weight: 600;
  margin-top: -40px;
}

.pulse-line {
  margin-top: -50px;
  margin-bottom: -20px;
  margin-left: -50px;
}

.pulse-line img {
  width: 650px;
  height: auto;
  display: block;
}

.hero-content p {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  margin: 20px 0;
  font-size: 28px;
  color: var(--text-color);
}

.hero-buttons .btn {
  margin-right: 10px;
  margin-top: 10px;
}

.btn-primary-custom {
  font-family: "Outfit", sans-serif;
  padding: 10px 25px;
  font-size: 20px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 6px;
  border: none;
}

.btn-primary-custom:hover {
  background: linear-gradient(90deg, #35aebc, #046d88);
  color: var(--white);
}

.btn-secondary-custom {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  background-color: var(--primary);
  padding: 10px 25px;
  color: var(--white);
  border-radius: 6px;
  border: none;
}

.btn-secondary-custom:hover {
  background: linear-gradient(90deg, #35aebc, #046d88);
  color: var(--white);
}

.btn-emergency {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  background-color: var(--accent);
  padding: 10px 25px;
  color: var(--white);
  border-radius: 6px;
  border: none;
}

.btn-emergency:hover {
  background: linear-gradient(90deg, #b94ed7, #732a87);
  color: var(--white);
}

.why-choose {
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

.why-title {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.why-title .brand {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
}

.why-sub {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 40px;
}

.why-choose .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 25px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.why-choose .row > div {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  min-height: 250px;
  display: flex;
  align-items: stretch;
}

.feature-card {
  position: relative;
  z-index: 2;
  background: var(--secondary);
  color: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  justify-content: flex-start;
}
.row .col-md-2:nth-child(even) .feature-card {
  background: var(--primary);
}

.feature-card p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 0;
}

.feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0px;
  border-radius: 50%;
  padding: 10px;
}

.dec-left {
  position: absolute;
  left: 0px;
  top: 130px;
  width: 180px;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.dec-right {
  position: absolute;
  right: 0px;
  bottom: -90px;
  width: 180px;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.bg-svg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.specialities {
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.section-title .brand {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
}
.section-sub {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 40px;
}

.speciality-card {
  position: relative;
  /*border-radius: 12px;*/
  overflow: hidden;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}

.speciality-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /*border-radius: 12px;*/
}

.speciality-overlay {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
  z-index: 2;
}

.speciality-overlay h3 {
  font-family: "Nobile", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.btn-explore {
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--white);
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-explore:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-explore:hover .arrow-circle {
  background: var(--primary);
  color: #fff;
}

.arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: #0097a7;
  font-size: 12px;
  font-weight: bold;
}

.consultants {
  padding: 50px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.consultants h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.consultants .highlight {
  color: var(--primary);
}

.consultants .sub {
  font-size: 16px;
  margin-bottom: 30px;
  color: #444;
}

/* Search */
.search-box {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}

.search-box input {
  font-family: "Outfit", sans-serif;
  background-color: transparent;
  font-weight: 400;
  width: 800px;
  padding: 10px;
  padding-left: 30px;
  border: 2px solid var(--secondary);
  border-radius: 6px;
  font-size: 20px;
}

.search-box button {
  font-family: "Outfit", sans-serif;
  background: var(--primary);
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.search-box button:hover {
  background: linear-gradient(to right, #046d88, #35aebc, #046d88);
}

.cards {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
}

.consultant-card {
  flex: 1;
  max-width: 700px;
  height: 400px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}

.consultant-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h3 {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 700;
  width: 100%;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.consultant-card:hover .overlay h3 {
  top: 15%;
  transform: translate(-50%, -50%);
}

.overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: all 0.4s ease;
  position: absolute;
  top: 22%;
  left: 45%;
  transform: translate(-50%, 20px);
}

.overlay ul li {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  padding: 5px 0;
  position: relative;
  padding-left: 15px;
  text-align: left !important;
  line-height: 40px;
}

.overlay ul li::before {
  content: "•";
  color: var(--white);
  position: absolute;
  left: 0;
}

.consultant-card:hover .overlay ul {
  opacity: 1;
  transform: translate(-50%, 0);
}

.specialities,
.consultants {
  position: relative;
  z-index: 1;
}

.right-svg {
  position: absolute;
  top: 750px;
  right: 0;
  width: 300px;
  opacity: 2;
}

.left-svg {
  position: absolute;
  top: 490px;
  left: 0;
  width: 104px;
  opacity: 1.5;
}

.testimonials {
  position: relative;
  background-color: var(--bg);
  z-index: 1;
  padding: 30px 60px;
}

.testimonials h2 {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary);
}

.testimonial-card {
  border: 1px solid #0097a7;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.testimonial-card p {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 500;
}

.testimonial-card span {
  font-family: "Outfit", sans-serif;
  font-style: italic;
  font-size: 20px;
  color: #555;
  font-weight: 400;
}

.view-all {
  text-align: right;
  margin-top: 0;
}

.view-all a {
  font-size: 18px;
  color: #004d40;
  text-decoration: underline;
  font-weight: 500;
}

.emergency-care {
  padding: 50px 0;
}

.emergency-care .section-title {
  font-family: "Outfit", sans-serif;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.emergency-care .section-sub {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--text-color);
  margin-bottom: 25px;
}

.emergency-wrapper {
  position: relative;
  width: calc(100% + 20px);
  margin-left: -10px;
  border-radius: 8px;
  overflow: hidden;
}

.emergency-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.emergency-overlay {
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 45%;
  color: var(--white);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.emergency-overlay p {
  font-family: "Nobile", sans-serif;
  width: 400px;
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.emergency-overlay a.btn {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  background: var(--white);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
  text-align: left;
}

.footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  max-width: 200px;
}

.footer h4 {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  margin-bottom: 15px;
  padding-top: 32px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer-location .addr {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-location .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  display: inline-block;
  filter: brightness(0) invert(1);
}

.newsletter h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 23px;
  margin-bottom: 10px;
  font-weight: 600;
}

.newsletter form {
  display: flex;
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
}

.newsletter input {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 18px;
}

.newsletter button {
  color: var(--text-color);
  border: none;
  padding: 0 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.whatsapp-float {
  position: fixed;
  top: 140px;
  right: 100px;
  z-index: 9999;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}
