/* General Reset */
@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");

/* font-family: "Questrial", sans-serif; */

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

body {
  font-family: "Questrial", sans-serif;
  line-height: 1.6;
  background: #e8e3d9;
  color: #333;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Scroll Effect */
.navbar.scrolled {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* ================= LOGO ================= */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mobile-login {
  display: none;
}
.logo img {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Animated underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #2f6fed;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #2f6fed;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================= LOGIN BUTTON ================= */
.login-btn {
  background: #2f6fed;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #1d4fd8;
  transform: translateY(-2px);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .navbar {
    padding: 18px 30px;
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    flex-direction: column;
    gap: 30px;
    padding: 120px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .desktop-login {
    display: none;
  }
}
/* 


/* 

*/

/* Index hero section */
.heroindex {
  padding: 80px 60px;
  height: 600px;
  text-align: center;
  background-color: transparent;
  background-image: linear-gradient(160deg, #171717 0%, #0d3a70 55%, #0254a5 100%);
  background-size: 200% 200%;
  animation: heroGradientShift 8s ease infinite;
}

/* Animated gradient background */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Shared fade-up keyframe */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button pop keyframe */
@keyframes heroBtnPop {
  0%   { opacity: 0; transform: scale(0.8) translateY(16px); }
  70%  { transform: scale(1.06) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Continuous glow pulse on button */
@keyframes heroBtnGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(40, 114, 250, 0.4), 0 4px 18px rgba(40, 114, 250, 0.25); }
  50%       { box-shadow: 0 0 24px rgba(40, 114, 250, 0.75), 0 6px 28px rgba(40, 114, 250, 0.45); }
}

.herocaption {
  color: #e1e8ed;
  font-size: 30px;
  line-height: 1.2;
  padding-bottom: 10px;
}

/* Stagger each H1 line */
.herocaption h1:nth-child(1) {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.herocaption h1:nth-child(2) {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.herotext {
  text-decoration: none;
  color: #e1e8ed;
  font-weight: 500;
  font-style: medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-wrap: balance;
  padding-bottom: 30px;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.herotgt {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s ease, box-shadow 0.3s ease;
  font-weight: 400;
  font-style: normal;
  opacity: 0;
  animation:
    heroBtnPop  0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards,
    heroBtnGlow 2.6s ease-in-out 1.4s infinite;
}

.herotgt:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(40, 114, 250, 0.55);
}

/*
 ================= 

 OVERLAY 

 ================= 
 */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= PAGE FADE EFFECT ================= */
#pageContent {
  transition: 0.3s ease;
}

#pageContent.menu-open {
  filter: blur(5px);
  opacity: 0.4;
  transform: scale(0.98);
}

/* ================= LOCK SCROLL ================= */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    flex-direction: column;
    gap: 30px;
    padding: 120px 40px;
    background: white;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }
}

/* Index services section */
.services {
  text-align: center;
  /* background-color: #fafbfc; */
  padding-top: 80px;
}

.services h2 {
  font-size: 35px;
  padding-bottom: 20px;
}

.services p {
  padding-top: 10px;
}
.value-cards {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background-color: #fafbfc;
  padding-bottom: 80px;
}

.cards {
  /* background-color: #ffffff; */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 350px;
  width: auto;
}

.cards h3 {
  font-weight: 600;
  font-style: bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 10px;
  color: #2872fa;
}

.card p {
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  align-items: center;
}

.drivers {
  height: 800px;
  background-color: #111827;
  color: #f5f5f5;
  text-align: center;
  padding-bottom: 10rem;
}

.driverstext {
  padding-top: 120px;
}

.driverstext h3 {
  padding-bottom: 20px;
  font-size: 30px;
}

.driverstext h7 {
}

.container {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: auto;
  text-align: left;
  padding-bottom: 30px;
  background-color: #111827 !important;
}

.item {
  margin-bottom: 20px;
}

.title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}

.title.orange {
  color: #ff6a00;
}

.progress-bar {
  background: #374151;
  border-radius: 6px;
  overflow: hidden;
  height: 6px;
  margin-bottom: 10px;
}

.progress {
  background: #3b82f6; /* blue fill */
  height: 100%;
  width: 0;
  transition: width 1s ease-in-out;
}

.text {
  font-size: 14px;
  color: #cbd5e1;
}

.button-container {
  text-align: center;
  margin-top: 30px;
}

button {
  background: #3b82f6;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #2563eb;
}

.steps-section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title .highlight {
  color: #007bff; /* Blue highlight */
}

/* Underline design */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin: 8px auto 0;
  position: relative;
}

.section-title::before {
  content: "•••";
  display: block;
  font-size: 16px;
  color: #007bff;
  letter-spacing: 6px;
  margin: 0 auto;
  position: relative;
  top: 35px;
}

.steps-section .subtitle {
  font-size: 15px;
  color: #666;
  margin: 40px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.step {
  display: flex;
  align-items: flex-start;
}

.circle {
  background: #007bff;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #222;
}

.step-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.button-container {
  margin-top: 40px;
}

button {
  background: #007bff;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}

.pricing-section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title .highlight {
  color: #004aad;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #004aad;
  margin: 8px auto 0;
}

.section-title::before {
  content: "•••";
  display: block;
  font-size: 16px;
  color: #004aad;
  letter-spacing: 6px;
  margin: 0 auto;
  position: relative;
  top: 35px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin: 40px 0;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pricing-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.price {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
}

.currency {
  font-size: 20px;
  vertical-align: top;
}

.duration {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

ul li {
  font-size: 14px;
  margin: 6px 0;
  color: #444;
}

.btn {
  background: #00c853;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #009624;
}

/* Featured Plan Styling */
.featured {
  background: #004aad;
  color: white;
}

.featured h3,
.featured .duration,
.featured ul li {
  color: #fff;
}

.featured .price {
  color: #fff;
}

.featured .btn {
  background: #00c853;
  color: white;
}

.featured .btn:hover {
  background: #009624;
}

.pricing-card {
  opacity: 0;
  transform: translateY(20px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

.testimonials-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title .highlight {
  color: #004aad;
}

/* Underline style */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #004aad;
  margin: 8px auto 0;
}

.section-title::before {
  content: "•••";
  display: block;
  font-size: 16px;
  color: #004aad;
  letter-spacing: 6px;
  margin: 0 auto;
  position: relative;
  top: 35px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quote {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
  font-style: italic;
}

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

.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author h4 {
  margin: 0;
  font-size: 15px;
  font-weight: bold;
}

.author span {
  font-size: 13px;
  color: #777;
}

.testimonial {
  opacity: 0;
  transform: translateY(20px);
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

.team-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.section-header .highlight {
  color: #004aad;
}

.section-header p {
  color: #555;
  margin: 5px 0 15px;
}

.underline {
  width: 60px;
  height: 3px;
  background: #004aad;
  margin: 10px auto;
  position: relative;
}

.underline::before {
  content: "•••";
  display: block;
  font-size: 14px;
  color: #004aad;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Layout */
.team-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.team-content {
  flex: 1;
  text-align: left;
}

.team-content .meet-label {
  color: #00b894;
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.team-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.team-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.read-more:hover {
  background: #003580;
}

/* Team Card */
.team-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.team-card img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.team-info {
  padding: 15px;
}

.team-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.team-info span {
  font-size: 14px;
  color: #777;
}

.management-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.section-header .highlight {
  color: #004aad;
}

.section-header p {
  color: #555;
  margin: 5px 0 15px;
}

.underline {
  width: 60px;
  height: 3px;
  background: #004aad;
  margin: 10px auto;
  position: relative;
}

.underline::before {
  content: "•••";
  display: block;
  font-size: 14px;
  color: #004aad;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100%;
  height: auto;
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.team-info span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.articles-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

/* About CSS */
.headerabout {
  background-color: #083361;
}

.heroabout {
  padding: 80px 60px;
  height: 610px;
  text-align: center;
  background-color: #083361;
  background-image: url(img/about_bg_img.png);
  background-repeat: repeat;
  background-size: auto;
}

.aboutcaption {
  color: #fff;
  margin-top: 60px;
  padding-bottom: 10px;
}

.aboutcaption h1 {
  font-size: 40px;
}
.abouttext {
  color: #fff;
  line-height: 1.6;
  font-size: 14px;
}

.represent {
  padding-top: 50px;
  text-align: center;
  background-color: #fafbfc;
  padding-bottom: 100px;
}

.represent h2 {
  padding-bottom: 20px;
}

.represent p {
  padding-bottom: 50px;
}

.mission-vision {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background-color: #fafbfc;
  padding-bottom: 80px;
  text-align: left;
}

.mv {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 20px 80px 0px rgba(40, 40, 40, 0.1);
  height: 350px;
  width: 600px;
}

.mv h3 {
  font-weight: 600;
  font-style: bold;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 10px;
  color: #111;
  padding-top: 20px;
}

.mv p {
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0%;
  align-items: center;
}

.values {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: left;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 80px 0px rgba(40, 40, 40, 0.1);
  height: 350px;
  width: 600px;
  margin: auto;
}

.values li {
  font-style: bold;
  font-weight: 700;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: #0e1217;
  background-image: url(img/about_bg_img.png);
  background-repeat: repeat;
  background-size: auto;
  text-align: center;
  height: 400px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  margin: 20px;
}

.stat-box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.stat-box p {
  font-size: 15px;
  color: #d9d9d9;
  font-weight: 500;
}

/* Optional subtle hover */
.stat-box:hover h2 {
  transform: scale(1.1);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-team-card img {
  width: 100%;
  height: auto;
}

/* Section take action */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #111;
}

/* Header */
.cta-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.ta_underline {
  width: 80px;
  height: 3px;
  background: #fff;
  margin: 10px auto;
  position: relative;
}

.ta_underline::before {
  content: "•••";
  display: block;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

/* CTA Box */
.cta-box {
  background: #fff;
  color: #111;
  max-width: 1000px;
  margin: 50px auto 0;
  border-radius: 10px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Text */
.cta-text {
  text-align: left;
  flex: 1;
}

.cta-text h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.cta-text h3 span {
  color: #004aad;
}

.cta-text p {
  font-size: 15px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

/* Button */
.btn-primary {
  display: inline-block;
  background-color: #006aff;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #004aad;
}

/* Services CSS */
.heroservices {
  padding: 80px 60px;
  height: 470px;
  text-align: center;
  background-color: #083361;
  background-image: url(img/about_bg_img.png);
  background-repeat: repeat;
  background-size: auto;
}

.services {
  padding-top: 50px;
  text-align: center;
  background-color: #fafbfc;
}

.services h2 {
  padding-bottom: 20px;
}

.services p {
  padding-bottom: 50px;
}

.our-services {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #fafbfc;
  padding-bottom: 20px;
  text-align: center;
}

.os {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 80px 0px rgba(40, 40, 40, 0.1);
  height: 300px;
  width: 400px;
  margin: auto;
}

.os h3 {
  font-weight: 600;
  font-style: bold;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0%;
  margin-bottom: 10px;
  color: #0254a5;
  padding-top: 20px;
}

.os p {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.65em;
  letter-spacing: 0%;
  align-items: center;
}

.other-services {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: left;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 80px 0px rgba(40, 40, 40, 0.1);
  height: 350px;
  width: 600px;
  margin: auto;
}

.services-list li {
  font-style: bold;
  font-weight: 700;
}

/* Footer Container */
.footer {
  background-color: #0e1217;
  padding: 40px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
  flex-wrap: wrap;
}

/* Navigation Links */
.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav li a:hover,
.footer-nav li a.active {
  color: #fff;
}

/* Social Icons */
.footer-social a {
  color: #999;
  margin-left: 20px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #007bff;
}

/* Bottom Section */
.footer-bottom {
  text-align: left;
  padding-top: 15px;
  color: #777;
  font-size: 13px;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #1e2b37;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #007bff;
}

/* Section Wrapper */
.services-section {
  padding: 80px 10%;
  text-align: center;
  background: #f9f9f9;
}

/* Header */
.services-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.services-header p {
  max-width: 750px;
  margin: 10px auto 30px;
  color: #444;
  font-size: 15px;
}

.underline {
  width: 80px;
  height: 3px;
  background: #004aad;
  margin: 15px auto;
  position: relative;
}

.underline::before {
  content: "•••";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  color: #004aad;
}

/* Services Grid */
.services-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.services-box {
  background: #fff;
  flex: 1;
  min-width: 300px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
}

/* Left Box */
.services-box.left h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-box.left p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* Right Box - Service List */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  font-weight: 600;
  font-size: 15px;
  color: #111;
  margin: 12px 0;
  position: relative;
  padding-left: 24px;
  line-height: 0.8;
}

.service-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: #00d084;
  font-size: 15px;
}

/* Hover Animation */
.service-list li:hover {
  color: #004aad;
  transition: color 0.3s ease;
}

/* Section Layout */
.partners-section {
  padding: 80px 10%;
  text-align: center;
  background: #f8f9fb;
}

/* Header */
.partners-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.partners-header p {
  font-size: 15px;
  color: #555;
  margin: 10px 0 30px;
}

/* Underline */
.underline {
  width: 80px;
  height: 3px;
  background: #004aad;
  margin: 15px auto;
  position: relative;
}

.underline::before {
  content: "•••";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  color: #004aad;
}

/* Logos */
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 40px;
}

.partners-logos img {
  height: 45px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ===== Blog Hero ===== */
.heroblog {
  padding: 80px 60px;
  text-align: center;
  background-color: #083361;
  background-image: url(img/about_bg_img.png);
  background-repeat: repeat;
  background-size: auto;
  color: #fff;
}

.heroblog h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.heroblog p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Blog Section ===== */
.blog-section {
  padding: 50px 0;
}

.blog-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Mobile-first: 1 column base */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* 2 columns at 600px */
@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns at 900px */
@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #666;
}

/* ===== Load More Button ===== */
.load-more {
  text-align: center;
  margin-top: 30px;
}

.load-more button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.load-more button:hover {
  background: #155ec4;
}

/*Contact Section*/
.herocontact {
  padding: 80px 60px;
  height: 270px;
  text-align: center;
  background-color: #083361;
  background-image: url(img/about_bg_img.png);
  background-repeat: repeat;
  background-size: auto;
}

/* CONTACT SECTION */

.contact-section {
  max-width: 100%;
  padding: 60px 8%;
  background-color: #fff;
}

.contact-section h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-subtext {
  margin: 10px 0 30px;
  font-size: 15px;
  color: #555;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  flex: 1.2;
  min-width: 300px;
}

.two-inputs {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 15px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  height: 120px;
  resize: none;
}

.send-btn {
  margin-top: 20px;
  width: 100%;
  background: #004aad;
  border: none;
  padding: 14px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.send-btn:hover {
  background: #004aad;
}

/* CONTACT INFO BOX */
.contact-info {
  flex: 0.9;
  min-width: 260px;
}

.info-block {
  margin-bottom: 25px;
}

.info-block h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 50px;
  text-align: center;
}

.info-block p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

.info-block h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
  color: #00c853;
}

/*footer */
.footer-top {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-nav {
  gap: 20px;
}

.footer-social {
  margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  .steps-container {
    grid-template-columns: 1fr;
  }
  .pricing-container {
    grid-template-columns: 1fr;
  }
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  .team-container {
    flex-direction: column;
    text-align: center;
  }

  .team-content {
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .cta-text {
    text-align: center;
  }

  /*about */
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    margin: 25px 0;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .partners-logos {
    gap: 40px;
  }

  .partners-logos img {
    height: 35px;
  }
}

/* =====================================
   GLOBAL FIXES
===================================== */

/* Remove fixed heights everywhere */

.drivers,
.stats-section,
.heroabout,
.heroservices,
.herocontact {
  height: auto;
  min-height: auto;
}

/* Remove fixed widths */
.mv,
.values,
.os,
.other-services {
  width: 100%;
  max-width: 100%;
}

/* =====================================
   TABLET (1024px and below)
===================================== */

@media (max-width: 1024px) {
  header {
    padding: 20px 30px;
  }

  nav ul {
    gap: 20px;
  }

  .value-cards,
  .pricing-container,
  .testimonials-container,
  .team-grid,
  .our-services,
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   MOBILE (768px and below)
===================================== */

@media (max-width: 768px) {
  /* ===== Header ===== */
  header {
    flex-direction: column;
    height: auto;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .btn-login {
    margin-top: 10px;
  }

  /* ===== Hero ===== */
  .heroindex {
    padding: 60px 20px;
  }

  .herocaption {
    font-size: 22px;
  }

  /* ===== Grids to Single Column ===== */
  .value-cards,
  .container,
  .steps-container,
  .pricing-container,
  .testimonials-container,
  .team-grid,
  .our-services,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  /* ===== Drivers ===== */
  .drivers {
    padding: 60px 20px;
  }

  /* ===== CTA ===== */
  .cta-box {
    flex-direction: column;
    padding: 30px 20px;
  }

  /* ===== About Cards ===== */
  .mv,
  .values,
  .os,
  .other-services {
    height: auto;
  }

  /* ===== Footer ===== */
  .footer {
    padding: 30px 20px;
  }

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

  .footer-bottom {
    text-align: center;
  }
}

/* =====================================
   SMALL PHONES (480px and below)
===================================== */

@media (max-width: 480px) {
  .herocaption {
    font-size: 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .price {
    font-size: 26px;
  }

  .cta-text h3 {
    font-size: 18px;
  }
}
