* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: #fff;
}
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e7e7e7;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
}

.header-logo img {
  max-width: 110px;
}

.main-menu ul {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  text-decoration: none;
  color: #111;
  font-size: 17px;
  transition: 0.3s;
}

.main-menu ul li a:hover {
  color: #0b3475;
}

.menu-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
}

.submenu li {
  width: 100%;
}

.submenu li a {
  display: block;
  padding: 5px 20px;
  font-size: 16px;
}

.submenu li a:hover {
  background: #f4f7fc;
}

.menu-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
}

/* CALL */
.header-call {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0b3475;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.call-content span {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}

.call-content a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 800;
}

/* MOBILE BTN */
.mobile-menu-btn {
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #0b3475;
  color: #fff;
  font-size: 18px;
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 90px 25px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  z-index: 9999;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 18px;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #111;
  font-size: 17px;
  font-weight: 600;
}
ul.submenu {
    display: block;
}

@media (max-width: 1199px) {
  .main-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-call {
    margin-left: auto;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .header-wrapper {
    min-height: 80px;
  }

  .header-logo img {
    max-width: 85px;
  }

  .header-call {
    display: none;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .mobile-menu {
    width: 250px;
    padding-top: 30px;
  }
}

.hero-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: url("../img/bg.png") no-repeat center center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 500px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 18%,
    rgba(255, 255, 255, 0.92) 38%,
    rgba(255, 255, 255, 0.72) 55%,
    rgba(255, 255, 255, 0.42) 72%,
    rgba(255, 255, 255, 0.12) 88%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 60px 0;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-left {
  max-width: 50%;
}

.hero-title {
  font-size: 50px;
  line-height: 1.05;
  font-weight: 800;
  color: #0b3475;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 35px;
}

/* FEATURES */
.feature-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-box i {
  width: 42px;
  height: 42px;
  background: #fff1f1;
  border-radius: 50%;
  color: #ef3b3b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.feature-box span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btns a {
  text-decoration: none;
  color: #fff;
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 700;
  transition: 0.3s;
}

.hero-btns a:hover {
  transform: translateY(-3px);
}

.btn-red {
  background: #ea2027;
}

.btn-green {
  background: #1fa943;
}

.btn-blue {
  background: #1247a8;
}

/* GOOGLE REVIEW */
.google-review {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.google-review img {
  width: 45px;
}

.review-rating {
  font-size: 20px;
  font-weight: 700;
}

.review-stars {
  color: #ffb400;
}

.review-text {
  font-size: 18px;
  color: #0b3475;
  font-weight: 700;
}

/* DOCTOR INFO BOX */
.doctor-info {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 20;
  background: #0b4bab;
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  min-width: 320px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.doctor-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.doctor-info p {
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .hero-title {
    font-size: 62px;
  }
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 54px;
  }

  .hero-overlay {
    width: 65%;
  }
}

@media (max-width: 991px) {
  .hero-section {
    background-position: center right;
  }

  .hero-overlay {
    width: 100%;
  }

  .hero-overlay::after {
    display: none;
  }

  .hero-content {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .doctor-info {
    right: 20px;
    bottom: 20px;
    width: 90%;
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: auto;

    /* REMOVE REPEAT */
    background-repeat: no-repeat !important;

    /* FULL IMAGE */
    background-size: 230% 100% !important;

    /* IMAGE POSITION */
    background-position: 87% center !important;

    padding: 40px 0 35px;
  }
  .hero-overlay {
    width: 100%;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(2px);
  }
  .hero-overlay::after {
    display: none;
  }

  /* CONTENT */
  .hero-content {
    min-height: auto;
    padding: 0;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
  }

  /* TITLE */
  .hero-title {
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  /* SUBTITLE */
  .hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 95%;
  }

  /* FEATURES */
  .feature-wrap {
    gap: 14px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-box {
    width: 48%;
    align-items: flex-start;
  }

  .feature-box i {
    min-width: 38px;
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .feature-box span {
    font-size: 13px;
    line-height: 1.4;
  }

  /* BUTTONS */
  .hero-btns {
    gap: 12px;
    margin-bottom: 25px;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 14px 20px;
  }

  /* GOOGLE REVIEW */
  .google-review {
    width: 100%;
    padding: 14px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .review-rating {
    font-size: 18px;
  }

  .review-text {
    font-size: 14px;
  }

  /* DOCTOR INFO */
  .doctor-info {
    left: 15px;
    right: 15px;
    bottom: 20px;
    width: auto;
    min-width: auto;
    display: none;

    padding: 14px 18px;
    border-radius: 10px;
  }

  .doctor-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .doctor-info p {
    font-size: 13px;
    line-height: 1.5;
  }
}
.counter-section {
  background: #003f8c;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 18px 20px;

  border-right: 1px solid rgba(255, 255, 255, 0.2);

  height: 100%;
}

.counter-icon i {
  color: #fff;
  font-size: 35px;
}

.counter-content h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.counter-content p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 991px) {
  .counter-box {
    justify-content: flex-start;
    padding: 20px 15px;
  }

  .counter-content h3 {
    font-size: 30px;
  }

  .counter-content p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .counter-box {
    padding: 18px 12px;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    justify-content:center;
  }

  .counter-icon i {
    font-size: 30px;
  }

  .counter-content h3 {
    font-size: 24px;
  }

  .counter-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}

.about-doctor-section {
  padding: 30px 0;
  background: #fff;
}

.about-box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* LEFT BOX */
.doctor-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}

.small-title {
  font-size: 16px;
  font-weight: 800;
  color: #0b3475;
  display: block;
  margin-bottom: 12px;
}

.doctor-content h2 {
  font-size: 25px;
  font-weight: 800;
  color: #0b3475;
  margin-bottom: 8px;
}

.doctor-content h4 {
  font-size: 20px;
  color: #0b3475;
  font-weight: 700;
  margin-bottom: 10px;
}

.doctor-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;

  font-size: 15px;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
}

.doctor-content ul li i {
  color: #0b4bab;
  margin-top: 5px;
  font-size: 16px;
}

.doctor-img-box img {
  max-width: 255px;
  width: 100%;
}

/* RIGHT BOX */
.hospital-box {
  display: flex;
  flex-direction: column;
}

.hospital-text {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 40px;
}

.hospital-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hospital-feature-box {
  text-align: center;
}

.hospital-feature-box i {
  font-size: 48px;
  color: #5d87c9;
  margin-bottom: 16px;
}

.hospital-feature-box h5 {
  font-size: 18px;
  line-height: 1;
  color: #222;
  font-weight: 600;
  margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .doctor-content h2 {
    font-size: 38px;
  }

  .doctor-content ul li {
    font-size: 17px;
  }

  .hospital-text {
    font-size: 19px;
  }

  .hospital-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .doctor-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .doctor-img-box {
    width: 100%;
    text-align: center;
  }

  .doctor-img-box img {
    max-width: 260px;
  }
}

@media (max-width: 767px) {
  .about-doctor-section {
    padding: 40px 0;
  }

  .about-box {
    padding: 20px;
    border-radius: 14px;
  }

  .doctor-content h2 {
    font-size: 30px;
  }

  .doctor-content h4 {
    font-size: 18px;
  }

  .doctor-content ul li {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .hospital-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .hospital-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .hospital-feature-box i {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .hospital-feature-box h5 {
    font-size: 14px;
    line-height: 1.5;
  }
}
/* =========================
ORTHOPEDIC SERVICES
========================= */

.ortho-services-section {
  padding: 15px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b3475;
  margin: 0;
}

/* ROW */
.services-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

/* BOX */
.service-box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;

  padding: 12px;
  text-align: center;

  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.service-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 14px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.service-box:hover .service-img img {
  transform: scale(1.08);
}

/* TITLE */
.service-box h3 a{
  font-size: 22px;
  line-height: 1.5;
  color: #222;
  font-weight: 700;
  margin: 0;
  text-decoration: none;
}

/* BUTTON */
.service-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #0b4bab;
  color: #fff;
  text-decoration: none;

  padding: 16px 34px;
  border-radius: 10px;

  font-size: 20px;
  font-weight: 700;

  transition: 0.3s;
}

.service-btn:hover {
  background: #08377f;
  color: #fff;
}

.service-btn i {
  transition: 0.3s;
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {
  .services-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 34px;
  }

  .services-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-box h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .ortho-services-section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .services-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-img {
    height: 120px;
  }

  .service-box {
    padding: 10px;
    border-radius: 12px;
  }

  .service-box h3 {
    font-size: 15px;
    line-height: 1.4;
  }

  .service-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 20px;
  }
}
/* =========================
CONDITION & CHOOSE SECTION
========================= */

/* =========================
CONDITION & CHOOSE SECTION
========================= */

.conditions-choose-section {
  padding: 15px 0;
  background: #fff;
}

/* COMMON BOX */
.condition-box,
.choose-box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 15px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* TITLES */
.condition-box h2,
.choose-box h2 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #0b3475;
  margin-bottom: 30px;
}

/* =========================
LEFT BOX
========================= */

.condition-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  position: relative;
}

.condition-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.condition-list-wrap {
  display: flex;
  gap: 45px;
}

.condition-list-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.condition-list-wrap ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 22px;

  font-size: 18px;
  color: #222;
  font-weight: 500;
  line-height: 1.35;
}

.condition-list-wrap ul li i {
  color: #4d7bc2;
  font-size: 18px;
  margin-top: 6px;
}

/* IMAGE */
.condition-img {
  position: absolute;
  right: 20px;
  bottom: 30px;
  width: 200px;
}

.condition-img img {
  width: 100%;
  display: block;
}

/* =========================
RIGHT BOX
========================= */

.choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.choose-item {
  text-align: center;
}

.choose-item i {
  font-size: 54px;
  color: #5d87c9;
  margin-bottom: 18px;
}

.choose-item h4 {
  font-size: 15px;
  line-height: 1;
  color: #222;
  margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {
  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  .condition-box h2,
  .choose-box h2 {
    font-size: 34px;
  }

  .condition-list-wrap ul li {
    font-size: 18px;
  }

  .choose-item h4 {
    font-size: 16px;
  }

  .condition-img {
    width: 180px;
  }
}

@media (max-width: 991px) {
  .condition-box {
    min-height: auto;
    padding-bottom: 220px;
  }

  .condition-img {
    width: 170px;
    right: 50%;
    transform: translateX(50%);
  }

  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .conditions-choose-section {
    padding: 40px 0;
  }

  .condition-box,
  .choose-box {
    padding: 22px;
    border-radius: 14px;
  }

  .condition-box h2,
  .choose-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  /*.condition-list-wrap {
  flex-direction: column;
  gap: 0;
 }*/

  .condition-list-wrap ul li {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .condition-list-wrap ul li i {
    font-size: 14px;
  }

  .condition-box {
    padding-bottom: 180px;
  }

  .condition-img {
    width: 130px;
  }

  .choose-grid {
    gap: 20px 10px;
  }

  .choose-item i {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .choose-item h4 {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* =========================
TESTIMONIAL SECTION
========================= */

.testimonial-section {
  padding: 15px 0;
  background: #fff;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 25px;
}

/* LEFT */
.testimonial-left {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-title {
  text-align: center;
  margin-bottom: 25px;
}

.testimonial-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b3475;
  margin: 0;
}

/* TESTIMONIAL ROW */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 18px;
}

.testimonial-top {
  gap: 18px;
}

.testimonial-user {
  width: 100px;
  min-width: 90px;
  height: 100px;
  margin-bottom: 10px;
}

.testimonial-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.stars {
  color: #ffb400;
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1;
}

.testimonial-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 18px;
}

.testimonial-content h4 {
  font-size: 18px;
  color: #222;
  font-weight: 700;
  margin: 0;
}

/* RIGHT */
.testimonial-right {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.google-review-box h3 {
  font-size: 30px;
  color: #0b3475;
  font-weight: 800;
  margin-bottom: 18px;
}

.google-rating {
  font-size: 90px;
  line-height: 1;
  font-weight: 800;
  color: #0b3475;
  margin-bottom: 12px;
}

.google-stars {
  color: #ffb400;
  font-size: 42px;
  margin-bottom: 15px;
}

.google-review-box p {
  font-size: 20px;
  color: #222;
  margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {
  .testimonial-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  .testimonial-title h2 {
    font-size: 34px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .google-rating {
    font-size: 70px;
  }

  .google-stars {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-left,
  .testimonial-right {
    padding: 20px;
    border-radius: 14px;
  }

  .testimonial-title h2 {
    font-size: 26px;
  }

  .testimonial-top {
    gap: 14px;
  }

  .testimonial-user {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }

  .stars {
    font-size: 18px;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial-content h4 {
    font-size: 14px;
  }

  .google-review-box h3 {
    font-size: 22px;
  }

  .google-rating {
    font-size: 54px;
  }

  .google-stars {
    font-size: 24px;
  }

  .google-review-box p {
    font-size: 15px;
  }
}
/* =========================
INFRASTRUCTURE SECTION
========================= */

.infrastructure-section {
  padding: 15px 0;
  background: #fff;
  overflow: hidden;
}

/* TITLE */
.infra-title {
  text-align: center;
  margin-bottom: 30px;
}

.infra-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b3475;
  margin: 0;
}

/* SLIDER */
.infrastructure-slider {
  overflow: hidden;
}

/* BOX */
.infra-box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 12px;
  text-align: center;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.infra-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.infra-img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.infra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.infra-box:hover .infra-img img {
  transform: scale(1.08);
}

/* TEXT */
.infra-box h3 {
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  font-weight: 700;
  margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .infra-title h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .infrastructure-section {
    padding: 40px 0;
  }

  .infra-title {
    margin-bottom: 20px;
  }

  .infra-title h2 {
    font-size: 26px;
  }

  .infra-box {
    padding: 10px;
    border-radius: 12px;
  }

  .infra-img {
    height: 150px;
    margin-bottom: 10px;
  }

  .infra-box h3 {
    font-size: 15px;
    line-height: 1.4;
  }
}
/* =========================
FAQ SECTION
========================= */

.faq-section {
  padding: 15px 0;
  background: #fff;
}

/* TITLE */
.faq-title {
  text-align: center;
  margin-bottom: 30px;
}

.faq-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b3475;
  margin: 0;
}

/* FAQ */
.custom-faq .accordion-item {
  border: 1px solid #e7e7e7;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 18px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-faq .accordion-button {
  background: #fff;
  color: #222;

  font-size: 22px;
  font-weight: 600;

  padding: 22px 26px;

  box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: #0b3475;
  color: #fff;
}

.custom-faq .accordion-button::after {
  filter: brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.custom-faq .accordion-body {
  font-size: 18px;
  line-height: 1.8;
  color: #444;

  padding: 20px 26px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .faq-title h2 {
    font-size: 34px;
  }

  .custom-faq .accordion-button {
    font-size: 18px;
  }

  .custom-faq .accordion-body {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    margin-bottom: 20px;
  }

  .faq-title h2 {
    font-size: 26px;
  }

  .custom-faq .accordion-item {
    margin-bottom: 14px;
    border-radius: 12px !important;
  }

  .custom-faq .accordion-button {
    font-size: 15px;
    line-height: 1.5;
    padding: 16px 18px;
  }

  .custom-faq .accordion-body {
    font-size: 14px;
    line-height: 1.7;
    padding: 16px 18px;
  }
}
/* =========================
LOCATION CONTACT SECTION
========================= */

.location-contact-section {
  padding: 15px 0;
  background: #fff;
}

/* BOX */
.location-box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 15px;
  height: 100%;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.location-box h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0b3475;
  margin-bottom: 24px;
}

/* =========================
AREA LIST
========================= */

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-area-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 5px;

  font-size: 18px;
  line-height: 1.5;
  color: #222;
  font-weight: 500;
}

.service-area-list li i {
  color: #4d7bc2;
  margin-top: 4px;
}

/* BUTTON */
.area-btn,
.direction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #0b4bab;
  color: #fff;
  text-decoration: none;

  padding: 14px 28px;
  border-radius: 10px;

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s;
}

.area-btn:hover,
.direction-btn:hover {
  background: #082f6e;
  color: #fff;
}

/* =========================
MAP
========================= */

.map-box {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.map-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.direction-btn {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

/* =========================
CONTACT INFO
========================= */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-item i {
  font-size: 24px;
  color: #0b4bab;
  margin-top: 4px;
}

.contact-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  font-weight: 500;
}

.contact-item p a {
  font-size: 18px;
  text-decoration: none;
  line-height: 1.7;
  color: #222;
  font-weight: 500;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .location-box h2 {
    font-size: 24px;
  }

  .service-area-list li,
  .contact-item p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .map-box img {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .location-contact-section {
    padding: 40px 0;
  }

  .location-box {
    padding: 20px;
    border-radius: 14px;
  }

  .location-box h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .service-area-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item i {
    font-size: 18px;
  }

  .contact-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .map-box img {
    height: 220px;
  }

  .area-btn,
  .direction-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 18px;
  }
}
/* =========================
APPOINTMENT CTA
========================= */

.appointment-cta-section {
  padding: 0px 0;
  background: #fff;
}

/* MAIN BOX */
.appointment-box {
  position: relative;
  overflow: hidden;

  border-radius: 0;

  padding: 18px 28px;

  background: url("../img/cta-bg.png") no-repeat center;
  background-size: cover;
}

/* BLUE OVERLAY */
.appointment-box::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 52, 125, 0.15) 0%,
    rgba(0, 52, 125, 0.88) 18%,
    rgba(0, 52, 125, 0.96) 40%,
    rgba(0, 52, 125, 1) 100%
  );

  z-index: 1;
}

/* CONTENT */
.appointment-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* =========================
LEFT SIDE
========================= */

.appointment-left {
  padding-left: 0px;
  padding-top: 2px;
}

.appointment-left h2 {
  font-size: 22px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
  white-space: nowrap;
}

.appointment-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  opacity: 0.95;
  max-width: 320px;
}

/* =========================
RIGHT SIDE
========================= */

/*.appointment-right{
    width:72%;
}*/

/* FORM */
.appointment-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;

  margin-bottom: 12px;
}

.appointment-form input,
.appointment-form select {
  height: 48px;

  border: none;
  outline: none;

  border-radius: 5px;

  padding: 0 16px;

  font-size: 14px;
  color: #222;

  background: #fff;
}

/* BUTTON */
.appointment-form button {
  border: none;
  background: #ef1d25;
  color: #fff;

  border-radius: 5px;

  font-size: 15px;
  font-weight: 700;

  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.appointment-form button:hover {
  background: #d11219;
}

/* BOTTOM BUTTONS */
.appointment-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* BTN */
.appointment-btns a {
  min-width: 220px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-decoration: none;
  color: #fff;

  border-radius: 5px;

  font-size: 15px;
  font-weight: 700;

  transition: 0.3s;
}

.call-btn {
  background: #0f53bb;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.whatsapp-btn {
  background: #1aad39;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* HOVER */
.call-btn:hover,
.whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .appointment-content {
    flex-direction: column;
  }

  .appointment-left,
  .appointment-right {
    width: 100%;
  }

  .appointment-left h2 {
    white-space: normal;
  }

  .appointment-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .appointment-left {
    padding-left: 0px;
    padding-top: 2px;
  }

  .appointment-cta-section {
    padding: 40px 0;
  }

  .appointment-box {
    padding: 20px;
    border-radius: 12px;
  }

  .appointment-content {
    gap: 20px;
  }

  .appointment-left h2 {
    font-size: 26px;
  }

  .appointment-left p {
    font-size: 14px;
  }

  .appointment-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .appointment-form input,
  .appointment-form select,
  .appointment-form button {
    height: 48px;
    font-size: 14px;
  }

  .appointment-btns {
    flex-direction: column;
  }

  .appointment-btns a {
    width: 100%;
    min-width: 100%;
  }
}
/* =========================
FOOTER
========================= */

.footer-section {
  background: #012442;
  padding: 45px 0 18px;
  position: relative;
  overflow: hidden;
}

/* BG EFFECT */
.footer-section::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;

  width: 350px;
  height: 350px;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );

  z-index: 1;
}

/* WRAPPER */
.footer-wrapper {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 35px;
}

/* LOGO */
.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  max-width: 170px;
}

/* ABOUT */
.footer-about p {
  color: #dfe9ff;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* TITLES */
.footer-col h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 22px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #dfe9ff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;

  font-size: 15px;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: #002d6e;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 16px;
}

.footer-contact-item i {
  color: #fff;
  font-size: 16px;
  margin-top: 5px;
}

.footer-contact-item p {
  color: #dfe9ff;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.footer-bottom {
  position: relative;
  z-index: 2;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-top: 35px;
  padding-top: 18px;

  text-align: center;

  color: #dfe9ff;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding: 40px 0 15px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .footer-about p,
  .footer-col ul li a,
  .footer-contact-item p {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    font-size: 13px;
  }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 999;
}

    .popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.popup {
    width: 90%;
    max-width: 450px;
    background: #0b3475;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    transform: translateY(40px);
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.popup-overlay.active .popup {
    transform: translateY(0);
}

.popup h2 {
    font-size: 32px;
    color:#fff;
    margin-bottom: 15px;
}

.popup p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup span {
    padding: 5px 15px;
    border: none;
    border-radius: 50px;
    background: #ef1d25;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .popup span:hover {
        background: #062b66;
    }

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 26px;
    cursor: pointer;
    color: #666;
}

    .close-btn:hover {
        color: #000;
    }

@media(max-width:768px) {
    .content {
        padding: 40px 20px;
    }

        .content h1 {
            font-size: 34px;
        }

    .popup {
        padding: 30px 20px;
    }

        .popup h2 {
            font-size: 26px;
        }
}