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

body {
  font-family: "Ancizar Sans";
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

@font-face {
  font-family: 'Sego';
  src: url('/Fonts/SEGO.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= BRAND / LOGO ================= */
.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  /* minimal spacing between logo and text */
}

.brand img {
  height: 56px;
  display: block;
}

.logo-text,
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: #27386d;
}

/* ================= NAVBAR ================= */
.navbar {
  padding: 16px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #6b7280;
  font-weight: 500;
}

.nav-links a:hover {
  color: #27386d;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

/* ================= BUTTONS ================= */
.btn-outline {
  border: 1px solid #27386d;
  background: transparent;
  color: #27386d;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  background: #27386d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}

/* ================= HERO - HOMEPAGE ================= */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #27386d;
}

/* Hero Highlights */
.highlight {
  color: #27386d;
}

/* Hero Text Paragraphs */
.hero-text p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 520px;
}

/* Hero Steps */
.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #27386d;
}

.hero-title span {
  color: #27386d;
}

.hero-desc {
  margin-top: 16px;
  color: #4b5563;
  font-size: 16px;
  max-width: 560px;
}

.steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.step {
  display: flex;
  gap: 14px;
}

.step-icon {
  width: 28px;
  height: 28px;
  background: #27386d;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.step p {
  margin-top: 4px;
  font-size: 14px;
  color: #4b5563;
  max-width: 520px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.bg-card {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #e9ecf6;
  border-radius: 28px;
  bottom: -30px;
  right: 40px;
}

.user-img {
  width: 280px;
  border-radius: 28px;
  position: relative;
  z-index: 2;
}

/* ================= VIDEO CARD ================= */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.video-card img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn span {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* ================= AUTO PILOT SECTION ================= */
.autopilot-section {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.autopilot-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #142156;
  margin-bottom: 80px;
}

/* MAIN LAYOUT */
.autopilot-layout {
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* FEATURE COLUMNS */
.features {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* CARD STYLE */
.card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f5f7fb;
  padding: 22px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0e1b4d;
  margin-bottom: 6px;
}

.card p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
}

/* CHECK ICON */
.icon {
  width: 32px;
  height: 32px;
  background: #1e3a8a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CENTER IMAGE – NO BORDER, NO SHADOW */
.autopilot-image {
  width: 36%;
  display: flex;
  justify-content: center;
}

.autopilot-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .autopilot-layout {
    flex-direction: column;
    gap: 50px;
  }

  .features,
  .autopilot-image {
    width: 100%;
  }

  .autopilot-image img {
    max-width: 280px;
  }
}


/* Check Icon */
.check-icon {
  width: 34px;
  height: 34px;
  background: #27386d;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Center Graphic */
.center-wrapper {
  display: flex;
  justify-content: center;
}

.center-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, #eef1fb);
  box-shadow: 0 30px 80px rgba(39, 56, 109, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-circle img {
  width: 160px;
  max-width: 100%;
}

/* ================= HERO - ABOUT PAGE ================= */
.hero-about {
  height: 240px;
  background: radial-gradient(circle at top left, #27386d, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-about h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

/* ================= STORY ================= */
.story {
  margin-top: -40px;
  padding: 40px 0;
}

.story-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
}

.story-box p {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
}

.story-box strong {
  color: #27386d;
}


.section-title {
  font-size: 28px;
  color: #27386d;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;

  /* reduce left spacing */
  padding-left: 8px;
}

.section-title::before {
  content: "";
  position: absolute;

  /* move the line closer */
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 3px;
  height: 24px;
  background-color: #27386d;
  border-radius: 2px;
}



/* ================= MISSION ================= */
.mission {
  margin-top: 120px;
}

.mission-content {
  max-width: 900px;
}

.mission-text {
  font-size: 18px;
  line-height: 1.7;
  color: #0f172a;
}

/* ================= VALUES ================= */
.values {
  margin-top: 120px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-item {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #27386d;
  transition: width 0.3s ease;
}

.value-item:hover::before {
  width: 100%;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(39, 56, 109, 0.15);
}

.value-item span {
  font-size: 22px;
  color: #27386d;
  font-weight: 600;
}

.value-item h4 {
  font-size: 18px;
  margin: 10px 0;
  color: #0f172a;
}

.value-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* ================= FOOTER ================= */
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 60px 24px 24px;
  margin-top: 80px;
}

/* .footer-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
} */

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-evenly;
  /* LEFT & RIGHT */
  align-items: center;
  flex-wrap: wrap;
}

/* Brand (logo + text) */
.footer .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Links section */
.footer-grid h4 {
  margin-bottom: 12px;
}


.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #6b7280;
  font-size: 14px;
}

.footer ul li a:hover {
  color: #27386d;
}

.footer-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 30px 0;
}

.footer-bottom {
  font-size: 14px;
  color: #6b7280;
}
.footer-left {
    display: flex;
    gap: 20px;
  }

  .footer-left a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
  }

  .footer-left a:hover {
    text-decoration: underline;
  }

  .footer-center {
    color: #374151;
    font-size: 13px;
  }

  .footer-right {
    display: flex;
    gap: 14px;
  }

  .footer-right a {
    color: #111827;
    font-size: 16px;
    text-decoration: none;
  }

  .footer-right a:hover {
    color: #2563eb;
  }
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .hero-grid,
  .auto-grid,
  .mission {
    grid-template-columns: 1fr;
  }

  .video-card {
    max-width: 500px;
    margin: auto;
  }

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 50px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-visual {
    justify-content: center;
  }
}



/* GRADIENT HEADER */
#grad1 {
  height: 200px;
  width: 100%;
  background-image: linear-gradient(170deg,
      #01001c 0%,
      #04042a 30%,
      #0a2369 65%,
      #050824 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* TAGLINE */
.tagline {
  position: absolute;
  bottom: 18px;
  right: 32px;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* DOT PATTERN (LEFT SIDE) */
#grad1::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px);
  background-size: 12px 12px;
  transform: translateY(-50%);
  opacity: 0.5;
}

.brand-text {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  z-index: 2;
}


html, body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .autopilot-layout {
    flex-direction: column;
    align-items: center;
  }

  .features,
  .autopilot-image {
    width: 100%;
  }

  .autopilot-image img {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .steps {
    gap: 18px;
  }

  .step {
    gap: 10px;
  }
}