:root {
  --navy: #002b63;
  --navy-dark: #001032;
  --navy-soft: #073f77;
  --blue: #00689a;
  --cyan: #00a0c6;
  --gold: #eab646;
  --gold-dark: #cc9630;
  --ink: #12213a;
  --muted: #69758a;
  --surface: #f4f7fb;
  --line: #dfe7ef;
  --white: #ffffff;
  --shadow: 0 24px 65px rgba(0, 43, 99, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
a { text-decoration: none; }
img { max-width: 100%; }
.section-space { padding: 96px 0; }

/* Header */
.site-navbar {
  min-height: 82px;
  border-top: 4px solid var(--navy-dark);
  box-shadow: 0 10px 32px rgba(0, 16, 50, 0.08);
}
.site-logo {
  width: 255px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.site-navbar .nav-link {
  position: relative;
  padding: 28px 13px !important;
  color: #17243b;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 21px;
  left: 13px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.25s ease;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active { color: var(--navy); }
.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after { transform: scaleX(1); }
.site-navbar .dropdown-toggle::after { position: static; width: auto; height: auto; transform: none; background: none; }
.dropdown-menu { padding: 10px; border-radius: 14px; }
.dropdown-item { padding: 10px 14px; border-radius: 9px; font-weight: 700; }
.dropdown-item:hover { color: var(--navy); background: #eef5fb; }

/* Shared media boxes */
.media-slot {
  position: relative;
  overflow: hidden;
  background: #05070b;
}
.media-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 43, 99, 0.2), rgba(0, 160, 198, 0.06)),
    #05070b;
  text-align: center;
}
.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: inherit;
}
.media-placeholder span,
.media-placeholder small { position: relative; z-index: 1; }
.media-placeholder span {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.media-placeholder small { color: rgba(255, 255, 255, 0.58); font-size: 0.76rem; }

/* Hero */
.hero-section {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media .media-placeholder {
  align-items: flex-end;
  justify-content: center;
  padding-right: 11%;
}
.hero-overlay {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 16, 50, 0.95) 0%, rgba(0, 43, 99, 0.86) 44%, rgba(0, 43, 99, 0.38) 72%, rgba(0, 16, 50, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 16, 50, 0.15), rgba(0, 16, 50, 0.15));
}
.hero-content { position: relative; z-index: 4; }
.min-vh-hero { min-height: 610px; padding: 82px 0 140px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #c9f5ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.hero-section h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.hero-section p {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}
.btn { border-radius: 8px; font-weight: 800; transition: all 0.25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: var(--navy-dark); border-color: var(--gold); background: var(--gold); box-shadow: 0 15px 30px rgba(234, 182, 70, 0.22); }
.btn-gold:hover { color: var(--navy-dark); border-color: #f1c86e; background: #f1c86e; }
.btn-outline-white { color: var(--white); border: 1px solid rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); }
.btn-outline-white:hover { color: var(--navy); border-color: var(--white); background: var(--white); }
.btn-navy { color: var(--white); border-color: var(--navy); background: var(--navy); }
.btn-navy:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.hero-stat-wrap { position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; }
.hero-stats {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.17);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(0, 16, 50, 0.88);
  backdrop-filter: blur(14px);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 96px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.13);
}
.hero-stats > div:last-child .stat-item { border-right: 0; }
.stat-item i { color: var(--gold); font-size: 1.55rem; }
.stat-item div { display: flex; flex-direction: column; }
.stat-item strong { color: var(--white); font-size: 0.95rem; }
.stat-item span { color: rgba(255,255,255,0.58); font-size: 0.78rem; }

/* Headings */
.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.section-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.045em;
}
.section-copy { color: var(--muted); }
.section-heading { max-width: 800px; }

/* Service intro */
.service-intro { background: var(--surface); }
.service-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 43, 99, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -92px;
  right: -85px;
  border-radius: 50%;
  background: rgba(0,160,198,0.11);
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(0,104,154,0.3); box-shadow: var(--shadow); }
.card-number { position: absolute; top: 23px; right: 25px; color: #bfcbd8; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.service-icon {
  width: 59px;
  height: 59px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue) 70%, var(--cyan));
  font-size: 1.48rem;
}
.service-card h3 { font-size: 1.17rem; font-weight: 800; }
.service-card p { color: var(--muted); font-size: 0.92rem; }
.service-card a { color: var(--navy); font-size: 0.84rem; font-weight: 800; }

/* About */
.about-section { background: var(--white); }
.about-visual { position: relative; padding: 0 30px 30px 0; }
.about-main-image { min-height: 520px; border-radius: 24px; box-shadow: var(--shadow); }
.about-main-image .media-placeholder { border-radius: 24px; }
.experience-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 205px;
  padding: 24px;
  color: var(--white);
  border: 6px solid var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 20px 42px rgba(0,43,99,0.2);
}

.experience-badge-home .experience-badge-home-intext  {
    visibility: hidden !important;
     }
.visual-card .experience-badge-home-intext  {
    visibility: hidden !important;
     }
     
.experience-badge strong,
.experience-badge span { display: block; }
.experience-badge strong { color: var(--gold); font-size: 1.3rem; }
.experience-badge span { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.lead-text { color: var(--ink); font-size: 1.08rem; font-weight: 700; }
.check-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdff;
  font-size: 0.88rem;
  font-weight: 700;
}
.check-box i { color: var(--cyan); font-size: 1.05rem; }

/* Image service grid */
.image-services { background: #f7f9fc; }
.image-service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 17px 45px rgba(0, 43, 99, 0.12);
}
.image-service-card.large-card { min-height: 430px; }
.image-service-card .media-slot { position: absolute; inset: 0; }
.image-service-card .media-placeholder { border-radius: 22px; }
.image-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0,16,50,0.9) 0%, rgba(0,16,50,0.2) 62%, rgba(0,16,50,0.06) 100%);
}
.image-card-content {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 27px;
  left: 28px;
  color: var(--white);
}
.image-card-content > span { display: inline-block; margin-bottom: 10px; color: var(--gold); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; }
.image-card-content h3 { margin-bottom: 6px; font-size: 1.35rem; font-weight: 800; }
.image-card-content p { max-width: 560px; margin: 0; color: rgba(255,255,255,0.72); font-size: 0.88rem; }

/* Process */
.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 93% 12%, rgba(0,160,198,0.26), transparent 27%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.process-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -260px;
  bottom: -330px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.light-label { color: #9eeafa; }
.process-intro { max-width: 540px; color: rgba(255,255,255,0.67); }
.process-list { position: relative; z-index: 1; display: grid; gap: 15px; }
.process-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 19px;
  padding: 23px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}
.process-list article > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  border-radius: 14px;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}
.process-list h3 { margin: 0 0 4px; font-size: 1.04rem; font-weight: 800; }
.process-list p { margin: 0; color: rgba(255,255,255,0.62); font-size: 0.86rem; }

/* Partners */
.partner-section { background: var(--white); }
.partner-box { min-height: 128px; border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 11px 30px rgba(0,43,99,0.05); }
.partner-box .media-placeholder { border-radius: 15px; }
.partner-box .media-placeholder span { font-size: 1.05rem; }
.partner-box .media-placeholder small { font-size: 0.66rem; }
.partner-image { object-fit: contain; padding: 19px; background: var(--white); }

/* Testimonials */
.testimonials-section { background: var(--surface); }
.review-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 13px 36px rgba(0,43,99,0.06);
}
.review-card > i { color: var(--cyan); font-size: 2.45rem; line-height: 1; }
.review-card > p { min-height: 150px; margin: 19px 0 24px; color: var(--muted); }
.review-card div { display: flex; flex-direction: column; }
.review-card strong { color: var(--navy); }
.review-card span { color: var(--muted); font-size: 0.78rem; }
.review-card.featured { color: var(--white); border-color: transparent; background: linear-gradient(145deg, var(--navy), var(--blue)); }
.review-card.featured > i { color: var(--gold); }
.review-card.featured > p { color: rgba(255,255,255,0.8); }
.review-card.featured strong { color: var(--white); }
.review-card.featured span { color: rgba(255,255,255,0.6); }

/* Contact */
.contact-section { padding: 30px 0 95px; background: var(--surface); }
.contact-panel-home {
  padding: 55px;
  color: var(--white);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 25%, rgba(0,160,198,0.38), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  box-shadow: var(--shadow);
}
.contact-panel-home h2 { margin: 8px 0 12px; font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; line-height: 1.14; letter-spacing: -0.045em; }
.contact-panel-home p { margin: 0; color: rgba(255,255,255,0.7); }
.contact-links { display: grid; gap: 12px; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 13px;
  background: rgba(255,255,255,0.07);
}
.contact-links i { width: 43px; height: 43px; display: inline-flex; align-items: center; justify-content: center; color: var(--navy-dark); border-radius: 11px; background: var(--gold); }
.contact-links span { display: flex; flex-direction: column; font-weight: 700; }
.contact-links small { color: rgba(255,255,255,0.55); font-size: 0.7rem; font-weight: 500; }

/* Footer */
.site-footer { padding: 68px 0 23px; color: rgba(255,255,255,0.65); background: #000d24; }
.footer-logo { width: 250px; margin-bottom: 18px; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25)); }
.site-footer h3 { margin-bottom: 17px; color: var(--white); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.site-footer a { display: block; margin-bottom: 8px; color: rgba(255,255,255,0.64); font-size: 0.88rem; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }
.footer-bottom a { display: inline-flex; gap: 7px; margin: 0; }

/* Responsive */
@media (max-width: 991.98px) {
  .section-space { padding: 76px 0; }
  .site-navbar .nav-link { padding: 11px 0 !important; }
  .site-navbar .nav-link::after { right: auto; bottom: 4px; left: 0; width: 45px; }
  .navbar-collapse { padding: 15px 0 22px; }
  .site-logo { width: 220px; }
  .hero-section,
  .min-vh-hero { min-height: 660px; }
  .min-vh-hero { padding: 70px 0 190px; }
  .hero-media .media-placeholder { align-items: center; padding-right: 24px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,16,50,0.95), rgba(0,43,99,0.76)); }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero-stats > div:last-child .stat-item { border-bottom: 0; }
  .about-main-image { min-height: 440px; }
  .image-service-card,
  .image-service-card.large-card { min-height: 380px; }
  .review-card > p { min-height: auto; }
}

@media (max-width: 575.98px) {
  .site-navbar { min-height: 72px; }
  .site-logo { width: 185px; max-height: 52px; }
  .hero-section,
  .min-vh-hero { min-height: 760px; }
  .min-vh-hero { padding: 70px 0 300px; }
  .hero-section h1 { font-size: 2.55rem; }
  .hero-stat-wrap { padding: 0 12px; }
  .hero-stats { border-radius: 16px 16px 0 0; }
  .stat-item { min-height: 82px; padding: 17px 20px; }
  .section-space { padding: 64px 0; }
  .about-visual { padding: 0 18px 24px 0; }
  .about-main-image { min-height: 370px; }
  .experience-badge { width: 175px; padding: 18px; }
  .image-service-card,
  .image-service-card.large-card { min-height: 340px; }
  .contact-panel-home { padding: 34px 24px; }
  .footer-bottom { flex-direction: column; }
}

/* About page css start*/

:root {
  --navy: #002b63;
  --navy-dark: #001032;
  --navy-soft: #073f77;
  --blue: #00689a;
  --cyan: #00a0c6;
  --gold: #eab646;
  --gold-light: #f1c86e;
  --ink: #12213a;
  --muted: #69758a;
  --surface: #f4f7fb;
  --line: #dfe7ef;
  --white: #ffffff;
  --shadow: 0 24px 65px rgba(0, 43, 99, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-space {
  padding: 96px 0;
}

/* ================= HEADER ================= */
.site-navbar {
  min-height: 82px;
  border-top: 4px solid var(--navy-dark);
  box-shadow: 0 10px 32px rgba(0, 16, 50, 0.08);
}

.site-logo {
  width: 255px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-navbar .nav-link {
  position: relative;
  padding: 28px 13px !important;
  color: #17243b;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 21px;
  left: 13px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--navy);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.site-navbar .dropdown-toggle::after {
  position: static;
  width: auto;
  height: auto;
  background: none;
  transform: none;
}

.dropdown-menu {
  padding: 10px;
  border-radius: 14px;
}

.dropdown-item {
  padding: 10px 14px;
  border-radius: 9px;
  font-weight: 700;
}

.dropdown-item:hover {
  color: var(--navy);
  background: #eef5fb;
}

/* ================= IMAGE PLACEHOLDERS ================= */
.image-slot {
  position: relative;
  overflow: hidden;
  background: #05070b;
}

.slot-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 43, 99, 0.22), rgba(0, 160, 198, 0.07)),
    #05070b;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: inherit;
}

.image-placeholder span,
.image-placeholder small {
  position: relative;
  z-index: 1;
}

.image-placeholder span {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.image-placeholder small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

/* ================= ABOUT HERO ================= */
.about-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.hero-image-slot,
.about-hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image-slot .image-placeholder {
  align-items: flex-end;
  padding-right: 10%;
}

.about-hero-overlay {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 16, 50, 0.96) 0%, rgba(0, 43, 99, 0.87) 47%, rgba(0, 43, 99, 0.45) 76%, rgba(0, 16, 50, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 16, 50, 0.18), rgba(0, 16, 50, 0.18));
}

.hero-content {
  z-index: 4;
}

.hero-row {
  min-height: 500px;
  padding: 72px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #c9f5ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.about-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.about-hero p {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}

.breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.68);
}

.breadcrumb-item a {
  color: var(--gold);
  font-weight: 700;
}

/* ================= SHARED HEADINGS ================= */
.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-title {
  margin: 0 0 17px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.section-copy {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
}

.lead-text {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

/* ================= ABOUT INTRO ================= */
.about-intro {
  background: var(--white);
}

.about-visual {
  position: relative;
  padding: 0 34px 34px 0;
}

.about-main-image {
  min-height: 545px;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.about-main-image .image-placeholder {
  border-radius: 25px;
}

.visual-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 260px;
  padding: 22px;
  color: var(--white);
  border: 6px solid var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 20px 42px rgba(0, 43, 99, 0.2);
}

.visual-card i {
  color: var(--gold);
  font-size: 2rem;
}

.visual-card div {
  display: flex;
  flex-direction: column;
}

.visual-card strong {
  font-size: 0.95rem;
}

.visual-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdff;
  font-size: 0.88rem;
  font-weight: 700;
}

.benefit-item i {
  color: var(--cyan);
  font-size: 1.06rem;
}

/* ================= BUTTONS ================= */
.btn {
  border-radius: 8px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-navy {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.btn-navy:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.btn-gold {
  color: var(--navy-dark);
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 15px 30px rgba(234, 182, 70, 0.22);
}

.btn-gold:hover {
  color: var(--navy-dark);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

/* ================= APPROACH ================= */
.approach-section {
  background: var(--surface);
}

.approach-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 43, 99, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.approach-card > span {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #bfcbd8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.approach-icon {
  width: 61px;
  height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--navy), var(--blue) 70%, var(--cyan));
  font-size: 1.5rem;
}

.approach-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.approach-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.approach-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 95% 8%, rgba(0, 160, 198, 0.3), transparent 30%),
    linear-gradient(145deg, var(--navy-dark), var(--navy));
}

.approach-card.featured > span {
  color: rgba(255, 255, 255, 0.38);
}

.approach-card.featured .approach-icon {
  color: var(--navy-dark);
  background: var(--gold);
}

.approach-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

/* ================= SUPPORT SERVICES ================= */
.support-section {
  background: var(--white);
}

.support-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfdff;
  box-shadow: 0 12px 34px rgba(0, 43, 99, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 104, 154, 0.32);
}

.support-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 1.48rem;
}

.support-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ================= GUIDANCE CTA ================= */
.guidance-section {
  overflow: hidden;
  background: var(--navy-dark);
}

.guidance-image {
  min-height: 560px;
}

.guidance-content-wrap {
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(0, 160, 198, 0.32), transparent 31%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.guidance-content {
  max-width: 680px;
  padding: 80px clamp(30px, 7vw, 100px);
}

.light-label {
  color: #9eeafa;
}

.guidance-content h2 {
  margin: 7px 0 18px;
  font-size: clamp(2.1rem, 4.4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.guidance-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

/* ================= FOOTER ================= */
.site-footer {
  padding: 68px 0 23px;
  color: rgba(255, 255, 255, 0.65);
  background: #000d24;
}

.footer-logo {
  width: 250px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.site-footer h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom a {
  display: inline-flex;
  gap: 7px;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px) {
  .section-space {
    padding: 76px 0;
  }

  .site-navbar .nav-link {
    padding: 11px 0 !important;
  }

  .site-navbar .nav-link::after {
    right: auto;
    bottom: 4px;
    left: 0;
    width: 45px;
  }

  .navbar-collapse {
    padding: 15px 0 22px;
  }

  .site-logo {
    width: 220px;
  }

  .hero-image-slot .image-placeholder {
    align-items: center;
    padding-right: 24px;
  }

  .about-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 16, 50, 0.95), rgba(0, 43, 99, 0.78));
  }

  .about-main-image {
    min-height: 450px;
  }

  .guidance-image {
    min-height: 430px;
  }
}

@media (max-width: 575.98px) {
  .site-navbar {
    min-height: 72px;
  }

  .site-logo {
    width: 185px;
    max-height: 52px;
  }

  .section-space {
    padding: 64px 0;
  }

  .about-hero,
  .hero-row {
    min-height: 540px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-visual {
    padding: 0 18px 28px 0;
  }

  .about-main-image {
    min-height: 380px;
  }

  .visual-card {
    width: 210px;
    padding: 17px;
  }

  .support-card {
    grid-template-columns: 1fr;
  }

  .guidance-image {
    min-height: 350px;
  }

  .guidance-content {
    padding: 60px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* About page css End */
/* Concatc page css start*/
:root {
  --navy: #002b63;
  --navy-dark: #001032;
  --navy-soft: #073f77;
  --blue: #00689a;
  --cyan: #00a0c6;
  --gold: #eab646;
  --gold-light: #f1c86e;
  --ink: #12213a;
  --muted: #69758a;
  --surface: #f4f7fb;
  --line: #dfe7ef;
  --white: #ffffff;
  --shadow: 0 24px 65px rgba(0, 43, 99, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ================= HEADER ================= */
.site-navbar {
  min-height: 82px;
  border-top: 4px solid var(--navy-dark);
  box-shadow: 0 10px 32px rgba(0, 16, 50, 0.08);
}

.site-logo {
  width: 255px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-navbar .nav-link {
  position: relative;
  padding: 28px 13px !important;
  color: #17243b;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 21px;
  left: 13px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--navy);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.site-navbar .dropdown-toggle::after {
  position: static;
  width: auto;
  height: auto;
  background: none;
  transform: none;
}

.dropdown-menu {
  padding: 10px;
  border-radius: 14px;
}

.dropdown-item {
  padding: 10px 14px;
  border-radius: 9px;
  font-weight: 700;
}

.dropdown-item:hover {
  color: var(--navy);
  background: #eef5fb;
}

/* ================= PAGE HEADER ================= */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 24%, rgba(0, 160, 198, 0.34), transparent 27%),
    radial-gradient(circle at 13% 78%, rgba(234, 182, 70, 0.16), transparent 22%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 58%, var(--blue));
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-hero::before {
  width: 330px;
  height: 330px;
  top: -180px;
  right: 9%;
}

.contact-hero::after {
  width: 210px;
  height: 210px;
  right: -70px;
  bottom: -120px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #cdf6ff;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.42);
}

.breadcrumb-item,
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb-item a {
  color: var(--white);
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-label {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.contact-panel,
.form-card,
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 17px 48px rgba(0, 43, 99, 0.1);
}

.contact-panel,
.form-card {
  padding: 32px;
}

.panel-heading {
  margin-bottom: 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.panel-heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-heading h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 14px;
  background:
    linear-gradient(135deg, var(--navy), var(--blue) 72%, var(--cyan));
  box-shadow: 0 12px 24px rgba(0, 104, 154, 0.2);
  font-size: 1.25rem;
}

.contact-detail h4 {
  margin: 1px 0 5px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-detail a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--blue);
}

/* Map */
.map-card {
  min-height: 100%;
  background: var(--navy-dark);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

/* Form */
.form-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.form-floating > .form-control {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.9rem;
  box-shadow: none;
}

.form-floating > textarea.form-control {
  min-height: 170px;
  resize: vertical;
}

.form-floating > label {
  color: #7a8799;
  font-size: 0.86rem;
}

.form-control:focus {
  border-color: rgba(0, 104, 154, 0.7);
  box-shadow: 0 0 0 0.23rem rgba(0, 160, 198, 0.1);
}

.btn-contact {
  min-height: 57px;
  color: var(--navy-dark);
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: var(--gold);
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-contact:hover {
  color: var(--navy-dark);
  border-color: var(--gold-light);
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.site-footer {
  padding: 75px 0 0;
  color: rgba(255, 255, 255, 0.64);
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 160, 198, 0.16), transparent 25%),
    var(--navy-dark);
}

.footer-logo {
  width: 230px;
  max-height: 68px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.site-footer p {
  max-width: 450px;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.82rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px) {
  .site-navbar {
    min-height: 74px;
  }

  .site-logo {
    width: 215px;
  }

  .site-navbar .nav-link {
    padding: 11px 4px !important;
  }

  .site-navbar .nav-link::after {
    right: auto;
    bottom: 5px;
    left: 4px;
    width: 45px;
  }

  .navbar-collapse {
    padding: 12px 0 18px;
  }

  .contact-hero {
    padding: 76px 0;
  }

  .contact-section {
    padding: 76px 0;
  }

  .map-card iframe {
    min-height: 440px;
  }
}

@media (max-width: 767.98px) {
  .contact-panel,
  .form-card {
    padding: 25px;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .site-logo {
    width: 185px;
  }

  .contact-hero {
    padding: 64px 0;
  }

  .contact-section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .contact-panel,
  .form-card {
    border-radius: 17px;
  }
}


/*Concatc page css end */

/* testimonial slides start*/

/* Testimonial slider styles */
.testimonials-section {
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 160, 198, 0.09), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.testimonials-section .section-heading {
  max-width: 760px;
}

.testimonials-section .section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #00689a;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.testimonials-section .section-title {
  margin: 0;
  color: #001032;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.testimonial-slider {
  --testimonial-gap: 24px;
  position: relative;
}

.testimonial-slider__viewport {
  overflow: hidden;
  padding: 8px 2px 26px;
}

.testimonial-slider__track {
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc((100% - (var(--testimonial-gap) * 2)) / 3);
  min-width: 0;
}

.review-card {
  position: relative;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 43, 99, 0.1);
}

.review-card::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -75px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(0, 160, 198, 0.08);
}

.review-card.featured {
  color: #ffffff;
  border-color: #002b63;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 160, 198, 0.3), transparent 28%),
    linear-gradient(145deg, #001032, #002b63);
  box-shadow: 0 24px 58px rgba(0, 43, 99, 0.22);
}

.review-card__quote {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #002b63;
  border-radius: 16px;
  background: #eef6fb;
  font-size: 1.75rem;
}

.review-card.featured .review-card__quote {
  color: #001032;
  background: #eab646;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  color: #3f4c60;
  font-size: 1rem;
  line-height: 1.9;
}

.review-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.review-card__client {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid #e4ebf1;
}

.review-card.featured .review-card__client {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.review-card__client strong {
  color: #001032;
  font-size: 0.98rem;
  font-weight: 800;
}

.review-card.featured .review-card__client strong {
  color: #ffffff;
}

.review-card__client span {
  color: #748095;
  font-size: 0.82rem;
  font-weight: 600;
}

.review-card.featured .review-card__client span {
  color: #9feaff;
}

.testimonial-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.testimonial-slider__dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c7d3df;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-slider__dot.is-active {
  width: 31px;
  background: #eab646;
}

.testimonial-slider__controls {
  display: flex;
  gap: 10px;
}

.testimonial-slider__button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  border: 1px solid #002b63;
  border-radius: 50%;
  background: #002b63;
  font-size: 1.05rem;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.testimonial-slider__button:hover {
  color: #001032;
  border-color: #eab646;
  background: #eab646;
  transform: translateY(-2px);
}

.testimonial-slider__button:focus-visible,
.testimonial-slider__dot:focus-visible {
  outline: 3px solid rgba(0, 160, 198, 0.35);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 78px 0;
  }

  .testimonial-slide {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2);
  }
}

@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 64px 0;
  }

  .testimonial-slider {
    --testimonial-gap: 18px;
  }

  .testimonial-slide {
    flex-basis: 100%;
  }

  .review-card {
    min-height: 310px;
    padding: 28px;
    border-radius: 18px;
  }

  .testimonial-slider__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-slider__controls {
    align-self: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slider__track,
  .testimonial-slider__button,
  .testimonial-slider__dot {
    transition: none;
  }
}

/* Keep slider content clipped */
.testimonial-slider__viewport {
  overflow: hidden;
  padding: 12px 12px 36px;
  background: transparent;
}

/* Use a smaller shadow */
.review-card {
  box-shadow: 0 8px 18px rgba(0, 43, 99, 0.06);
}

/* Smaller shadow for featured card */
.review-card.featured {
  box-shadow: 0 10px 22px rgba(0, 43, 99, 0.12);
}
/*nav issue css*/
.site-navbar .nav-link.dropdown-toggle::after {
  display: none !important;
  content: none !important;
}