/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0f;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.22s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.29s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.36s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.43s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.50s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.57s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.64s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.71s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.78s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Keyframe Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.15); }
  50%      { box-shadow: 0 0 40px rgba(56, 189, 248, 0.3); }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== Header / Navigation ===== */
header {
  position: fixed;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(56, 189, 248, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 0.6s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 220px;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
}

.logo:hover .logo-img {
  filter: drop-shadow(0 2px 20px rgba(56, 189, 248, 0.4));
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #22d3ee);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

nav a:hover {
  color: white;
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 60%;
}

nav a.active {
  color: white;
  background: rgba(56, 189, 248, 0.18);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.12);
}

nav a.active::after {
  width: 60%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  color: #38bdf8;
  transform: scale(1.1);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f 0%, #15121a 40%, #0a0a0f 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 65%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.12;
  max-width: 850px;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 1;
}

.hero h2 span {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 680px;
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 18px;
  animation: fadeInUp 1s ease 0.2s both;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s both;
  position: relative;
  z-index: 1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 34px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: white;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.3);
}

.btn:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(56, 189, 248, 0.5);
  color: #38bdf8;
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: #38bdf8;
  color: white;
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.2);
}

/* ===== Sections ===== */
.section {
  padding: 100px 8%;
  text-align: center;
  position: relative;
}

.section-dark {
  background: #0a0a0f;
}

.section-alt {
  background: #101015;
}

.section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section .subtitle {
  color: #64748b;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ===== Page Header ===== */
.page-header {
  padding: 160px 8% 80px;
  background: linear-gradient(135deg, #0a0a0f 0%, #15121a 60%, #0a0a0f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.page-header::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.page-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 1;
}

.page-header h2 span {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.15s both;
  position: relative;
  z-index: 1;
}

/* ===== Cards ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
  background: linear-gradient(145deg, #141419 0%, #101015 100%);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  border: 1px solid rgba(56, 189, 248, 0.06);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #22d3ee);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(56, 189, 248, 0.05);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-icon {
  transform: scale(1.15) translateY(-4px);
}

.card h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #f1f5f9;
}

.card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.card .tag {
  display: inline-block;
  background: rgba(56, 189, 248, 0.08);
  color: #38bdf8;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  margin-right: 6px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  transition: all 0.3s ease;
}

.card:hover .tag {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.25);
}

/* ===== Stats Row ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  padding: 35px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.05), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(56, 189, 248, 0.08);
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

/* ===== Partner Logos ===== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.partner-card {
  background: linear-gradient(145deg, #141419, #101015);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(56, 189, 248, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25),
              0 0 30px rgba(56, 189, 248, 0.05);
}

.partner-card svg {
  width: 64px;
  height: 64px;
  transition: transform 0.4s ease;
}

.partner-card:hover svg {
  transform: scale(1.1);
}

.partner-card .partner-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #f1f5f9;
}

.partner-card .partner-desc {
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

/* ===== Timeline ===== */
.timeline {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
  text-align: left;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #38bdf8, #22d3ee, rgba(56, 189, 248, 0.1));
}

.timeline-item {
  padding-left: 70px;
  margin-bottom: 50px;
  position: relative;
  transition: all 0.4s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  border: 4px solid #0a0a0f;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
  transition: all 0.4s ease;
}

.timeline-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.5);
}

.timeline-item:hover {
  transform: translateX(8px);
}

.timeline-item .year {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.timeline-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #f1f5f9;
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-item p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
  background: linear-gradient(135deg, #15121a, #7c2d12, #15121a);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  animation: float 7s ease-in-out infinite reverse;
}

.cta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 35px;
  font-size: 17px;
  position: relative;
  z-index: 1;
}

.cta .btn {
  background: white;
  color: #15121a;
  position: relative;
  z-index: 1;
}

.cta .btn:hover {
  background: #f1f5f9;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* ===== Contact Form ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 50px auto 0;
  text-align: left;
}

.contact-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #f1f5f9;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-detail:hover {
  background: rgba(56, 189, 248, 0.04);
  border-color: rgba(56, 189, 248, 0.1);
  transform: translateX(6px);
}

.contact-detail .icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail .text strong {
  display: block;
  color: #f1f5f9;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

.contact-detail .text span {
  color: #64748b;
  font-size: 14px;
}

form {
  max-width: 600px;
}

input, textarea, select {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.1);
  background: rgba(20, 20, 25, 0.8);
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: #475569;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
  background: rgba(20, 20, 25, 1);
}

/* ===== Trusted By ===== */
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.trusted-logos svg {
  opacity: 0.5;
  transition: all 0.4s ease;
  filter: grayscale(100%);
}

.trusted-logos svg:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ===== Footer ===== */
footer {
  padding: 60px 8% 30px;
  background: #08080c;
  border-top: 1px solid rgba(56, 189, 248, 0.06);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: #475569;
  font-size: 14px;
  max-width: 300px;
}

.footer-links h5 {
  font-family: 'Poppins', sans-serif;
  color: #f1f5f9;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: #475569;
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: #475569;
  font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header {
    padding: 10px 5%;
  }

  .logo {
    gap: 0;
  }

  .logo-img {
    width: 160px;
  }

  .mobile-toggle {
    display: block;
  }

  nav {
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(56, 189, 248, 0.1);
  }

  nav.open {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 12px 0;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 16px 8%;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(56, 189, 248, 0.05);
  }

  nav a::after {
    display: none;
  }

  nav a:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: none;
  }

  nav a.active {
    background: rgba(56, 189, 248, 0.15);
    border-left: 3px solid #38bdf8;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .page-header {
    padding: 130px 6% 60px;
  }

  .page-header h2 {
    font-size: 32px;
  }

  .section {
    padding: 70px 6%;
  }

  .section h3 {
    font-size: 28px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-inner {
    flex-direction: column;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cta {
    padding: 70px 20px;
  }

  .cta h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 140px;
  }

  .logo {
    gap: 0;
  }

  .hero h2 {
    font-size: 28px;
  }

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

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-card {
    padding: 25px 15px;
  }

  .card {
    padding: 28px;
  }

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