.footer-simple {
  font-family: "Montserrat", sans-serif;
}

.footer-main-row {
  row-gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  display: block;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer-list {
  margin: 0;
  padding: 0;
}

.footer-list li,
.footer-text {
  color: #d6d6d6;
  line-height: 1.7;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.footer-social i {
  font-size: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-icon {
  line-height: 1.7;
  flex: 0 0 auto;
}

.footer-copyright {
  color: #d0d0d0;
}

.footer-link:hover {
  color: #ffffff;
}

/* Tablet alignment */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-brand-column {
    display: flex;
    justify-content: center;
  }

  .footer-brand {
    max-width: 260px;
  }
}

/* Mobile alignment */
@media (max-width: 768px) {
  .footer-simple {
    text-align: center;
  }

  .footer-column,
  .footer-brand {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-list li {
    justify-content: center;
  }

  .footer-title {
    margin-bottom: 12px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

.top-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-inner i {
  margin-right: 6px;
}

.top-right a {
  color: #000;
  font-size: 18px;
  margin-left: 12px;
}

/* =========================
   MAIN HEADER
========================= */
.main-header {
  max-width: 1280px;
  margin: auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  /* REQUIRED for overlay menu */
}

/* =========================
   NAVIGATION (DESKTOP)
========================= */
.main-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  /* 2 rows */
  gap: 30px;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  /* color: #fff; */
  white-space: nowrap;
}

.nav-link.active {
  font-weight: 700;
  /* border-bottom: 2px solid orange; */
  text-decoration: underline orange;
}

/* =========================
   LOGO
========================= */
.logo-container img {
  height: 90px;
}

/* =========================
   MOBILE MENU BUTTON
========================= */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {
  /* Top bar stacked */
  .top-inner {
    display: none;
  }

  /* Header layout */
  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo LEFT on mobile */
  .logo-container {
    order: 1;
    align-self: flex-start;
  }

  /* Hamburger RIGHT */
  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  /* NAV OVERLAY */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 25px 20px;
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* animation */
    transform: translateY(-10px);
    opacity: 0;
  }

  .main-nav.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
}

body a {
  text-decoration: none;
}
/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #222;
  line-height: 1.5;
}

/* ---------- LAYOUT WRAPPER ---------- */
#page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #0f5c6e, #0f5c6e);
  /* padding: 20px 40px; */
  color: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 15px 30px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.logo img {
  height: 70px;
}

/* -------- Hero Carousel -------- */
.hero-carousel {
  width: 100vw; /* 👈 FORCE full viewport width */
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  width: 100%;
  height: 100vh;
}

/* Slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* black overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-content h2 {
  font-size: 18px;
  letter-spacing: 0.2em;
  margin-top: 10px;
}

/* -------- Mobile -------- */
@media (max-width: 768px) {
  .nav-link {
    color: #000 !important;
  }

  .hero-carousel {
    width: 100vw; /* 👈 critical */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .hero-carousel,
  .hero-carousel .carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 40vh;
  }

  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content h2 {
    font-size: 12px;
    letter-spacing: 0.15em;
  }

  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #0f5c6e, #0f5c6e);
    /* padding: 20px 40px; */
    color: #fff;
  }
}

/* ---------- SECTION ---------- */
section {
  padding: 50px 8%;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ---------- TWO COLUMN ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---------- FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.features img {
  height: 80px;
  margin-bottom: 15px;
}

/* ---------- PARALLAX ---------- */
.parallax {
  position: relative;
  height: 450px;
  background: url("../images/parallax.jpg") center / cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Black overlay */
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* adjust opacity here */
  z-index: 1;
}

/* Content above overlay */
.parallax > * {
  position: relative;
  z-index: 2;
}

.parallax h2 {
  font-size: 40px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* ---------- VIDEO ---------- */
.full-video {
  position: relative;
  width: 100%;
  height: 600px;
  /* adjust if needed */
  overflow: hidden;
}

/* video */
.full-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* black overlay */
.full-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  /* overlay strength */
  z-index: 1;
  pointer-events: none;
}

/* ---------- CTA ---------- */
.cta {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.1);
  max-width: 900px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 204, 0.1);
}

/* Progress line */
.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(
    to right,
    #eb8023 0%,
    #eb8023 33%,
    #0073ab 33%,
    #0073ab 66%,
    #eb8023 66%,
    #eb8023 100%
  );
  border-radius: 2px;
  z-index: 1;
  transform: translateY(-50%);
}

/* Header styling */
.cta h2 {
  text-align: center;
  color: #1e3a8a;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

/* Link container */
.cta > div {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Individual link items */
.cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  width: 30%;
  transition: transform 0.3s ease;
}

/* Progress circles */
.cta a::before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 4px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #4b5563;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 2;
}

/* Individual circle content */
.cta a:nth-child(1)::before {
  content: "1";
  border-color: #10b981;
  color: #10b981;
}

.cta a:nth-child(2)::before {
  content: "2";
  border-color: #3b82f6;
  color: #3b82f6;
}

.cta a:nth-child(3)::before {
  content: "3";
  border-color: #10b981;
  color: #10b981;
}

/* Link text styling */
.cta a span {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  color: #1f2937;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  width: 100%;
  transition: all 0.3s ease;
}

/* Hover effects */
.cta a:hover {
  transform: translateY(-5px);
}

.cta a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.cta a:nth-child(1):hover span {
  background-color: #eb8023;
  color: white;
  border-color: #eb8023;
}

.cta a:nth-child(2):hover span {
  background-color: #0073ab;
  color: white;
  border-color: #0073ab;
}

.cta a:nth-child(3):hover span {
  background-color: #eb8023;
  color: white;
  border-color: #eb8023;
}

/* Responsive design */
@media (max-width: 768px) {
  .cta {
    padding: 2rem 1rem;
  }

  .cta h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .cta > div {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .cta a {
    width: 100%;
    max-width: 300px;
  }

  .cta::before {
    top: 25%;
    left: 50%;
    width: 4px;
    height: 80%;
    transform: translateX(-50%);
    background: linear-gradient(
      to bottom,
      #10b981 0%,
      #10b981 33%,
      #3b82f6 33%,
      #3b82f6 66%,
      #8b5cf6 66%,
      #8b5cf6 100%
    );
  }
}

/* Animation for progress */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.cta a:nth-child(1)::before {
  animation: pulse 2s infinite;
}

/* ---------- FOOTER ---------- */
footer {
  background: #2e2e2e;
  color: #ddd;
  padding: 60px 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}

footer h4 {
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: right;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== PUBLICATION SECTION ===== */
.publication-section {
  padding: 50px 8%;
  background: #ccc;
}

.pub-container {
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: left;
  color: #3a3a3a;
}

/* Grid */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.pub-card {
  background: #f4f4f4;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.pub-card:hover {
  transform: translateY(-5px);
}

/* Image */
.pub-card img {
  width: 100%;
  max-width: 220px;
  margin: auto;
  display: block;
  margin-bottom: 25px;
}

/* Title */
.pub-title {
  font-size: 17px;
  line-height: 1.7;
  text-decoration: none;
  margin-bottom: 25px;
  color: #111;
}

/* Button */
.pub-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #243f63;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.pub-btn:hover {
  background: #1a2f4a;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pub-grid {
    grid-template-columns: 1fr;
  }

  .pub-card img {
    max-width: 180px;
  }
}

.nav-link:focus,
.nav-link:hover {
  color: #ccc;
  text-decoration: underline orange;
}
.parallax-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 30px;
  background-color: #0073ab;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover */
.parallax-cta:hover {
  background-color: #243f63;
  /* Blue */
  color: #fff;
}

.parallax-cta1 {
  margin-right: 20px;
  display: inline-block;
  margin-top: 28px;
  padding: 10px 30px;
  background-color: #dd7e27;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover */
.parallax-cta1:hover {
  background-color: #0056ff;
  /* Blue */
  color: #fff;
}
.parallax-cta2 {
  margin-right: 20px;
  display: inline-block;
  margin-top: 28px;
  padding: 10px 30px;
  background-color: #0073ab;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover */
.parallax-cta2:hover {
  background-color: #0056ff;
  /* Blue */
  color: #fff;
}

.mission-section {
  background: #f7f3f3;
}

@media (min-width: 786px) {
  .top-inner-1 {
    display: none;
  }
}
.text-white {
  color: white !important;
}

/* -------- REFERENCE STYLE -------- */
.about-hero {
  background: linear-gradient(120deg, #0b1f33, #123d63);
  color: #fff;
  padding: 140px 20px 120px;
  text-align: center;
}
.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
}
.about-hero p {
  font-size: 20px;
  max-width: 850px;
  margin: 20px auto 0;
  opacity: 0.95;
}

.stats-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
.stat-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0b1f33;
}
.stat-box p {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}

.about-dark {
  background: #0b1f33;
  color: #fff;
  padding: 100px 0;
}
.about-dark h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-dark p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

.about-light {
  padding: 50px 0;
}
.about-light h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0b1f33;
}
.about-light p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.cta-bar {
  background: linear-gradient(120deg, #0b1f33, #145a8d);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.cta-bar h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta-bar a {
  display: inline-block;
  background: #ff2f92;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.cta-bar a:hover {
  background: #ff5cab;
}

/* ---------- PAGE STYLING ---------- */

.app-hero {
  background: linear-gradient(120deg, #0b1f33, #123d63);
  color: #fff;
  padding: 140px 20px 120px;
  text-align: center;
}
.app-hero h1 {
  font-size: 48px;
  font-weight: 700;
}
.app-hero p {
  font-size: 20px;
  max-width: 850px;
  margin: 20px auto 0;
  opacity: 0.95;
}

.app-section {
  padding: 20px 0;
}

.app-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.app-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b1f33;
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px;
}

.btn-submit {
  background: #ff2f92;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #ff5cab;
}

.note-box {
  background: #f8f9fa;
  border-left: 5px solid #0b1f33;
  padding: 20px;
  border-radius: 8px;
  font-size: 15px;
}

/* ---------- PAGE STYLING ---------- */

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.contact-section {
  padding: 40px 0;
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b1f33;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 12px;
  color: #444;
}

.contact-info i {
  color: #0b1f33;
  margin-right: 10px;
}

.form-control {
  border-radius: 8px;
  padding: 12px;
}

.btn-submit {
  background: #ff2f92;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #ff5cab;
}

/* ---------- PAGE STYLING ---------- */
.media-hero {
  background: linear-gradient(120deg, #0b1f33, #123d63);
  color: #fff;
  padding: 140px 20px 120px;
  text-align: center;
}
.media-hero h1 {
  font-size: 48px;
  font-weight: 700;
}
.media-hero p {
  font-size: 20px;
  max-width: 850px;
  margin: 20px auto 0;
  opacity: 0.95;
}

.media-section {
  padding: 50px 0;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.media-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover img {
  transform: scale(1.08);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-size: 15px;
}

.media-card:hover .media-overlay {
  opacity: 1;
}

.cta-bar {
  background: linear-gradient(120deg, #0b1f33, #145a8d);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.cta-bar h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta-bar a {
  display: inline-block;
  background: #ff2f92;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.cta-bar a:hover {
  background: #ff5cab;
}

/* ---------- PAGE STYLING ---------- */
.res-hero {
  background-image:
    linear-gradient(120deg, rgba(11, 31, 51, 0.85), rgba(18, 61, 99, 0.85)),
    url("../images/new-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  padding: 140px 20px 120px;
  text-align: center;
}

.res-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.res-hero p {
  font-size: 20px;
  max-width: 850px;
  margin: 20px auto 0;
  opacity: 0.95;
}

/* Mobile refinement */
@media (max-width: 750px) {
  .res-hero {
    padding: 110px 16px 90px;
  }

  .res-hero h1 {
    font-size: 34px;
  }

  .res-hero p {
    font-size: 17px;
  }
}

.res-section {
  padding: 50px 0;
}
.res-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b1f33;
  margin-bottom: 25px;
}
.res-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.guide-section{
  background-color: #f1efef;
}

.guide-section .res-card:hover{
  transform: translateY(-12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.res-dark {
  background: #0b1f33;
  color: #fff;
}
.res-dark h2 {
  color: #fff;
}
.res-dark p {
  color: rgba(255, 255, 255, 0.95);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-box h3 {
  font-size: 46px;
  font-weight: 700;
  color: #0b1f33;
}
.stat-box p {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}

.res-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.res-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1f33;
}
.res-card small {
  color: #777;
}

.cta-bar {
  background: linear-gradient(120deg, #0b1f33, #145a8d);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.cta-bar h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta-bar a {
  display: inline-block;
  background: #ff2f92;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.cta-bar a:hover {
  background: #ff5cab;
}


.res-section {
  padding: 50px 0;
}
.res-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b1f33;
  margin-bottom: 25px;
}
.res-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.res-dark {
  background: #0b1f33;
  color: #fff;
}
.res-dark h2 {
  color: #fff;
}
.res-dark p {
  color: rgba(255, 255, 255, 0.95);
}

.res-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.res-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1f33;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-item h6 {
  font-weight: 600;
  color: #0b1f33;
}

.cta-bar {
  background: linear-gradient(120deg, #0b1f33, #145a8d);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.cta-bar h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta-bar a {
  display: inline-block;
  background: #ff2f92;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.cta-bar a:hover {
  background: orange;
}

/* ---------- PAGE STYLING ---------- */

.treat-hero {
  background-image:
    linear-gradient(120deg, rgba(11, 31, 51, 0.85), rgba(18, 61, 99, 0.85)),
    url("../images/new-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  padding: 140px 20px 120px;
  text-align: center;
}

@media (max-width: 750px) {
  .treat-hero {
    background-image:
      linear-gradient(120deg, rgba(11, 31, 51, 0.85), rgba(18, 61, 99, 0.85)),
      url("../images/new-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    padding: 140px 20px 120px;
    text-align: center;
  }
}

.treat-hero h1 {
  font-size: 48px;
  font-weight: 700;
}
.treat-hero p {
  font-size: 20px;
  max-width: 850px;
  margin: 20px auto 0;
  opacity: 0.95;
}

.treat-section {
  padding: 50px 0;
}
.treat-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b1f33;
  margin-bottom: 25px;
}
.treat-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.treat-dark {
  background: #0b1f33;
  color: #fff;
}
.treat-dark h2 {
  color: #fff;
}
.treat-dark p {
  color: rgba(255, 255, 255, 0.95);
}

.treat-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.treat-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1f33;
}

.cta-bar {
  background: #fff;
  color: #000;
  padding: 40px 20px;
  text-align: center;
}
.cta-bar h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta-bar a {
  display: inline-block;
  background: orange;
  color: #fff;
  padding: 7px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.cta-bar a:hover {
  background: rgb(240, 180, 91)6ff;
}
.fa-18 {
  font-size: 18px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-14 {
  font-size: 14px !important;
}
.sidebar-wrapper {
  position: static;
  margin-right: 0;
  margin-bottom: 30px;
}
.sidebar-wrapper {
  position: sticky !important;
  top: 200px;
  margin-right: 20px;
}
.sidebar-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.mt-25 {
  margin-top: 25px;
}

/* Left Info Section */
.app-info h2 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.app-info .lead {
  color: #475569;
  font-size: 16px;
  margin-bottom: 20px;
}

.app-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.app-points li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
}

/* Contact Box */
.contact-box {
  background: #fff5f5;
  border-left: 4px solid #ae1010;
  padding: 14px 16px;
  border-radius: 8px;
}

/* Ensure balanced spacing */
.app-section .row {
  row-gap: 30px;
}

@media (max-width: 776px) {
  .nav-link {
    color: #000;
  }
}

.services-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.section-title {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #3498db;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.services-subtitle {
  color: #7f8c8d;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.services-description {
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #3498db;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
}
.service-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  overflow: hidden;
}

.service-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-subtitle {
  color: #3498db;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1rem;
}

.service-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.service-link:hover {
  color: #2980b9;
  transform: translateX(5px);
}

.btn-primary {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-outline-primary {
  border-color: #3498db;
  color: #3498db;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: #3498db;
  color: white;
  transform: translateY(-3px);
}

/* Font Awesome spine icon fallback */
.fa-spine:before {
  content: "\f5dc";
  /* Using fa-spine or similar */
}

/* Expertise Section */
.expertise-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(52, 152, 219, 0.05);
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.expertise-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: rgba(44, 62, 80, 0.05);
  border-radius: 50%;
  transform: translate(-100px, 100px);
}

.section-header {
  position: relative;
  z-index: 2;
}

.expertise-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.expertise-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #3498db;
  bottom: -15px;
  left: 0;
  border-radius: 2px;
}

.expertise-subtitle {
  color: #7f8c8d;
  font-size: 1.2rem;
  margin-top: 25px;
}

/* Benefits Card */
.benefits-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.benefit-content {
  flex: 1;
}

.benefit-heading {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.benefit-text {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Specialist Container */
.specialist-container {
  position: relative;
  z-index: 2;
}

.specialist-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #0f5c6e;
}

.specialist-header {
  margin-bottom: 25px;
}

.specialist-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.specialist-subtitle {
  color: #7f8c8d;
  font-size: 1rem;
  margin: 0;
}

/* Warning List */
.warning-list {
  background: #eefcff;
  border-radius: 12px;
  padding: 20px;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.warning-item:last-child {
  margin-bottom: 0;
}

.warning-icon {
  width: 50px;
  height: 50px;
  background: #ffeaea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74c3c;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 15px;
}

.warning-content {
  flex: 1;
}

.warning-heading {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.warning-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Consultation Promo */
.consultation-promo {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-radius: 16px;
  padding: 30px;
  color: white;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.promo-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  margin-right: 20px;
}

.promo-content {
  flex: 1;
}

.promo-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.promo-text {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.consultation-btn {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #3498db;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.consultation-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .expertise-title {
    font-size: 2rem;
  }

  .benefit-icon,
  .promo-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .consultation-promo {
    flex-direction: column;
    text-align: center;
  }

  .promo-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .expertise-title {
    font-size: 1.8rem;
  }

  .benefit-item,
  .warning-item {
    flex-direction: column;
  }

  .benefit-icon,
  .warning-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .benefits-card,
  .specialist-card,
  .consultation-promo {
    padding: 20px;
  }
}

.counter {
  font-weight: 600;
  font-size: 42px;
}

.blogs-section {
  padding: 50px 0;
  background: #f8fafc;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f3c88;
}

/* Grid */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* Content */
.blog-content {
  padding: 24px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.blog-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}


.media-hero {
  background-image:
    linear-gradient(120deg, rgba(11, 31, 51, 0.85), rgba(18, 61, 99, 0.85)),
    url("../images/new-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  padding: 140px 20px 120px;
  text-align: center;
}

.media-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.media-hero p {
  font-size: 20px;
  max-width: 850px;
  margin: 20px auto 0;
  opacity: 0.95;
}

/* Mobile refinement */
@media (max-width: 750px) {
  .media-hero {
    padding: 110px 16px 90px;
  }

  .media-hero h1 {
    font-size: 34px;
  }

  .media-hero p {
    font-size: 17px;
  }
}


.app-hero {
  background-image:
    linear-gradient(120deg, rgba(11, 31, 51, 0.85), rgba(18, 61, 99, 0.85)),
    url("../images/new-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  padding: 140px 20px 120px;
  text-align: center;
}

.app-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.app-hero p {
  font-size: 20px;
  max-width: 850px;
  margin: 20px auto 0;
  opacity: 0.95;
}

/* Mobile refinement */
@media (max-width: 750px) {
  .app-hero {
    padding: 110px 16px 90px;
  }

  .app-hero h1 {
    font-size: 34px;
  }

  .app-hero p {
    font-size: 17px;
  }
}

label{
  color: #0f5c6e;
}

.hub-icon-box{
  padding-top: 30px;
  height: 80px;
  width: 80px;
  margin-bottom: 40px;
}

.hub-icon-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}
