body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #6b6fde;
}

section {
  margin: 0px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
  background: rgb(243, 242, 245);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* ===== NAVBAR BASE ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(11, 61, 145, 0.9);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  padding-left: 0px;
  padding-right: 0px;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  background: #0b3d91;
}

/* CONTAINER */
.nav-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  /* gives breathing space */
}

/* RIGHT SIDE GROUP */
/* ===== RIGHT SIDE GROUP ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LINKS */
.nav-links a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

/* LOGO TEXT */
.logo span {
  font-size: 18px;
  font-weight: 600;
  margin-left: 5px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: larger;
}

.logo img {
  width: 30px;
}

/* UNDERLINE FIX */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff7a00;
  left: 0;
  /* FIXED */
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
  display: block;
  padding: 12px 15px;
  color: #333;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #0b3d91;
}

/* ===== BUTTON ===== */
.nav-btn {
  background: #ff7a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
}


/* ===== MOBILE MENU ICON ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .nav-right {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 10;
    width: 260px;
    background: #0b3d91;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
  }

  /* DROPDOWN FIX FOR MOBILE */
  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
  }

  .dropdown-menu a {
    color: #fff;
    padding-left: 10px;
  }

  /* SHOW MENU ICON */
  .menu-toggle {
    display: block;
  }

  /* HIDE BUTTON */
  .nav-btn {
    display: none;
  }
}


/* Hero Section start */
.hero-banner {
  position: relative;
  width: 100%;
  height: 355px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 355px;
  object-fit: cover;
}

/* Overlay content */
.hero-overlay {
  position: absolute;
  top: 35%;
  left: 8%;
  transform: translateY(-15%);
  max-width: 750px;
  color: #002b5b;
  animation: fadeIn 1.2s ease-in-out;
}

/* Heading */
.hero-overlay h1 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.3;
  /* font-size: x-large; */
  font-weight: 700;
  margin-bottom: 5px;
  color: whitesmoke;
}

/* Paragraph */
.hero-overlay p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f9f6f6;
}

/* Buttons */
.hero-buttons .btn {
  padding: 12px 25px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}

.primary {
  background: #0056d2;
  color: white;
}

.secondary {
  background: #ff7a00;
  color: White
}

.btn:hover {
  transform: scale(1.05);
}

/* Audio video section  */
.hero-bannerav {
  position: relative;
  width: 100%;
  height: 355px;
  overflow: hidden;
}

.hero-bannerav video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlayav {
  position: absolute;
  top: 35%;
  left: 8%;
  transform: translateY(-15%);
  max-width: 750px;
  color: white;
}

.hero-overlayav h1 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.3;
  /* font-size: x-large; */
  font-weight: 700;
  margin-bottom: 5px;
  color: whitesmoke;
}

/* Paragraph */
.hero-overlayav p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f9f6f6;
}

/* Buttons */
.hero-buttonsav .btn {
  padding: 12px 25px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}

.primaryav {
  background: #0056d2;
  color: white;
}

.secondaryav {
  background: #ff7a00;
  color: White
}

.btn:hoverav {
  transform: scale(1.05);
}


/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }

  .hero-image {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    max-width: 400px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

  .hero {
    padding: 70px 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
  }
}

/* Splash card and other utility */
#services {
  padding: 0px 80px;
  background: #f8fbff;
}

/* Section Title */
#services .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #003366;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Grid Layout */
#services .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card Design */
#services .card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Card Hover Effect */
#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image */
#services .card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* Title */
#services .card h3 {
  font-size: 18px;
  margin: 15px 0 10px;
  color: #003366;
}

/* Description */
#services .card p {
  font-size: 14px;
  padding: 0 15px 20px;
  color: #555;
}

/* Hover Color Accent */
#services .card:hover h3 {
  color: orange;
}

@media (max-width: 992px) {
  #services .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #services {
    padding: 40px 20px;
  }

  #services .cards {
    grid-template-columns: 1fr;
  }
}

.why {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.why img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Overlay content */
.why-overlay {
  position: absolute;
  top: 15%;
  left: 8%;
  transform: translateY(-15%);
  max-width: 750px;
  color: #002b5b;
  animation: fadeIn 1.2s ease-in-out;
}

/* Heading */
.why-overlay h2 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.3;
  /* font-size: x-large; */
  font-weight: 700;
  margin-bottom: 5px;
  color: whitesmoke;
}

/* Paragraph */
.why-overlay ul {
  margin-left: 30px;
  font-size: 20px;
  margin-bottom: 20px;
  color: #f9f6f6;
  line-height: 2;
}

.av {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.av img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Overlay content */
.av-overlay {
  position: absolute;
  top: 15%;
  left: 8%;
  transform: translateY(-15%);
  max-width: 780px;
  color: #002b5b;
  animation: fadeIn 1.2s ease-in-out;
}

/* Heading */
/* .av-overlay h2 { */

.av-overlay h2 {
  background-image: linear-gradient(to right, #ffffff, #000000, #ffffff);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 5px;
}

/* Paragraph */

.av-overlay ul {
  background-color: blue;
  color: white;
  margin-left: 30px;
  font-size: 25px;
  font-weight: 700px;
  margin-bottom: 20px;
  line-height: 2;
}

@media (max-width: 992px) {
  .why-choose {
    flex-direction: column;
    text-align: center;
  }

  .why-right {
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .why-choose {
    padding: 40px 20px;
  }

  .why-left h2 {
    font-size: 22px;
  }

  .why-left ul li {
    font-size: 14px;
  }
}

/* SECTION */
.reviews {
  text-align: center;
  padding: 10px 20px;
  background: #f8fafc;
}

/* TITLE */
.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

/* FLEX BOX */
.review-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* important for equal height */
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.review-card {
  background: #ffffff;
  padding: 10px;
  border-radius: 20px;
  width: 250px;

  /* HEIGHT CONTROL */
  min-height: 80px;

  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* HOVER */
.review-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.review-card img {
  height: 50px;
  margin-bottom: 20px;
}

/* TEXT */
.review-card p {
  padding-left: 20px;
  font-weight: 700;
  font-size: (24px, 5px, 30px);
}


.cta {
  text-align: center;
  padding: 50px;
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 10px 10px;
  background: #f5f7fb;
}

.stats h2 {
  text-align: center;
  margin-bottom: 30px;
  color: white;
  font-size: 28px;
}

/* GRID LAYOUT */
.stats-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}


/* ===== STATS CARDS ===== */
.stats-box>div {
  background: #0b3d91;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.stats-box>div:hover {
  transform: translateY(-5px);
  background: #1c5ed6;
}

.stats-box h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.stats-box p {
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-box {
    grid-template-columns: 1fr;
  }

  .stats h2 {
    text-align: center;
  }
}

.cta {
  background: linear-gradient(135deg, #0b3d91, #1c5ed6);
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  margin: 0px;
}

/* CTA TEXT */
.cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #dcdcdc;
}

/* CTA BUTTON */
.cta-btn {
  background: #ff7a00;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.cta-btn:hover {
  background: #e66900;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 22px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta {
    padding: 40px 15px;
    margin: 20px;
  }
}

/* STATS */
.stats {
  background: #0f172a;
  color: white;
  padding: 10px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

/* FOOTER */
/* FOOTER MAIN */
footer {
  background: #0b3d91;
  color: #fff;
  /* padding: 20px 40px; */
  padding-top: 20px;
  padding-bottom: 0px;
  padding-left: 60px;
  padding-right: 60px;
}

/* GRID FIX */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LOGO ALIGN */
.logofooter-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logofooter-box img {
  width: 45px;
}

.logofooter-box h3 {
  margin: 0;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 15px;
}

/* REMOVE LINE BREAK ISSUE */


/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #dcdcdc;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #ff7a00;
}

/* SOCIAL */
.social-icons span {
  margin-right: 12px;
  cursor: pointer;
}

.social-icons span:hover {
  color: #ff7a00;
}

/* CONTACT LINKS */
.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ff7a00;
}

/* RESPONSIVE FIX */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-box {
    justify-content: center;
  }
}

/* HERO */
.about-hero {
  position: relative;
  height: 300px;
  background: linear-gradient(to right, #0f172a, #1e3a8a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ===== ABOUT ZIG-ZAG ===== */

.about {
  padding: 60px 0;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

/* REVERSE ROW */
.about-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.about-text {
  flex: 1;
  color: #ffffff;
}

.about-text h2 {
  color: #ffff8a;
  margin-bottom: 15px;
}

.about-text p {
  padding-left: 10px;
  padding-right: 10px;
  color: #ffffff;
  text-align: justify;
  line-height: 1.8;
  font-size: 16px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* CONTACT */
.about-contact {
  background: linear-gradient(to right, #1e3a8a, #0f172a);
  color: white;
  text-align: center;
  padding: 50px;
}


/* MOBILE */
@media(max-width:768px) {

  .about-row,
  .about-row.reverse {
    flex-direction: column;
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .about-grid {
    flex-direction: column;
  }
}

.footer-bottom {
  text-align: center;
  padding: 15px 25px;
  background: #072a63;
  color: #ccc;
  font-size: 14px;
  /* margin-top: 20px; */
  padding-left: 0px;
  padding-right: 0px;
}

.footer-bottom p {
  margin: 0;
}