/* ================= ROOT VARIABLES ================= */
:root {
  --primary-bg: #ffffff;
  --secondary-bg: #f5f5f5;
  --dark-bg: #111111;
  --glass-bg: rgb(255, 255, 255);

  --primary-text: #000000;
  --secondary-text: #555555;
  --light-text: #aaaaaa;

  --accent-color: #008cff;
  --glow-color: rgba(98, 0, 255, 0.6);
}

/* ================= DARK MODE ================= */
body.dark {
  --primary-bg: #0c0c0c;
  --secondary-bg: #141414;
  --dark-bg: #000000;
  --glass-bg: rgba(0,0,0,0.35);

  --primary-text: #ffffff;
  --secondary-text: #cccccc;
}

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--primary-bg);
  color: var(--primary-text);
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  position: relative;
  z-index: 1;
}

/* ================= NAVBAR ================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px 60px;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav ul li a {
  font-weight: 500;
}

.dropdown-arrow {
  font-size: 12px;
  cursor: pointer;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: var(--primary-bg);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 10px 22px;
}

.dropdown-menu li a {
  display: block;
  width: 100%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--primary-text);
}

/* ================= MOBILE NAV ================= */
@media (max-width: 900px) {
  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 70px);
    flex-direction: column;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    transition: 0.4s ease;
  }

  nav ul.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= THEME TOGGLE ================= */
.theme-toggle {
  width: 54px;
  height: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
}

.toggle-thumb {
  width: 22px;
  height: 22px;
  background: var(--primary-bg);
  border-radius: 50%;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.icon {
  position: absolute;
  font-size: 12px;
  transition: 0.3s;
}

.icon.moon {
  opacity: 0;
}

body.dark .toggle-thumb {
  transform: translateX(26px);
  background: #111;
}

body.dark .icon.sun {
  opacity: 0;
}

body.dark .icon.moon {
  opacity: 1;
}

/* ================= HERO ================= */
/* ================= HERO ================= */
#hero {
  height: 100vh;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Hero overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(1px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Hero text */
.hero-text {
  background: transparent;
  padding: 15px 25px;
  border-radius: 0;
  text-align: left;
  margin-left: 60px;
  max-width: 600px;
  color: var(--text-color);
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--accent);
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Hero Buttons Layout */
/* Button layout */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Base button */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* PRIMARY */
.btn-primary {
  background: var(--accent);
  color: #ffffff;

  box-shadow:
    0 4px 14px rgba(0,0,0,0.18),
    0 0 16px color-mix(in srgb, var(--accent) 45%, transparent);
}

/* PRIMARY hover */
.btn-primary:hover {
  box-shadow:
    0 6px 20px rgba(0,0,0,0.25),
    0 0 22px color-mix(in srgb, var(--accent) 60%, transparent);
}

/* SECONDARY */
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);

  box-shadow:
    0 0 10px color-mix(in srgb, var(--accent) 35%, transparent);
}

/* SECONDARY hover */
.btn-secondary:hover {
  background: var(--accent);
  color: #ffffff;

  box-shadow:
    0 0 18px color-mix(in srgb, var(--accent) 60%, transparent);
}


/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .hero-text {
    max-width: 480px;
    margin-left: 40px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .hero-text {
    max-width: 90%;
    margin-left: 20px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}


/* ================= MARQUEE ================= */
.marquee-section {
  padding: 80px 0;
  background: var(--secondary-bg);
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.marquee-group {
  display: flex;
}

.grid-card {
  width: 340px;
  margin-right: 30px;
  background: var(--primary-bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.grid-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.grid-card div {
  padding: 20px;
}

/* Pause marquee when hovering any grid card */
.marquee:hover {
  animation-play-state: paused;
}

.marquee:hover .marquee-group {
  animation-play-state: paused;
}
.marquee-header {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.marquee-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.marquee-subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
}

.achievement-highlight {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.achievement-highlight h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.achievement-highlight p {
  opacity: 0.9;
  line-height: 1.6;
}

/*=======mission statement========*/

.mission-section {
  padding: 90px 20%;
  background: #ffffff;
  text-align: center;
}

.mission-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0.9;
}
.mission-section {
  padding: 90px 20%;
  background: var(--section-bg);
  color: var(--section-text);
  text-align: center;
}

.mission-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0.9;
}

/*======capailities sections=======*/

/* SECTION */
.capabilities-section {
  padding: 80px 10%;
  background: var(--section-bg);
  color: var(--section-text);
  position: relative;
  z-index: 1;
}

/* HEADER */
.capabilities-header {
  text-align: center;
  margin-bottom: 50px;
}

.capabilities-header h2 {
  font-size: 2.6rem;
}

/* GRID */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 IN A ROW */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.capability-card {
  background: var(--primary-bg);
  color: var(--section-text);
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(141, 27, 235, 0.925);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.capability-card p {
  line-height: 1.6;
  opacity: 0.9;
}

/* HOVER */
.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .capabilities-grid {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}



/* ================= WHY CHOOSE ================= */
/* ================= WHY CHOOSE SECTION ================= */

#why {
  padding: 100px 60px;
  background: var(--primary-bg);
  color: var(--section-text);
  text-align: center;
}

#why h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent);
}

/* Grid Layout */
.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 × 2 on desktop */
  gap: 30px;
  max-width: 1200px;
  margin-inline: auto;
}

/* Card */
.why-card {
  position: relative;
  padding: 30px;
  background: var(--secondary-bg);
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Card Title */
.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--accent);
}

/* Card Description */
.why-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
  flex-grow: 1;
}

/* Hover Effects */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px var(--glow-color);
}

/* Accent Border on Hover */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: border-color 0.35s ease;
}

.why-card:hover::before {
  border-color: var(--accent);
}

/* Optional Icon */
.why-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

/* RESPONSIVE GRID */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #why {
    padding: 80px 24px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
  }
}

@media (max-width: 640px) {
  #why {
    padding: 80px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr; /* Mobile: 1 column */
  }
}


/* ================= FOOTER ================= */
/* ================= FOOTER ================= */

.site-footer {
  background: var(--dark-bg);
  color: var(--light-text);
  padding-top: 70px;
}

/* MAIN GRID */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 0 8% 60px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 420px;
}

.footer-contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

/* LINKS */
.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--light-text);
  opacity: 0.8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

/*============= FOOTER MARQUEE============= */
.footer-marquee {
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  padding: 14px 0;
}

.jet-track {
  display: flex;
  align-items: center;
  white-space: nowrap;

  /* Continuous left → right animation */
  animation: jet-loop 20s linear infinite;
}

/* Jet symbol */
.jet {
  color: var(--accent);
  font-size: 1.6rem;
  transform: rotate(-5deg);
  margin-right: 8px;
}

/* Trail */
.trail {
  color: var(--accent);
  font-weight: bold;
  opacity: 0.6;
  margin-right: 20px;
}

/* Smooth continuous animation */
@keyframes jet-loop {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .jet-track {
    font-size: 1.2rem;
  }
  .jet {
    font-size: 1.4rem;
  }
}


/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  background: rgba(0,0,0,0.4);
  opacity: 0.85;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-contact {
    align-items: center;
  }
}

/* ================= KEYFRAMES ================= */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}




#feedback {
  padding: 100px 0;
  background: var(--secondary-bg);
  text-align: center;
  overflow: hidden;
}

#feedback h2 {
  margin-bottom: 40px;
}

.feedback-card {
  width: 300px;
  margin-right: 30px;
  padding: 25px;
  background: var(--primary-bg);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feedback-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 12px;
}
