/* ================= ROOT ================= */
:root {
  --primary: #316285;
  --primary-dark: #2b5573;
  --primary-darker: #264c66;

  --text-dark: #111;
  --text-muted: #555;
  --bg-light: #ffffff;
}

/* ================= BOOTSTRAP BUTTON OVERRIDES ================= */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-darker);
  --bs-btn-active-border-color: var(--primary-darker);

  --bs-btn-focus-shadow-rgb: 49, 98, 133;
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);

  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container,
.container-fluid {
  overflow: hidden;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

[data-aos] {
  overflow: hidden;
}

.swiper {
  overflow: hidden !important;
}

/* ================= NAVBAR ================= */
.ct-navbar {
  height: 100px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  z-index: 1050;
}

/* LOGO */
.ct-navbar-logo {
  height: 70px;   /* increase from 42px */
  width: auto;
}

/* NAV LINKS */
.ct-navbar .nav-link {
  font-weight: 500;
  color: #333333;
  padding: 8px 0;
}

.ct-navbar .nav-link.active,
.ct-navbar .nav-link[aria-current="page"] {
  font-weight: 700;
  color: #316285 !important;
}

/* BOOK NOW BUTTON */
.ct-navbar-btn {
  background: #316285;
  border-color: #316285;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
}

.ct-navbar-btn:hover {
  background: #2b5573;
  border-color: #2b5573;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 991px) {

  /* Dropdown background */
  .ct-navbar .navbar-collapse {
    background: #ffffff;
    padding: 16px 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  }

  /* Nav items spacing */
  .ct-navbar .navbar-nav {
    gap: 12px;
  }

  .ct-navbar .nav-link {
    padding: 10px 20px;
  }

  /* Book now button mobile */
  .ct-navbar-btn {
    width: calc(100% - 40px);
    margin: 16px auto 0;
    display: block;
    text-align: center;
  }
}

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

.hero-image-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

/* FULL WIDTH BACKGROUND IMAGE */
.bg-image {
  position: absolute;
  inset: 0;
  background: url("../images/home/main-banner.jpeg") center center / cover no-repeat;
  z-index: 0;
}

/* LEFT WHITE GLASS GRADIENT */
.left-glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.9) 28%,
    rgba(255,255,255,0.65) 45%,
    rgba(255,255,255,0.25) 60%,
    rgba(255,255,255,0.05) 75%,
    rgba(255,255,255,0) 85%
  );
}

/* CONTENT ABOVE OVERLAY */
.hero-overlay-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

/* TITLE */
.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
}

.hero-title span {
  color: #316285;
}

/* TEXT */
.hero-text {
  font-size: 1.1rem;
  color: #444;
  margin: 22px 0 32px;
  line-height: 1.8;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-buttons .btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 42px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-item i {
  font-size: 2rem;
  color: #316285;
}

.stat-number,
.plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
}

.stat-label {
  font-size: 0.9rem;
  color: #555;
  margin-top: 6px;
}

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

@media (max-width: 991px) {

  .hero-image-hero {
    height: auto;
    min-height: auto;
    display: block;
    background: #fff;
    padding-top: 60px;
  }

  .bg-image {
    position: relative;
    height: 260px;
  }

  .left-glass-overlay {
    display: none;
  }

  .hero-overlay-content {
    padding-top: 24px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 100px 0;
}

.about-image-wrapper {
  border-radius: 28px;
  overflow: hidden;
}

.aboutSwiper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

/* ABOUT CONTENT */
.about-content {
  max-width: 540px;
}

.about-badge {
  display: inline-block;
  background: #eaf2fb;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title span {
  color: var(--primary);
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ABOUT FEATURES */
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary) !important;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: #fff;
  font-size: 1.3rem;
}

.feature-item h6 {
  font-weight: 700;
  margin-bottom: 0;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .aboutSwiper img {
    height: 360px;
  }

  .about-title {
    font-size: 2.1rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
}

.about-image-wrapper {
  border-radius: 28px;
  overflow: hidden;
}

.aboutSwiper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

/* RIGHT CONTENT */
.about-content {
  max-width: 540px;
}

.about-badge {
  display: inline-block;
  background: #eaf2fb;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title span {
  color: var(--primary);
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* FEATURES */
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #0d5ea6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: #fff;
  font-size: 1.3rem;
}

.feature-item h6 {
  font-weight: 700;
  margin-bottom: 0;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .aboutSwiper img {
    height: 360px;
  }

  .about-title {
    font-size: 2.1rem;
  }
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.services-header {
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-badge {
  display: inline-block;
  background: #eaf2fb;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CARDS */
.service-card {
  background: #dfe9ee;
  border-radius: 26px;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

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

/* ICON */
.service-icon {
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  color: #fff;
  font-size: 1.4rem;
}

/* CONTENT */
.service-card h5 {
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* POINTS */
.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.service-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-points li span {
  width: 10px;
  height: 10px;
  background: #7fb0c3;
  border-radius: 50%;
}

/* LINK */
.service-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .services-header {
    margin-bottom: 50px;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
  padding: 100px 0;
}

/* HEADER */
.testimonials-header {
  max-width: 720px;
  margin: 0 auto 70px;
}

.google-review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.google-review-summary-centered {
  justify-content: center;
}

.google-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf2f7;
  color: var(--primary);
  border: 1px solid #c9dcea;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
}

.google-review-meta {
  background: #ffffff;
  border: 1px solid #d6e1e7;
  border-radius: 12px;
  padding: 8px 14px;
  text-align: left;
  min-width: 120px;
}

.google-review-meta strong {
  display: block;
  color: var(--primary);
  line-height: 1;
  font-size: 1.1rem;
}

.google-review-meta span {
  font-size: 0.75rem;
  color: #617182;
}

/* MAIN SLIDER */
.testimonial-main-wrapper {
  max-width: 900px;
  margin: 0 auto 80px;
}


.testimonial-main-card {
  background: #dfe9ee;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.testimonial-avatars {
  display: flex;
  gap: 16px;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--primary);
  overflow-wrap: anywhere;
}

.testimonial-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-stars i {
  color: #f7a531;
  margin-right: 2px;
}

/* NAV */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.testimonial-nav.prev { left: 1px; }
.testimonial-nav.next { right: 1px; }

/* DOTS */
.testimonialMainSwiper .swiper-pagination-bullet {
  background: #c3d6df;
  opacity: 1;
}

.testimonialMainSwiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* SMALL CARDS */
.testimonial-card {
  border: 1px solid #d6e1e7;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
}

.testimonial-card .stars i {
  color: #f7a531;
}

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

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .testimonial-main-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-nav {
    display: none;
  }
}

/* ================= BLOG SECTION ================= */
.blog-section {
  padding: 100px 0;
}

.blog-header {
  max-width: 720px;
  margin: 0 auto 70px;
}

/* BLOG CARD */
.blog-card {
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.blog-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

/* PAGINATION */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.page-btn {
  background: none;
  border: none;
  font-weight: 600;
  color: #777;
  font-size: 1rem;
  cursor: pointer;
}

.page-btn.active {
  color: var(--primary);
}

.page-btn:hover {
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .blog-section {
    padding: 80px 0;
  }

  .blog-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .blog-header {
    margin-bottom: 50px;
  }
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 100px 0;
}

.faq-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

/* FAQ WRAPPER */
.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ ITEM */
.faq-item {
  background: #dfe9ee;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #c8d9e3;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA BOX */
.faq-cta {
  max-width: 720px;
  margin: 70px auto 0;
  background: #dfe9ee;
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq-cta h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ CTA BUTTON */
.faq-cta-btn {
  margin-top: 20px;
  padding: 10px 26px;
  font-weight: 600;
  border-radius: 8px;
}

.faq-cta-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .faq-section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .faq-header {
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 100px 0;
}

.contact-header {
  max-width: 720px;
  margin: 0 auto 70px;
}

/* LEFT CARD */
.contact-info-card {
  border: 1px solid #c8d9e3;
  border-radius: 20px;
  padding: 36px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #dfe9ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-info-item h6 {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* RIGHT CARD */
.contact-form-card {
  border: 1px solid #c8d9e3;
  border-radius: 20px;
  padding: 36px;
  height: 100%;
}

/* FORM */
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-control {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-header {
    margin-bottom: 50px;
  }
}

/* ================= MAP SECTION ================= */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ================= FOOTER ================= */
.footer {
  background: #073c64;
  color: #ffffff;
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d4e4ef;
}

/* TITLES */
.footer-title {
  font-weight: 700;
  margin-bottom: 16px;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d4e4ef;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #d4e4ef;
}

.footer-contact i {
  font-size: 1.1rem;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #073c64;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #c9dbea;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #c9dbea;
  text-decoration: none;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-call,
.float-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
}

.float-call {
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
}

.float-whatsapp {
  background: #25d366;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}


/* ================= ABOUT BANNER ================= */
.about-banner {
  position: relative;
  width: 100%;
  min-height: 55vh;
  background: url("../images/about/about-banner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay for readability */
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 40, 70, 0.65),
    rgba(0, 40, 70, 0.65)
  );
  display: flex;
  align-items: center;
}

/* Content */
.about-banner-content {
  padding-top: 80px; /* navbar offset */
}

/* Heading */
.about-banner-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Breadcrumb */
.about-banner-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.about-banner-content p a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.about-banner-content p a:hover {
  text-decoration: underline;
}

.about-banner-content span {
  margin: 0 8px;
  opacity: 0.7;
}

.about-banner-content strong {
  font-weight: 600;
}

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

/* Tablets */
@media (max-width: 991px) {
  .about-banner {
    min-height: 50vh;
  }

  .about-banner-content h1 {
    font-size: 2.6rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-banner {
    min-height: 42vh;
    text-align: center;
  }

  .about-banner-content {
    padding-top: 70px;
  }

  .about-banner-content h1 {
    font-size: 2.2rem;
  }

  .about-banner-content p {
    font-size: 0.9rem;
  }
}


/* ================= OUR MISSION ================= */
.mission-section {
  padding: 100px 0;
}

.mission-image {
  border-radius: 28px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

/* CONTENT */
.mission-content {
  max-width: 520px;
}

.mission-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mission-content h2 span {
  color: var(--primary);
}

.mission-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mission-section {
    padding: 80px 0;
  }

  .mission-image img {
    height: 320px;
  }

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

  .mission-content h2 {
    font-size: 2.1rem;
  }
}

/* ================= OUR VALUES ================= */
.values-section {
  padding: 100px 0 90px;
}

.value-card {
  background: #dfe9ee;
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  text-align: left;
}

.value-icon {
  width: 52px;
  height: 52px;
  background: #073c64;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon i {
  color: #fff;
  font-size: 1.4rem;
}

.value-card h6 {
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .values-section {
    padding: 80px 0;
  }
}

/* ================= OUR TEAM ================= */

.team-section {
  padding: 110px 0;
  background: #ffffff;
}

/* Header */
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #e8f3fa;
  color: #0b5c8c;
  font-weight: 700;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.section-title span {
  color: #0b5c8c;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 60px;
}

/* Card */
.team-card {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

/* Image section */
.team-image {
  position: relative;
  height: 420px;
  overflow: hidden;
}

/* Single blurred image */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
  transform: scale(1.12); 
}

/* Info panel */
.team-info {
  background: #D9D9D9;
  padding: 32px 28px 36px;
  text-align: center;
}

.team-info h6 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b5c8c;
}

.team-info small {
  display: block;
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.92rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .team-image {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .team-image {
    height: 300px;
  }

  .team-info {
    padding: 24px 20px 28px;
  }
}

/* ================= OUR FACILITY ================= */
.facility-section {
  padding: 100px 0;
}

.facility-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 20px 0 28px;
}

/* LIST */
.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.facility-list i {
  color: #073c64;
  font-size: 1.2rem;
  margin-top: 3px;
}

.facility-list strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.facility-list p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* IMAGE */
.facility-image {
  border-radius: 24px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
}

/* CTA */
.facility-cta {
  margin-top: 80px;
  background: #dfe9ee;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
}

.cta-icon {
  width: 52px;
  height: 52px;
  background: #073c64;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cta-icon i {
  color: #fff;
  font-size: 1.4rem;
}

.facility-cta h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.facility-cta p {
  font-size: 0.9rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto 26px;
}

.facility-cta .btn {
  padding: 12px 28px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .facility-section {
    padding: 80px 0;
  }

  .facility-image img {
    height: 300px;
  }

  .facility-cta {
    margin-top: 60px;
    padding: 40px 24px;
  }
}

@media (max-width: 576px) {
  .facility-image img {
    height: 260px;
  }
}


/* ================= SERVICES PAGE BANNER ================= */
.services-banner {
  position: relative;
  width: 100%;
  min-height: 55vh;
  background: url("../images/services/service-banner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 40, 70, 0.65),
    rgba(0, 40, 70, 0.65)
  );
  display: flex;
  align-items: center;
}

/* Content */
.services-banner-content {
  padding-top: 80px; /* navbar offset – SAME */
}

/* Heading */
.services-banner-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Breadcrumb */
.services-banner-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.services-banner-content p a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.services-banner-content p a:hover {
  text-decoration: underline;
}

.services-banner-content span {
  margin: 0 8px;
  opacity: 0.7;
}

.services-banner-content strong {
  font-weight: 600;
}

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

/* Tablets */
@media (max-width: 991px) {
  .services-banner {
    min-height: 50vh;
  }

  .services-banner-content h1 {
    font-size: 2.6rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-banner {
    min-height: 42vh;
    text-align: center;
  }

  .services-banner-content {
    padding-top: 70px;
  }

  .services-banner-content h1 {
    font-size: 2.2rem;
  }

  .services-banner-content p {
    font-size: 0.9rem;
  }
}


/* ================= WHAT WE OFFER ================= */
.offer-section {
  padding: 100px 0;
}

.offer-header {
  max-width: 720px;
  margin: 0 auto 70px;
}

.offer-image {
  border-radius: 26px;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
}

.offer-content {
  max-width: 560px;
}

.offer-icon {
  width: 52px;
  height: 52px;
  background: #e6f1f8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.offer-icon i {
  font-size: 1.6rem;
  color: var(--primary);
}

.offer-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.offer-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.procedure-text {
  margin-bottom: 0;
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.offer-benefits li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.offer-benefits i {
  color: var(--primary);
  margin-top: 3px;
}

/* CTA BOX */
.offer-cta {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid #e5eef5;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-cta small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.offer-cta strong {
  font-size: 1rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  .offer-section {
    padding: 80px 0;
  }

  .offer-image img {
    height: 320px;
  }

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

/* ================= EXTENDED SERVICES ================= */
.services-extended {
  padding: 90px 0;
}

.service-block {
  margin-bottom: 90px;
}

.service-detail {
  max-width: 560px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #e6f1f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--primary);
}

.service-detail h4 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-detail p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.procedure-text {
  margin-bottom: 8px;
}

.service-detail h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 8px;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.service-benefits li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.service-benefits i {
  color: var(--primary);
  margin-top: 3px;
}

/* PRICE CTA */
.service-price {
  margin-top: 22px;
  padding: 16px 20px;
  border: 1px solid #e5eef5;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.service-price strong {
  font-size: 0.95rem;
  font-weight: 700;
}

/* IMAGE */
.service-image {
  border-radius: 26px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 26px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-extended {
    padding: 70px 0;
  }

  .service-block {
    margin-bottom: 70px;
  }

  .service-detail {
    max-width: 100%;
  }

  .service-image img {
    height: 300px;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-choose-section {
  padding: 70px 0; /* reduced top & bottom spacing */
  background: #ffffff;
}

/* HEADER */
.section-header {
  margin-bottom: 30px; /* reduced gap */
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  background: #e6f0f6;
  color: #0b4f6c;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-title span {
  color: #0b4f6c;
}

/* CARDS */
.why-card {
  background: #ffffff;
  border: 1px solid #d7dee3;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* ICON */
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0b4f6c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.why-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* CTA */
.why-cta {
  margin-top: 50px;
  padding: 40px 24px;
  background: #e6f0f6;
  border-radius: 22px;
  text-align: center;
}

.why-cta h4 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-cta p {
  font-size: 1rem;
  color: #444;
  max-width: 620px;
  margin: 0 auto 22px;
}

.why-cta .btn {
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .why-cta {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .why-card {
    padding: 24px;
  }

  .why-cta {
    padding: 32px 20px;
  }
}

/* ================= BLOG PAGE BANNER ================= */
.blog-banner {
  position: relative;
  width: 100%;
  min-height: 55vh; /* SAME AS ABOUT */
  background: url("../images/blogs/blog-gridbanner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.blog-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 45, 75, 0.65),
    rgba(0, 45, 75, 0.65)
  );
  display: flex;
  align-items: center;
}

/* Content */
.blog-banner-content {
  padding-top: 80px; /* navbar offset */
}

/* Heading */
.blog-banner-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Breadcrumb */
.blog-banner-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.blog-banner-content p a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.blog-banner-content p a:hover {
  text-decoration: underline;
}

.blog-banner-content span {
  margin: 0 8px;
  opacity: 0.7;
}

.blog-banner-content strong {
  font-weight: 600;
}

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

/* Tablet */
@media (max-width: 991px) {
  .blog-banner {
    min-height: 50vh;
  }

  .blog-banner-content h1 {
    font-size: 2.6rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .blog-banner {
    min-height: 42vh;
  }

  .blog-banner-content {
    padding-top: 70px;
  }

  .blog-banner-content h1 {
    font-size: 2.2rem;
  }

  .blog-banner-content p {
    font-size: 0.9rem;
  }
}

/* ================= BLOG SECTION ================= */
.ct-blog-section {
  padding: 80px 0;
  background: #ffffff;
}

/* CARD */
.ct-blog-card {
  transition: all 0.3s ease;
}

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

/* IMAGE */
.ct-blog-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

/* TITLE */
.ct-blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0b1f33;
  line-height: 1.45;
  margin-bottom: 8px;
}

/* TEXT */
.ct-blog-text {
  font-size: 0.9rem;
  color: #5f7285;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* READ MORE */
.ct-blog-read {
  font-size: 0.9rem;
  font-weight: 600;
  color: #316285;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ct-blog-read:hover {
  text-decoration: underline;
}

/* ================= PAGINATION ================= */
.ct-blog-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.ct-page-nav {
  font-size: 0.9rem;
  font-weight: 600;
  color: #316285;
  text-decoration: none;
}

.ct-page-number {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #d9e6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #316285;
  text-decoration: none;
}

.ct-page-number.active {
  background: #316285;
  color: #ffffff;
  border-color: #316285;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
  .ct-blog-section {
    padding: 60px 0;
  }

  .ct-blog-image img {
    height: 180px;
  }
}

/* ================= TESTIMONIAL BANNER ================= */
.ct-testimonial-banner {
  position: relative;
  min-height: 55vh;
  background: url("../images/testimonials/testimonial-banner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.ct-testimonial-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 70, 110, 0.7),
    rgba(10, 70, 110, 0.7)
  );
  display: flex;
  align-items: center;
}

.ct-testimonial-banner-content {
  padding-top: 80px; /* navbar offset */
}

.ct-testimonial-banner-content h1 {
  font-size: 3.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.ct-testimonial-banner-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.ct-testimonial-banner-content a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.ct-testimonial-banner-content a:hover {
  text-decoration: underline;
}

.ct-testimonial-banner-content span {
  margin: 0 8px;
  opacity: 0.7;
}

/* ================= TESTIMONIAL STATS ================= */
.ct-testimonial-stats {
  padding: 80px 0;
  background: #ffffff;
}

.ct-stat-card {
  background: #f5f8fb;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.ct-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.ct-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #316285;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ct-stat-icon i {
  font-size: 1.6rem;
  color: #ffffff;
}

.ct-stat-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b1f33;
  margin-bottom: 6px;
}

.ct-stat-card p {
  font-size: 0.9rem;
  color: #5f7285;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .ct-testimonial-banner {
    min-height: 48vh;
  }

  .ct-testimonial-banner-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .ct-testimonial-banner {
    min-height: 42vh;
  }

  .ct-testimonial-banner-content h1 {
    font-size: 2.1rem;
  }

  .ct-testimonial-stats {
    padding: 60px 0;
  }
}

/* ================= PATIENT REVIEWS ================= */
.ct-pr-section {
  padding: 90px 0 60px;
}

.ct-pr-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
}

.ct-pr-header span {
  color: #316285;
}

.ct-badge {
  display: inline-block;
  background: #e6f0f8;
  color: #316285;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.ct-pr-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px;
  background: #ffffff;
  height: 100%;
}

.ct-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.ct-pr-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ct-pr-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ct-avatar {
  width: 36px;
  height: 36px;
  background: #316285;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-pr-user small {
  color: #6b7280;
  font-size: 0.75rem;
}

.gr-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 22px 0 26px;
}

.gr-strip-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gr-google-logo {
  width: 74px;
  height: auto;
}

.gr-strip-stars {
  color: #f4b400;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.gr-strip-score {
  font-weight: 700;
}

.gr-strip-divider {
  color: #9ca3af;
}

.gr-strip-link {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.gr-strip-link:hover {
  text-decoration: underline;
}

.gr-masonry {
  column-count: 3;
  column-gap: 16px;
}

.gr-card {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 18px 14px;
  margin: 0 0 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gr-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gr-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.gr-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #316285;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.gr-author h6 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.gr-author p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.gr-g-badge {
  width: 20px;
  height: 20px;
  margin-left: auto;
}

.gr-stars {
  color: #f4b400;
  margin: 8px 0 6px;
  letter-spacing: 0.6px;
}

.gr-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #222;
  overflow-wrap: anywhere;
}

.gr-read-more {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #6b7280;
  padding: 0;
  font-weight: 500;
}

.gr-load-more {
  border: 2px solid #2673d8;
  border-radius: 14px;
  background: #fff;
  color: #1f3f75;
  font-weight: 600;
  padding: 8px 22px;
}

@media (max-width: 1199px) {
  .gr-masonry {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .gr-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .gr-masonry {
    column-count: 1;
  }
}

/* TESTIMONIAL VIDEO */
/* .ct-video-section {
  padding: 90px 0;
  background: #fff;
}

.ct-video-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
}

.ct-video-header span {
  color: var(--primary);
}

.ct-badge {
  display: inline-block;
  background: #eaf2f7;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 12px;
} */

/* SLIDER */
/* .ct-video-slider {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
} */

/* .ct-video-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
} */

/* SLIDES */
/* .ct-video-slide {
  width: 32%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  filter: blur(3px);
  opacity: 0.5;
  cursor: pointer;
}

.ct-video-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.ct-video-slide.active {
  width: 42%;
  filter: none;
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.ct-video-slide.left,
.ct-video-slide.right {
  transform: scale(0.9);
} */

/* DOTS */
/* .ct-video-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.ct-dot {
  width: 8px;
  height: 8px;
  background: #cfdce6;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ct-dot.active {
  width: 32px;
  background: var(--primary);
} */

/* ================= MOBILE ================= */
/* @media (max-width: 576px) {

  .ct-video-track {
    gap: 0;
  }

  .ct-video-slide {
    display: none;
    width: 100% !important;
    filter: none;
    opacity: 1;
  }

  .ct-video-slide.active {
    display: block;
    transform: none;
  }
} */

/* ================= TRUSTED BY THOUSANDS ================= */
.ct-trust-section {
  padding: 80px 0;
}

.ct-trust-box {
  background: #e9f1f5;
  border-radius: 26px;
  padding: 60px 40px;
  max-width: 980px;
  margin: 0 auto;
}

.ct-trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-trust-icon i {
  font-size: 2rem;
  color: #316285;
}

.ct-trust-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.ct-trust-text {
  font-size: 1rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.ct-trust-tags {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.ct-trust-tags span {
  background: #ffffff;
  border: 1px solid #dbe5ec;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #316285;
}


/* ================= CTA SECTION ================= */
.ct-cta-section {
  padding: 70px 0 90px;
}

.ct-cta-box {
  background: #e9f1f5;
  border-radius: 26px;
  padding: 60px 40px;
  max-width: 980px;
  margin: 0 auto;
}

.ct-cta-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.ct-cta-text {
  font-size: 1rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.ct-cta-btn {
  display: inline-block;
  background: #316285;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ct-cta-btn:hover {
  background: #264c66;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(49, 98, 133, 0.3);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .ct-trust-box,
  .ct-cta-box {
    padding: 45px 24px;
  }

  .ct-trust-title,
  .ct-cta-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .ct-trust-section {
    padding: 60px 0;
  }

  .ct-cta-section {
    padding: 60px 0 80px;
  }

  .ct-trust-tags span {
    width: 100%;
    text-align: center;
  }
}

/* ================= CONTACT BANNER ================= */
.ct-contact-banner {
  position: relative;
  min-height: 55vh;
  background: url("../images/contact/contact-banner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.ct-contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 70, 110, 0.7),
    rgba(10, 70, 110, 0.7)
  );
  display: flex;
  align-items: center;
}

.ct-contact-banner-content {
  padding-top: 80px; /* navbar offset */
}

.ct-contact-banner-content h1 {
  font-size: 3.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.ct-contact-banner-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.ct-contact-banner-content a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.ct-contact-banner-content a:hover {
  text-decoration: underline;
}

.ct-contact-banner-content span {
  margin: 0 8px;
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .ct-contact-banner {
    min-height: 48vh;
  }

  .ct-contact-banner-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .ct-contact-banner {
    min-height: 42vh;
  }

  .ct-contact-banner-content {
    padding-top: 70px;
  }

  .ct-contact-banner-content h1 {
    font-size: 2.1rem;
  }

  .ct-contact-banner-content p {
    font-size: 0.9rem;
  }
}

/* ================= CONTACT SECTION ================= */
.ct-contact-section {
  padding: 100px 0;
  background: #e9f0f5;
}

/* INFO CARD */
.ct-contact-info-card,
.ct-contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  height: 100%;
}

.ct-contact-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.ct-contact-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 30px;
}

.ct-contact-block {
  margin-bottom: 24px;
}

.ct-contact-block h6 {
  font-weight: 700;
  margin-bottom: 6px;
}

.ct-contact-block p,
.ct-contact-block li {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0;
}

.ct-contact-block ul {
  padding-left: 18px;
  margin: 0;
}

.ct-contact-block a {
  color: #316285;
  text-decoration: none;
}

.ct-contact-block a:hover {
  text-decoration: underline;
}

/* FORM */
.ct-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.ct-form-input,
.ct-form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.ct-form-input:focus,
.ct-form-textarea:focus {
  outline: none;
  border-color: #316285;
}

.ct-text-limit {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: right;
  margin-top: 4px;
}

.ct-form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
  font-size: 0.85rem;
}

.ct-form-check input {
  accent-color: #316285;
}

.ct-form-check a {
  color: #316285;
  text-decoration: none;
  font-weight: 600;
}

/* SUBMIT BUTTON */
.ct-submit-btn {
  width: 100%;
  background: #316285;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.ct-submit-btn:hover {
  background: #274f6a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .ct-contact-section {
    padding: 70px 0;
  }

  .ct-contact-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .ct-contact-info-card,
  .ct-contact-form-card {
    padding: 28px 22px;
  }
}

/* ================= MAP + ASSIST SECTION ================= */

.ctc-map-assist-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

/* Heading */
.ctc-map-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

.ctc-map-heading span {
  color: #1e73be;
}

/* Map */
.ctc-map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 80px;
}

.ctc-map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Assistance Box */
.ctc-assist-box {
  background: #eaf3f8;
  padding: 60px 30px;
  border-radius: 18px;
}

.ctc-assist-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ctc-assist-box p {
  font-size: 17px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 35px;
}

/* Buttons */
.ctc-assist-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ctc-call-btn {
  background: #0b4a72;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.ctc-call-btn:hover {
  background: #083a5a;
  color: #fff;
}

.ctc-mail-btn {
  border: 2px solid #0b4a72;
  color: #0b4a72;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  background: transparent;
}

.ctc-mail-btn:hover {
  background: #0b4a72;
  color: #fff;
}

/* ================= BLOG DETAILS ================= */
.ct-blogdetails-section {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.ct-blogdetails-header {
  margin-bottom: 40px;
}

.ct-blogdetails-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ct-blogdetails-intro {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
}

/* IMAGE */
.ct-blogdetails-image {
  margin: 40px 0;
}

.ct-blogdetails-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* CONTENT */
.ct-blogdetails-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.ct-blogdetails-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 26px 0 8px;
}

.ct-blogdetails-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
}

/* CTA */
.ct-blogdetails-cta-title {
  margin-top: 40px;
}

.ct-blogdetails-btn {
  display: inline-block;
  margin-top: 14px;
  background: #316285;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ct-blogdetails-btn:hover {
  background: #274f6a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .ct-blogdetails-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .ct-blogdetails-section {
    padding: 120px 0 64px;
  }

  .ct-blogdetails-title {
    font-size: 1.9rem;
  }

  .ct-blogdetails-image {
    margin: 28px 0;
  }
}

/* ================= RELATED ARTICLES ================= */
.ct-blogdetails-related {
  padding: 90px 0;
  background: #ffffff;
}

.ct-blogdetails-related-header {
  margin-bottom: 36px;
}

.ct-blogdetails-related-title {
  font-size: 1.8rem;
  font-weight: 800;
}

.ct-blogdetails-related-btn {
  font-size: 0.8rem;
  padding: 6px 16px;
  border: 1px solid #316285;
  color: #316285;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ct-blogdetails-related-btn:hover {
  background: #316285;
  color: #ffffff;
}

/* CARD */
.ct-blogdetails-related-card {
  height: 100%;
}

.ct-blogdetails-related-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
}

.ct-blogdetails-related-date {
  font-size: 0.75rem;
  color: #9aa3ad;
  display: block;
  margin-bottom: 6px;
}

.ct-blogdetails-related-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ct-blogdetails-related-card p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ================= EXPLORE SERVICES CTA ================= */
.ct-blogdetails-cta {
  margin: 100px 0 60px;
}

.ct-blogdetails-cta-box {
  background: url("../images/blogs/blogdetails-services.jpeg") center/cover no-repeat;
  border-radius: 22px;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

/* overlay */
.ct-blogdetails-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(49, 98, 133, 0.75);
  z-index: 0;
}

/* content above overlay */
.ct-blogdetails-cta-box * {
  position: relative;
  z-index: 1;
}

.ct-blogdetails-cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
}

.ct-blogdetails-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #316285;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ct-blogdetails-cta-btn:hover {
  background: #274f6a;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .ct-blogdetails-cta-title {
    font-size: 2rem;
  }

  .ct-blogdetails-cta-box {
    padding: 70px 20px;
  }
}

@media (max-width: 576px) {
  .ct-blogdetails-cta-title {
    font-size: 1.7rem;
  }

  .ct-blogdetails-cta-box {
    padding: 60px 16px;
  }
}

/* seo footer */

.seo-footer-block{
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #DFE9EE;
    padding-left: 20px;
    padding-right: 20px;
}
.seo-content-bk{
    width: 100%;
    height : 400px;
    overflow : hidden;
}

.seo-content-bk:hover{
    overflow-y: scroll;
}

.seo-content-bk h1{
    font-size: 35px;
    color: #000;
    margin-bottom: 20px;
}

.seo-content-bk h2{
    font-size: 30px;
    color: #000;
    margin-bottom: 17px;
}

.seo-content-bk h3{
    font-size: 25px;
    color: #000;
    margin-bottom: 14px;
}

.seo-content-bk p{
    margin-bottom: 10px;
}
