/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4b5563;
  font-weight: 400;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #03347a;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 64px;
  font-weight: 800;
}

h2 {
  font-size: 35px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* Paragraph */

p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
}

/* Navbar */

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-transform: capitalize;
}

/* Top Header */

.top-header {
  font-size: 14px;
  font-weight: 500;
}

/* Buttons */

.btn,
.book-btn,
.enquiry-btn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Section Tag */

.section-subtitle {
  color: #1e9e4a;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Section Title */

.section-title {
  font-size: 35px;
  font-weight: 700;
  color: #03347a;
}

/* Hero Title */

.hero-title {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-title span {
  color: #e91e63;
}

/* TOP HEADER */

.top-header {
  background: #03347a;
  padding: 8px 0;
}

.top-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.top-info a {
  color: #e5e9ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.top-info i {
  margin-right: 8px;
}
.top-info-right {
  justify-content: end;
  align-items: center;
}
.top-info-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.login-btn {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  color: #fff !important;
  text-decoration: none;
  transition: 0.3s;
}

.login-btn:hover {
  background: #fff;
  color: #0a4ea1 !important;
}

.register-btn {
  padding: 8px 18px;
  border-radius: 30px;
  background: #1e9e4a;
  color: #fff !important;
  text-decoration: none;
  transition: 0.3s;
}

.register-btn:hover {
  background: #157738;
}

.book-btn {
  padding: 8px 18px;
  border-radius: 30px;
  background: #e91e63;
  color: #fff !important;
  text-decoration: none;
}
.book-btn {
  background: #e91e63;
  color: #f9faff !important;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500 !important;
  display: inline-block;
  text-transform: capitalize;
  letter-spacing: 1px;
}

/* MAIN HEADER */

.main-header {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  width: 100px;
  height: auto;
}

.nav-link {
  color: #222;
  font-weight: 600;
  margin: 0 8px;
}

.nav-link.active {
  color: #1e9e4a;
}
.navbar-nav .nav-link {
  position: relative;
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1e9e4a;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #1e9e4a;
  border-radius: 10px;
  transform: translateX(-50%);
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}
.enquiry-btn {
  background: #e91e63;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.enquiry-btn i {
  font-size: 20px;
}
.enquiry-btn:hover {
  color: #fff;
}

/* MOBILE SLIDER */

.offcanvas {
  width: 300px !important;
  background: linear-gradient(180deg, #03347a, #1e9e4a);
}

.offcanvas-header {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.offcanvas .logo {
  max-width: 80px;
}

.offcanvas-body {
  padding: 0 20px;
  padding-bottom: 20px;
}

.offcanvas .nav-link {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.offcanvas .nav-link:hover {
  color: #ffd54f;
  padding-left: 10px;
}

.mobile-enquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 500;
  margin: 20px 0;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.mobile-enquiry i {
  font-size: 18px;
  margin-left: 10px;
}

.mobile-contact {
  color: #fff;
  margin-top: 20px;
}

.mobile-contact p {
  margin-bottom: 12px;
  color: #fff;
}

.mobile-contact i {
  width: 15px;
}

.mobile-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hover Effect */
.mobile-social a:hover {
  background: #fff;
  color: #0a4ea1;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Individual Colors */
.mobile-social a:nth-child(1):hover {
  color: #1877f2; /* Facebook */
}

.mobile-social a:nth-child(2):hover {
  color: #e4405f; /* Instagram */
}

.mobile-social a:nth-child(3):hover {
  color: #25d366; /* WhatsApp */
}

.mobile-social a:nth-child(4):hover {
  color: #ff0000; /* YouTube */
}
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #0a3d91;
  margin-bottom: 25px;
}

.hero-content .pink {
  color: #ef3b7d;
}

.hero-content .green {
  color: #1f9d45;
  font-style: italic;
}

.hero-content p {
  color: #555;
  margin-bottom: 35px;
  font-weight: 500;
  font-size: 18px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.btn-book {
  background: #0a3d91;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
}

.btn-enquiry {
  background: #fff;
  color: #ef3b7d;
  border: 2px solid #ef3b7d;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.feature-item:after {
  position: absolute;
  content: "";
  background: #ccc;
  height: 100%;
  width: 1.5px;
  left: -21px;
}
.feature-item i {
  font-size: 25px;
  color: #0a3d91;
}
.feature-item .fa-heart-circle-check {
  color: #ef3b7d;
}

.about-content .fa-shield-heart,
.feature-item .fa-heart-circle-check {
  color: #ef3b7d;
}
.about-content .feature-item .fa-notes-medical,
.feature-item .fa-user-nurse {
  color: #1f9d45;
}
.feature-item span {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-circle {
  overflow: hidden;
  position: relative;
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-logo {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-logo img {
  width: 100%;
  border-radius: 50%;
}

.leaf {
  position: absolute;
  color: #36b24a;
  font-size: 40px;
}

.leaf-1 {
  top: 30px;
  right: 20px;
}

.leaf-2 {
  top: 70px;
  right: 90px;
}

/* Modal Box */
.modal-content {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Header */
.modal-header {
  background: linear-gradient(135deg, #0a4ea1, #1e9e4a);
  padding: 18px 25px;
  border: none;
}

.modal-header h5 {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 20px;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

/* Body */
.modal-body {
  padding: 30px;
  background: #fff;
}

/* Inputs */
.modal .form-control,
.modal .form-select {
  border-radius: 12px;
  border: 1px solid #dfe7ef;
  padding: 12px 18px;
  box-shadow: none;
  font-size: 14px;
}
.modal .btn {
  font-size: 16px;
  display: block !important;
  margin: auto;
  padding: 10px 20px;
  text-transform: capitalize;
}

.modal textarea.form-control {
  height: auto;
}

.modal .form-control:focus,
.modal .form-select:focus {
  border-color: #0a4ea1;
  box-shadow: 0 0 0 4px rgba(10, 78, 161, 0.1);
}

/* Submit Button */
.modal-submit-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #e91e63, #ff4f81);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.4s;
}

.modal-submit-btn:hover {
  transform: translateY(-3px);
}

/* Footer Text */
.modal-footer-text {
  text-align: center;
  margin-top: 15px;
  color: #666;
  font-size: 14px;
}

.modal-footer-text a {
  color: #0a4ea1;
  font-weight: 600;
  text-decoration: none;
}

/* Backdrop */
.modal-backdrop.show {
  opacity: 0.7;
}
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Background Elements */

.bg-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  background: #eef6f2;
  border-radius: 50%;
  left: -150px;
  top: 30px;
}

.top-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 20px solid #edf2fb;
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

.dot-pattern {
  position: absolute;
  width: 80px;
  height: 80px;
  background-size: 16px 16px;
}

.dot-left {
  left: 75px;
  bottom: 75px;
  background-image: radial-gradient(#ff4c89 2px, transparent 2px);
}

.dot-right {
  right: 40px;
  top: 250px;
  background-image: radial-gradient(#98d39d 2px, transparent 2px);
}

/* Image */

.about-img {
  position: relative;
  z-index: 2;
  height: 560px;
}

.about-img img {
  width: 100%;
  border-radius: 50px;
  display: block;
  height: 100%;
  object-fit: cover;
}

/* Experience Box */

.exp-box {
  position: absolute;
  left: 30px;
  bottom: -50px;
  background: #05358c;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid #fff;
}

.exp-box i {
  font-size: 35px;
  margin-bottom: 10px;
}

.exp-box h2 {
  font-size: 65px;
  line-height: 1;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.exp-box span {
  display: block;
  color: #7fe152;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.exp-box p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  line-height: 1;
}

/* Content */

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eef7ef;
  color: #2ca244;
  padding: 10px 12px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 12px;
}

.about-tag i {
  font-size: 16px;
}

.about-content h2 span {
  color: #e91e63;
}

.title-line {
  width: 80px;
  height: 3px;
  background: #7fd063;
  margin-bottom: 25px;
}

.about-content p {
  color: #555;
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #eef7ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ca244;
}

.feature-icon.pink {
  color: #e91e63;
  background: #fff0f5;
}

.feature-item h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

/* Button */

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-btn i {
  width: 25px;
  height: 25px;
  background: #fff;
  color: #ff2f73;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Leaf */

.leaf-decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
}

.leaf-decoration img {
  width: 100%;
}
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff, #f5fff7);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #eaf4ff;
  border-radius: 50%;
  top: -250px;
  left: -250px;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: #edf7ff;
  border-radius: 50%;
  right: -350px;
  bottom: -350px;
}

.section-heading p {
  color: #666;
}

.service-card {
  background: #fff;
  border-radius: 30px;
  padding: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
  border: 1px solid #eef2f5;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-img {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  background: #f3f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-img img {
  width: 90px;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a2f7a;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.service-card a {
  color: #2ca244;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.bottom-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.feature-box i {
  width: 60px;
  height: 60px;
  background: #eef7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a3d91;
  font-size: 24px;
}

.why-banner {
  position: relative;
  padding: 40px 0;
  background: url("../images/why-banner-bg.png") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
}
.trust-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  justify-content: center;
  gap: 20px;
}
.trust-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px;
  border-right: 1px solid #e5e5e5;
}

.trust-box:last-child {
  border-right: none;
}

.trust-icon {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.trust-icon i {
  font-size: 28px;
}

.green i {
  color: #28a745;
}

.pink i {
  color: #ff2d7a;
}

.blue i {
  color: #0b3d91;
}

.trust-content h4 {
  font-size: 18px;
  color: #0b3d91;
  margin-bottom: 8px;
  font-weight: 700;
}

.trust-content p {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}
.certificate-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7fbff, #eef7ff);
  overflow: hidden;
}

.section-heading p {
  color: #64748b;
}

.certificate-section {
  padding: 100px 0;
  background: #f8fbff;
  position: relative;
}

.certificate-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.certificate-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.certificate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
}

.certificate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.certificate-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-icon i {
  font-size: 30px;
  color: #0d6efd;
}

.certificate-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0f172a;
  font-weight: 600;
}

.certificate-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

/* Different icon colors */

.certificate-card:nth-child(1) .certificate-icon {
  background: #eff6ff;
}
.certificate-card:nth-child(1) i {
  color: #2563eb;
}

.certificate-card:nth-child(2) .certificate-icon {
  background: #ecfdf5;
}
.certificate-card:nth-child(2) i {
  color: #16a34a;
}

.certificate-card:nth-child(3) .certificate-icon {
  background: #fffbeb;
}
.certificate-card:nth-child(3) i {
  color: #f59e0b;
}

.certificate-card:nth-child(4) .certificate-icon {
  background: #fef2f2;
}
.certificate-card:nth-child(4) i {
  color: #ef4444;
}
.certificate-process {
  padding: 80px 0;
  background: #fff;
}

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-wrapper::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  border-top: 2px dashed #34a853;
  z-index: 0;
}

.process-box {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step {
  position: absolute;
  top: 0px;
  left: 70px;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-box:nth-child(even) .step {
  background: #0f2b6d;
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.icon-box i {
  font-size: 30px;
  color: #0f2b6d;
}

.process-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.process-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.footer-contact-section {
  background: #f8fbff;
  position: relative;
  padding: 40px 0 0;
}

/* Top Area */

/* Testimonial */

.testimonial-card {
  background: linear-gradient(135deg, #0d47a1, #002d80);
  color: #fff;
  padding: 35px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(13, 71, 161, 0.25);
}

.testimonial-card::before {
  content: "❝";
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 70px;
  opacity: 0.15;
}

.testimonial-card h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.stars {
  color: #ffc107;
  font-size: 18px;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin: 0 5px;
}

/* Enquiry Card */

.enquiry-card {
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  border-radius: 15px;
  padding: 25px;
  display: grid;
  grid-template-columns: 2fr 250px;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.form-side h4 {
  color: #0d47a1;
  font-size: 24px;
  text-align: center;
  margin-bottom: 5px;
}

.form-side p {
  text-align: center;
  color: #777;
  margin-bottom: 20px;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 13px 15px;
  outline: none;
}

.quick-form textarea {
  grid-column: 1/-1;
  height: 80px;
  resize: none;
}

.quick-form button {
  grid-column: 1/-1;
  border: none;
  background: linear-gradient(90deg, #ff1f72, #ff4d89);
  color: #fff;
  height: 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Logo */

.logo-side {
  text-align: center;
}

.logo-side img,
.logo img {
  width: 180px;
  max-width: 100%;
}

/* Curve */

.curve-line {
  height: 18px;
  background: linear-gradient(90deg, #0d47a1 50%, #16a34a 50%);
  border-radius: 100% 100% 0 0;
  margin-top: 15px;
}

/* Footer */

.footer-main {
  background: #fff;
  padding: 45px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer-grid h4 {
  color: #0d47a1;
  margin-bottom: 18px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid li a:hover {
  color: #0d47a1;
  padding-left: 5px;
  transition: 0.3s;
}

.footer-about img {
  width: 100px;
  margin-bottom: 15px;
}

.footer-about p {
  color: #666;
  line-height: 1.8;
}

.appointment-btn {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.appointment-btn:hover {
  background: #12853c;
}

/* Copyright */

.copyright {
  background: #003b95;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 12px;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:nth-child(1) {
  background: #1877f2;
}

.social-icons a:nth-child(2) {
  background: #e4405f;
}

.social-icons a:nth-child(3) {
  background: #ff0000;
}

.social-icons a:nth-child(4) {
  background: #0077b5;
}

.social-icons a:nth-child(5) {
  background: #25d366;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px !important;
}

.contact-list a i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef4ff;
  color: #0d47a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.contact-list span {
  line-height: 1.6;
}

.appointment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.appointment-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding: 35px 0;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-about p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-links h4 {
  color: #0d47a1;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.footer-links ul li a:hover {
  color: #0d47a1;
  padding-left: 4px;
}

/* Social Icons */

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.social-icons a:nth-child(1) {
  background: #1877f2;
}
.social-icons a:nth-child(2) {
  background: #e4405f;
}
.social-icons a:nth-child(3) {
  background: #ff0000;
}
.social-icons a:nth-child(4) {
  background: #0077b5;
}

/* Services */

.service-list li i {
  color: #16a34a;
  margin-right: 8px;
}

/* Contact */

.contact-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  align-items: center;
}

.quick-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-links ul li {
  margin: 0;
}
.footer-links .book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.footer-links .book-btn i {
  width: 24px;
  height: 24px;
  background: #fff;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.top-row {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 20px;
  align-items: stretch;
}
/* TESTIMONIAL */

.testimonial-card {
  background: linear-gradient(135deg, #0046a8, #012d72);
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -30px;
  width: 120%;
  height: 60px;
  background: #fff;
  border-radius: 50%;
}

.testimonial-card h4 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.testimonial-text {
  text-align: center;
  line-height: 1.8;
  font-size: 12px;
  margin-bottom: 25px;
  color: #fff;
}

.client-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.client-info h5 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.client-info span {
  color: #d8e7ff;
  font-size: 12px;
}

.stars {
  color: #ffd700;
  margin-top: 5px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #b5cfff;
  border-radius: 50%;
}

.dots .active {
  background: #fff;
}

/* FORM */

.enquiry-card h4 {
  text-align: center;
  color: #0b4da2;
  margin-bottom: 5px;
  font-weight: 600;
}

.enquiry-card p {
  text-align: center;
  color: #777;
  margin-bottom: 20px;
  font-size: 14px;
}

.enquiry-card input,
.enquiry-card select {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 14px;
  color: #111;
}

.enquiry-card textarea {
  grid-column: 1/-1;
  height: 90px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
}

.enquiry-card button {
  grid-column: 1/-1;
  height: 50px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff2f7d, #ff4d95);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* LOGO */

.logo-card {
  background: #fff;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.logo-card img {
  max-width: 180px;
}
.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.quick-form textarea {
  grid-column: 1/-1;
}

.quick-form button {
  grid-column: 1/-1;
}
.form-group textarea {
  width: 100%;
  height: 70px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 12px 15px;
  resize: none;
}

.full-width {
  grid-column: 1 / -1;
}
.quick-form button {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff1569, #ff3c89);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mission-vision-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fcff, #eef9f2);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #dbeafe;
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.mission-vision-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #dcfce7;
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  position: relative;
  z-index: 2;
}

.mission-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0b4ea2, #22c55e);
}

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(11, 78, 162, 0.15);
}

.mission-card .icon {
  width: 65px;
  height: 65px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4ea2, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}

.mission-card .icon i {
  color: #fff;
  font-size: 26px;
}

.mission-card h3 {
  font-size: 24px;
  margin: 25px 0 15px;
  font-weight: 700;
}

.mission-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.9;
}

.section-title p {
  color: #64748b;
  max-width: 650px;
  margin: auto;
}

.founder-section {
  background: #fff;
  padding: 100px 0;
}

.founder-wrapper {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 70px;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.founder-image::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #dcfce7;
  border-radius: 50%;
  top: -25px;
  left: -25px;
  z-index: -1;
}

.founder-image::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px dashed #22c55e;
  border-radius: 50%;
  bottom: -35px;
  right: -35px;
  z-index: -1;
}

.quote {
  background: #f8fbff;
  border-left: 5px solid #22c55e;
  padding: 20px;
  border-radius: 12px;
  font-style: italic;
  color: #0f172a;
  margin-bottom: 25px;
}

.founder-content p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 14px;
}

.founder-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.founder-info h4 {
  color: #0b4ea2;
  margin-bottom: 5px;
  font-size: 22px;
}

.founder-info span {
  color: #22c55e;
  font-weight: 600;
}
.care-team-section {
  padding: 110px 0;
  background: #f8fbff;
  overflow: hidden;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
}

.team-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(11, 78, 162, 0.15);
}

.team-img {
  height: 380px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.team-info {
  padding: 30px;
  text-align: center;
  position: relative;
}

.team-icon {
  width: 80px;
  height: 80px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 20px;
  position: relative;
  z-index: 5;
  border: 6px solid #fff;
}

.team-icon i {
  color: #fff;
  font-size: 30px;
}

.team-info h3 {
  font-size: 20px;
  color: #0b4ea2;
  margin-bottom: 12px;
  font-weight: 600;
}
.sub-title {
  color: #2ca244;
  font-size: 14px;
  font-weight: 700;
}
.team-info p {
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 14px;
}

.team-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background: #eef6ff;
  color: #0b4ea2;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.team-btn:hover {
  background: #0b4ea2;
  color: #fff;
}
.service-detail {
  padding: 100px 0;
  overflow: hidden;
}

.bg-light {
  background: #f8fbff;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.reverse .service-content {
  direction: ltr;
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: 0.5s;
}

.service-image:hover img {
  transform: scale(1.03);
}

.service-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-content ul li {
  position: relative;
  padding: 10px 0 10px 35px;
  border-bottom: 1px solid #eee;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.service-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: #25b34b;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
}

.service-content .theme-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 32px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.service-content .theme-btn:hover {
  background: #0b4ea2;
}
.faq-section {
  background: #2196f314;
  padding: 100px 0;
}

.faq-wrapper {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  border: none;
  background: #fff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #0b4ea2;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #25b34b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.faq-answer {
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 14px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-question span {
  transition: 0.3s;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
.hero-content .tag-title {
  font-size: 12px;
  display: inline-block;
  margin-bottom: 5px !important;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 20px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  border: 1px solid #eef2f7;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(11, 78, 162, 0.12);
}

.why-number {
  width: 55px;
  height: 55px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4ea2, #25b34b);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}
/* ==========================
CARE STATS
========================== */

.care-stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b4ea2, #25b34b);
  position: relative;
  overflow: hidden;
}

.care-stats::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.care-stats::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 40px 25px;
  text-align: center;
  transition: 0.4s;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.18);
}

.stat-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-box p {
  color: #fff;
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
}
/* ==========================
PROCESS TIMELINE
========================== */

.process-timeline {
  padding: 100px 0;
  background: #f8fbff;
}

.timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(#0b4ea2, #25b34b);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 35px;
  position: relative;
}

.step-no {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4ea2, #25b34b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(11, 78, 162, 0.25);
}

.timeline-content {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border-left: 5px solid #25b34b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(11, 78, 162, 0.12);
}

.timeline-content h3 {
  color: #0b4ea2;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content span {
  display: inline-block;
  color: #25b34b;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

.blog-content a {
  display: inline-block;
  margin-top: 15px;
  color: #0b4ea2;
  font-weight: 600;
  text-decoration: none;
}

.blog-detail-hero {
  position: relative;
  padding: 60px 0 60px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(rgba(11, 78, 162, 0.88), rgba(11, 78, 162, 0.88)),
    url(../images/blog-banner.jpg);
  background-size: cover;
  background-position: center;
}

.blog-detail-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -180px;
  right: -150px;
}

.blog-detail-hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

.blog-detail-hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #25b34b;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.blog-detail-hero h1 {
  font-size: 48px;
  line-height: 1.2;
  max-width: 900px;
  margin: auto;
  font-weight: 700;
  color: #fff;
}

.blog-detail-hero p {
  max-width: 750px;
  margin: 25px auto 35px;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
  color: #fff;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
}

.meta-item i {
  margin-right: 8px;
}

.blog-content {
  max-width: 900px;
  margin: auto;
}

.blog-content h2 {
  color: #0b4ea2;
  margin: 35px 0 15px;
}

.blog-content p {
  color: #666;
  line-height: 1.9;
}

.blog-content ul {
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 10px;
  font-size: 14px;
}

.blog-content blockquote {
  background: #f8fbff;
  border-left: 5px solid #25b34b;
  padding: 25px;
  border-radius: 15px;
  margin: 18px 0;
  color: #0b4ea2;
  font-size: 18px;
}

.tips-box {
  background: #f8fbff;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.related-blog {
  background: #f8fbff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.related-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.related-card h4 {
  padding: 20px;
  color: #0b4ea2;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 0;
}

.related-card a {
  display: block;
  padding: 0 20px 20px;
  color: #25b34b;
  text-decoration: none;
  font-weight: 600;
}
section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}

.contact-info {
  background: #0b4ea2;
  color: #fff;
  padding: 40px;
  border-radius: 25px;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #fff;
}

.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box i {
  width: 45px;
  height: 45px;
  background: #25b34b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-box form {
  display: grid;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  font-size: 14px;
}

.contact-form-box button {
  background: #25b34b;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.contact-form-box button:hover {
  background: #0b4ea2;
}
.contact-form-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 500;
}
.info-box h4 {
  color: #fff;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.info-box p {
  color: #fff;
  margin: 0;
}
.whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(37,211,102,.4);
    animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float:hover{
    color: #fff;
    transform: scale(1.1);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-detail-hero h1 {
    font-size: 40px;
  }
  section {
    padding: 40px 0;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reverse {
    direction: ltr;
  }

  .service-content h2 {
    font-size: 34px;
  }

  .founder-wrapper {
    grid-template-columns: 1fr;
  }
  .team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box h2 {
    font-size: 45px;
  }

  .top-row {
    grid-template-columns: 1fr;
  }

  .enquiry-card form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-row {
    grid-template-columns: 1fr;
  }

  .enquiry-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .certificate-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .image-circle {
    width: 350px;
    height: 350px;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
    right: 10px;
  }

  h1,
  .hero-title {
    font-size: 42px;
  }

  h2,
  .section-title {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  p {
    font-size: 15px;
  }

  .navbar-nav .nav-link {
    font-size: 12px;
  }

  .main-header {
    padding: 8px 0;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
    font-size: 26px;
    color: #0a4ea1;
  }

  .enquiry-btn {
    margin-top: 15px;
    justify-content: center;
  }

  .navbar-nav {
    margin-top: 15px;
  }

  .nav-link {
    padding: 12px 0;
  }
  .top-header {
    display: none;
  }
  .mobile-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-contact ul li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .feature-item {
    gap: 30px;
  }
  .feature-item:after {
    left: -10px;
  }
  .hero-section {
    height: auto;
  }
  .top-info-right {
    display: flex;
    justify-content: start;
    align-items: self-start;
    gap: 12px;
    flex-direction: column;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-content {
    margin-top: 40px;
  }

  .dot-left {
    left: auto;
    right: 15px;
  }

  .feature-item h5 {
    font-size: 18px;
  }

  .exp-box {
    left: 15px;
    bottom: 15px;
    padding: 15px;
  }

  .exp-box h2 {
    font-size: 42px;
  }

  .exp-box span {
    font-size: 18px;
  }

  .leaf-decoration {
    display: none;
  }

  .service-img {
    width: 90px;
    height: 90px;
  }

  .service-img img {
    width: 60px;
  }

  .bottom-features {
    gap: 20px;
  }

  .feature-box {
    font-size: 15px;
  }

  .trust-wrapper {
    grid-template-columns: repeat(2, 335px);
  }

  .trust-box {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }

  .certificate-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificate-wrapper::before {
    display: none;
  }
  .process-box h4 {
    font-size: 14px;
  }
  .process-box p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    gap: 0;
  }
  .feature-item i {
    font-size: 20px;
    margin-right: 5px;
  }
  .feature-item span {
    font-size: 12px;
  }
  .hero-features {
    gap: 20px;
    justify-content: center;
  }
  .hero-section {
    padding: 30px 0;
  }
  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-content p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
  }
  .btn-enquiry,
  .btn-book {
    padding: 12px 16px;
    font-size: 12px;
    display: inline-block;
    line-height: 1.5;
  }
  .hero-btns {
    margin-bottom: 25px;
  }
  .modal-body {
    padding: 12px;
  }
  .bg-circle {
    width: 200px;
    height: 200px;
    left: 0;
    top: 0;
  }
  .top-ring {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
  }
  .about-img {
    height: auto;
  }
  .exp-box {
    width: auto;
    left: 15px;
    bottom: -30px;
    padding: 15px;
  }

  .exp-box h2 {
    font-size: 40px;
  }
  .exp-box i {
    font-size: 25px;
  }
  .exp-box span {
    font-size: 16px;
  }
  .exp-box p {
    font-size: 12px;
  }
  .section-title {
    font-size: 24px;
  }
  .sub-title {
    font-size: 14px;
  }
  .about-tag {
    margin-bottom: 15px;
    font-size: 10px;
  }
  .service-card h4 {
    font-size: 16px;
  }

  .why-banner {
    padding: 20px 0;
  }

  .trust-wrapper,
  .certificate-wrapper {
    grid-template-columns: 1fr;
  }

  .certificate-card {
    padding: 20px;
  }

  .process-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .icon-box {
    width: 65px;
    height: 65px;
  }
  p {
    font-size: 12px;
  }
  .section-heading {
    margin-bottom: 30px;
  }

  .quick-form {
    grid-template-columns: 1fr;
  }

  .quick-form textarea,
  .quick-form button {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 35px 25px;
  }

  .timeline::before {
    left: 27px;
  }

  .timeline-item {
    gap: 15px;
  }

  .step-no {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 18px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .service-detail {
    padding: 70px 0;
  }

  .service-content h2 {
    font-size: 28px;
  }

  .service-content p {
    font-size: 15px;
  }

  .service-image img {
    border-radius: 20px;
  }

  .team-wrapper {
    grid-template-columns: 1fr;
  }

  .team-img {
    height: 320px;
  }

  .care-stats {
    padding: 70px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 30px 20px;
  }

  .stat-box h2 {
    font-size: 40px;
  }

  .stat-box p {
    font-size: 16px;
  }
  h2,
  .section-title {
    font-size: 24px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .blog-detail-hero h1 {
    font-size: 32px;
  }

  .blog-detail-hero p {
    font-size: 14px;
  }
}
