:root {
  --navy: #0f2746;
  --navy-2: #132f58;
  --navy-3: #183461;
  --blue: #2c6fff;
  --muted: #8ea3b7;
  --light: #f5f7fb;
  --card: #ffffff;
  --pill: #e9eef7;
  --shadow: 0 8px 30px rgba(16, 39, 77, 0.1);
  --radius: 1rem;
  --divider: #e6eaf3;
}
html,
body {
  font-family: "Lato";
  color: #1b2330;
  background: #fff;
  margin: 0;
  padding: 0;
}
/* Navbar */
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #ffffff;
  color: #ffffff;
}

/* Navbar */
.navbar {
  background-color: #0c2d4c;
  height: 12vh;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav {
  gap: 5rem !important;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-text {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Navigation Links */
.nav-links ul {
  display: flex;
  gap: 6rem;
  list-style: none;
}

.nav-item ul li {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #00bcd4;
}
/* Toggle Button (hidden by default) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile Nav Hidden by Default */
.nav-links {
  display: flex;
}

/* Demo Button */
.demo-btn {
  padding: 10px 40px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.demo-btn:hover {
  background-color: #ffffff;
  color: #0c2d4c;
}

/* Hero Section */
/* Hero Section */
.hero {
  display: flex;
  width: 100%;
  height: auto;
}

/* Left side - solid background */
.hero-left {
  background-color: rgb(81, 97, 122);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  width: 45%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.hero-text .description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #cccccc;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn {
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background-color: #ffffff;
  color: #0c2d4c;
}

.btn.primary:hover {
  background-color: #0c2d4c;
  color: #ffffff;
}

.btn.secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background-color: #ffffff;
  color: #0c2d4c;
}

/* Right side - background image */
.hero-right {
  flex: 1;
  background: url("./assests/main.png") center center/cover no-repeat;
  position: relative;
}

/* Blurred overlay for right side */
.hero-right .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px);
  background: rgba(10, 40, 69, 0.619); /* subtle overlay */
}

/* About Section */
.about {
  width: 100%;
  background: #fff;
}

.about-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.about-col {
  padding: 0 20px;
  border-right: 1px solid #dee2e6;
}

.about-col.last-col {
  border-right: none;
}

.about-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
}

.about-icon img {
  width: 40px;
  height: 40px;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8rem;
  color: rgba(72, 72, 72, 1);
  margin: 0 auto;
  max-width: 90%;
}

/* Circle background colors */
.icon-red {
  background: rgba(255, 120, 120, 0.51);
}
.icon-blue {
  background: rgba(1, 163, 246, 0.17);
}
.icon-green {
  background: rgba(0, 186, 62, 0.24);
}

#about h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Why Us */
.why {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  background-color: #1c3c72;
}
.why-box {
  background: rgba(
    255,
    255,
    255,
    0.16
  ) !important; /* dark blue (adjust if needed) */
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.why-box h5 {
  font-weight: 700;
  font-size: 1.2rem;
}
.why-box ul li {
  font-weight: 600; /* bold text */
  margin-bottom: 10px;
}
.why-box ul li i {
  color: #fff; /* white checkmark */
  font-weight: 900;
}

/* Global */
/* Section Titles */
.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0c2d4c;
}

/* --- Testimonials Section --- */
.wrapper .card {
  background: rgba(63, 80, 172, 0.08); /* soft purple background */
  border-radius: 20px;
  padding: 20px;
  min-height: 220px; /* taller for consistency */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps text at top and profile at bottom */
  margin-bottom: 4rem;
  background-color: rgba(21, 25, 182, 0.15); /* subtle overlay */
}

/* NEW: make content fill space */
.wrapper .card-content {
  flex: 1; /* take full height */
  display: flex;
  flex-direction: column;
}

/* --- Card Text --- */
.wrapper .card .card-text {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.5rem;
  margin-bottom: auto; /* pushes profile down */
}

/* --- Profile Area --- */
.wrapper .card-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto; /* stick to bottom */
}

.user-icon {
  background-color: #2c6fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden; /* keeps images round */
  color: #fff;
  font-size: 1.2rem;
}

/* If <img> inside .user-icon */
.user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper .card-profile-info {
  font-size: 0.9rem;
  font-weight: 600;
  color: #202020;
}

/* --- Swiper Pagination Dots --- */
.wrapper .swiper-pagination-bullet {
  background: #c5c7f9;
  width: 12px;
  height: 12px;
  opacity: 1;
}
.wrapper .swiper-pagination-bullet-active {
  background: #3f50ac;
}

/* --- Swiper Navigation Buttons --- */
.wrapper :where(.swiper-button-prev, .swiper-button-next) {
  background: #3f50ac; /* blue circle */
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  top: 70%;
  transform: translateY(-50%);
}

.wrapper :where(.swiper-button-prev, .swiper-button-next)::after {
  font-size: 18px;
  font-weight: bold;
}

.wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
  background: #2f3d85;
}

.swiper-button-next {
  right: 15px;
}
.swiper-button-prev {
  left: 15px;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .wrapper :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
}

/* ===== Partners Section ===== */
#partners {
  background: #fff;
  text-align: center;
  padding: 70px 20px;
}

#partners h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

#partners p.lead {
  max-width: 750px;
  margin: 0 auto 25px;
  font-size: 1rem;
  color: #5f7089;
  line-height: 1.7;
}

#partners .btn {
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
}

#partners .btn-dark {
  background-color: #0c2d4c;
  border: none;
}

#partners .btn-outline-secondary {
  border: 2px solid #0c2d4c;
  color: #0c2d4c;
}

#partners .btn-outline-secondary:hover {
  background-color: #0c2d4c;
  color: #fff;
}

/* ===== Footer Section (Closer to Figma) ===== */
.site-footer {
  background: #393939;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
}

.footer-links {
  gap: 2rem; /* <-- This creates space between li elements */
  flex-wrap: wrap;
}

.footer-links li {
  color: white;
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  align-items: center;
}

.footer-icon {
  width: 20px;
  height: 20px;
}

/* Hover effects */
.footer-links li span:hover {
  text-decoration: underline;
  cursor: pointer;
}

.footer-links li img {
  transition: transform 0.3s ease;
}

.footer-links li:hover img {
  transform: scale(1.1);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .footer-logos {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem; /* vertical gap on small screens */
    text-align: center;
  }

  .footer-links li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo-img {
    max-height: 40px;
  }

  .footer-links li {
    font-size: 0.85rem;
  }

  .footer-icon {
    width: 18px;
    height: 18px;
  }
}
.user-icon {
  background-color: #2c6fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
