/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  font-family: Arial, sans-serif;
  background: #020617;
  color: white;
  line-height: 1.6;
}
/* ================= INTRO ANIMATION ================= */

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.intro-content {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.intro-content img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.intro-content h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}
#changing-text {
  color: #22d3ee;
  display: inline-block;
  transition: opacity 0.4s ease;
}
#hero-heading {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* fade animation */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* exit animation */
.fade-out {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* ================= MOVING TEXT ================= */
.hero {
  position: relative;
  overflow: hidden;        /* clips the image inside */
  min-height: 50vh;       /* or whatever height you want */
}
#intro {
  opacity: 1;
  visibility: visible;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;        /* double safety */
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-bg img.active {
  opacity: 1;              /* also fix: was 1.7 which is invalid, max is 1 */
}
/* dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72); /* was 0.5, tweak between 0.4–0.6 */
  z-index: 1; /* ADD THIS — was missing */
}
.hero-content {
  position: relative;
  z-index: 2; /* already set, but double check */
}
.hero h1,
#hero-heading {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9); /* strong shadow for contrast */
}

/* Brighter subtitle */
.hero p {
  color: #f1f5f9 !important; /* near white */
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

/* Fix buttons — make sure they're above overlay */
.hero-buttons {
  margin-top: 25px;
  position: relative;
  z-index: 2;
}
.marquee {
  width: 100%;
  overflow: hidden;
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 15px 0;
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content; /* VERY IMPORTANT */
  animation: scrollText 20s linear infinite;
}
.marquee {
  mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}
.marquee span {
  color: #22d3ee;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}

.marquee span {
  font-size: 16px;
  color: #22d3ee;
  margin-right: 50px;
  white-space: nowrap;
}
.marquee span {
  color: #22d3ee;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}

/* animation */
@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* animation */
@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo {
  display: flex;
  align-items: center;   /* vertical alignment */
  gap: 10px;             /* space between logo & text */
  font-weight: bold;
  font-size: 20px;
}

.logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;   /* 🔥 FIX */
  border-radius: 50%;
  background: white;     /* optional (clean circle look) */
  padding: 2px;          /* prevents edge cutting */
}

.logo span {
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1;        /* removes weird spacing */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}
/* ================= NAVBAR ================= */
.logo img {
  height: 34px;
  width: 34px;
  border-radius: 50%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;

  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  transition: 0.3s;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  position: relative;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.navbar a:hover,
.navbar a.active {
  color: #22d3ee;
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 140px 20px;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 70%);
}

.hero p:first-child {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(34,211,238,0.3);
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  color: #94a3b8;
  max-width: 700px;
  margin: auto;
}

.hero-buttons {
  margin-top: 25px;
}

/* ================= BUTTON ================= */
.btn {
  padding: 12px 26px;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  border-radius: 10px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.8);
}

/* ================= SECTION ================= */
section {
  padding: 80px 60px;
}

section h2 {
  text-align: center;
}

.center-text {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* ================= FILTER ================= */
.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.filter-buttons button {
  background: #0f172a;
  color: white;
  border: 1px solid #1e293b;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #22d3ee;
  color: black;
}

/* ================= GRID ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ================= CARD ================= INDEX */
.card {
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #22d3ee;
  box-shadow: 0 10px 30px rgba(34,211,238,0.2);
}

/* CARD TOP */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 🔥 THIS FIXES ALIGNMENT */
  margin-bottom: 10px;
}

.icon {
  font-size: 26px;
  color: #22d3ee;
}

.badge {
  background: rgba(34,211,238,0.1);
  color: #22d3ee;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;

  display: inline-flex;
  align-items: center; /* 🔥 vertical center */
}

/* TEXT */
.card h3 {
  margin: 10px 0;
}

.card .desc {
  color: #94a3b8;
  font-size: 14px;
}

/* FEATURES */
.card ul {
  list-style: none;
  margin: 15px 0;
}

.card ul li {
  margin-bottom: 6px;
  color: #cbd5f5;
  font-size: 14px;
}

/* BUTTON BOTTOM FIX */
.card .btn {
  margin-top: auto;
}

/* ================= EXPORT SECTION ================= */
.export-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 80px auto;
}

.export-text p {
  color: #e2e8f0;
}

.export-list li {
  margin-bottom: 10px;
}

.export-img img {
  width: 100%;
  border-radius: 12px;
}

/* ================= CONTACT FIX ================= */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.contact-form {
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
}

/* 🔥 IMPORTANT FIX — scoped inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid #1e293b;
  background: #020617;
  color: #e2e8f0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #22d3ee;
}

/* ================= FOOTER ================= */
footer {
  background: #0f172a;
  padding: 40px;
  margin-top: 60px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  section {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
/* ================= CONTACT PAGE COMPLETE FIX ================= */
.contact-page section {
  padding: 60px 40px;
}

.contact-page .contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT SIDE INFO */
.contact-info a,
.cta-card a {
  color: #22d3ee;
  text-decoration: none;
}

.contact-info a:hover,
.cta-card a:hover {
  text-decoration: underline;
}
.contact-page .contact-info {
  line-height: 1.8;
}

.contact-page .contact-info h3 {
  margin-bottom: 10px;
}

.contact-page .contact-info p {
  color: #94a3b8;
  font-size: 14px;
}

/* FORM BOX */
.contact-page .contact-form {
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* INPUTS FIX */
.contact-page input,
.contact-page select,
.contact-page textarea {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border-radius: 10px;
  border: 1px solid #1e293b;
  background: #020617;
  color: #e2e8f0;
  font-size: 14px;
}

/* FOCUS EFFECT */
.contact-page input:focus,
.contact-page textarea:focus,
.contact-page select:focus {
  outline: none;
  border-color: #22d3ee;
  box-shadow: 0 0 10px rgba(34,211,238,0.3);
}

/* TEXTAREA HEIGHT */
.contact-page textarea {
  height: 140px;
}

/* BUTTON FIX */
.contact-page .btn {
  margin-top: 20px;
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-page .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

/* LEFT SIDE */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}

.info-card i {
  color: #22d3ee;
}

.info-card h3 {
  margin-bottom: 5px;
}

.info-card p {
  color: #94a3b8;
  font-size: 14px;
}

/* RIGHT FORM */
.contact-form-box {
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form-box h2 {
  margin-bottom: 20px;
}

/* GRID FORM */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  color: #cbd5f5;
}

/* INPUT FIX */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #1e293b;
  background: #020617;
  color: white;
}

/* TEXTAREA */
.contact-form textarea {
  height: 140px;
}

/* BUTTON */
.contact-form .btn {
  margin-top: 20px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ================= CTA FIX ================= */

.cta-section {
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
  background: linear-gradient(180deg, #020617, #0a1628);
}

.cta-section h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.cta-section p {
  color: #94a3b8;
  font-size: 15px;
}

.cta-section span {
  color: #22d3ee;
  font-weight: 500;
}
/* ================= CTA CARD (FINAL) ================= */

.cta-box {
  padding: 60px 20px;
}

.cta-card {
  max-width: 900px;
  margin: auto;
  padding: 25px 30px;
  border-radius: 14px;

  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  border: 1px solid rgba(34, 211, 238, 0.2);

  box-shadow: 0 10px 30px rgba(34,211,238,0.08);
}

.cta-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cta-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.cta-card span {
  color: #22d3ee;
  font-weight: 500;
}
/* ================= FOOTER ================= */

.footer {
  background: #0a1628;
  padding: 60px 20px 20px;
  color: #cbd5e1;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
/* ================= FOOTER LOGO ================= */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #e7e7e7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #e7e7e7;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #22d3ee;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #e7e7e7;
}
/* ================= ABOUT HERO FIX ================= */

.about-hero {
  position: relative;
  height: 400px;

  background: linear-gradient(
      rgba(10, 22, 40, 0.25),
      rgba(10, 22, 40, 0.25)
    ),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero .hero-content {
  max-width: 800px;
  padding: 20px;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  color: #94a3b8;
}
/* ================= TEAM SECTION FIX ================= */

.team-section {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 10px;
}

.team-section .center-text {
  color: #94a3b8;
  margin-bottom: 40px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 45px;
  text-align: left;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(34,211,238,0.1);
}

/* IMAGE FIX */
.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 17px;
  margin-bottom: 20px;
}

/* TEXT */
.team-card h3 {
  margin-bottom: 8px;
}

.team-card p {
  color: #94a3b8;
  font-size: 14px;
}
/* ================= ABOUT HIGHLIGHT SECTION ================= */

.about-highlight {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px;
}

/* MISSION + VISION GRID */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.mv-card {
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 25px;
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(34,211,238,0.1);
}

.mv-card i {
  color: #22d3ee;
  margin-bottom: 10px;
}

.mv-card h3 {
  margin-bottom: 15px;
}

.mv-card p {
  color: #94a3b8;
  font-size: 19px;
  line-height: 1.6;
}

/* WHY CARD */
.why-card {
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.why-card h2 {
  margin-bottom: 25px;
}
.cards {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD STYLE */
.core-card {
  background: linear-gradient(145deg, #0a1628, #0d1b2a);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 16px;
  padding: 30px 25px;

  text-align: center;   /* center everything */
  transition: 0.3s;
}

/* HOVER */
.core-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(34,211,238,0.15);
}

/* ICON */
.core-card i {
  font-size: 32px;
  color: #22d3ee;
  margin-bottom: 15px;
}

/* TITLE */
.core-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.core-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* WHY GRID */
/* ================= WHY CHOOSE FIX ================= */

.why-card {
  max-width: 1400px;
  margin: auto;
  padding: 40px;
  border-radius: 18px;
  text-align: center; /* only heading centered */
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}

/* COLUMN */
.why-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* EACH POINT */
.why-col p {
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* 🔥 LEFT ALIGN */
  gap: 12px;
  text-align: left;              /* 🔥 IMPORTANT */
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.6;
}

/* ICON STYLE */
.why-col i {
  color: #22d3ee;
  flex-shrink: 0;
}
.core-card {
  padding: 22px 18px;   /* reduce padding */
  min-height: 200px;    /* control size */
  max-height: 230px;    /* prevent stretching */
}
/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {

/* ================= NAVBAR MOBILE FIX ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: nowrap; /* 🔥 PREVENTS WRAPPING */
  min-height: 64px;  /* 🔥 LOCKS HEIGHT */
}

.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap; /* 🔥 KEEPS ALL LINKS IN ONE ROW */
  white-space: nowrap;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;   /* 🔥 REDUCE SIDE PADDING */
    min-height: 64px;  /* 🔥 CONSISTENT HEIGHT */
    height: 64px;
  }

  .logo span {
    font-size: 13px;   /* 🔥 SHRINK LOGO TEXT */
    line-height: 1.2;
  }

  .logo img {
    height: 28px;
    width: 28px;
    flex-shrink: 0;
  }

  .nav-links {
    gap: 12px;         /* 🔥 TIGHTER GAPS */
  }

  .nav-links a {
    font-size: 12px;   /* 🔥 SMALLER FONT */
  }
}

@media (max-width: 400px) {
  .logo span {
    display: none;     /* 🔥 HIDE TEXT ON TINY SCREENS, KEEP LOGO ICON */
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 11px;
  }
}

  /* HERO */
  .hero {
    padding: 80px 20px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* CARDS GRID */
  .cards {
    grid-template-columns: 1fr; /* 🔥 single column */
    gap: 20px;
  }

  .card {
    padding: 18px;
  }

  /* EXPORT SECTION */
  .export-section {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .export-img img {
    border-radius: 10px;
  }

  /* MARQUEE */
  .marquee span {
    font-size: 14px;
    margin-right: 30px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  /* CONTACT */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 768px) {

  .team-grid {
    grid-template-columns: 1fr; /* 🔥 FIX */
  }

  .team-card {
    padding: 25px; /* reduce spacing */
  }

  .team-card img {
    height: 250px; /* smaller image */
  }

}
@media (max-width: 768px) {

  .mv-grid {
    grid-template-columns: 1fr; /* 🔥 ONE COLUMN */
    gap: 20px;
  }

  .mv-card {
    padding: 20px;
  }

  .mv-card p {
    font-size: 15px;
    line-height: 1.7;
  }

}
@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: 1fr; /* 🔥 FIX */
    gap: 20px;
  }

  .why-col {
    gap: 15px;
  }

  .why-col p {
    font-size: 15px;
    line-height: 1.7;
  }

}
.contact-section {
  padding-top: 40px; /* reduce this */
}
.contact-container {
  padding: 0 15px;
}
.contact-card {
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 15px;
  background: linear-gradient(145deg, #0d1b2a, #1b263b);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}
.contact-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:active {
  transform: scale(0.98);
}
.icon-box {
  background: #1e293b;
  padding: 8px;
  border-radius: 50%;
}
.card-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-outline {
  padding: 10px 18px;
  border: 1px solid #22d3ee;
  border-radius: 10px;
  color: #22d3ee;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #22d3ee;
  color: black;
}
.card-buttons {
  display: flex;
  gap: 10px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* CHAT BUTTON */
.chat-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #22d3ee;
  color: black;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  font-size: 20px;
}

/* CHAT BOX */
.chat-box {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: #0f172a;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  color: white;
}

.chat-box button {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border: none;
  background: #22d3ee;
  color: black;
  border-radius: 6px;
  cursor: pointer;
}
/* Vertically center all nav items including btn */
.nav-links {
  align-items: center;
}

/* Override btn styles specifically inside navbar */
.nav-links .btn {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 8px;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Tighten navbar padding */
.navbar {
  padding: 12px 40px;
  flex-wrap: nowrap;
}

.nav-links {
  gap: 22px;
  flex-wrap: nowrap;
}