/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* adjust based on your header height */
}


body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff; /* Pure white */
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
   padding: 0.5rem 1.5rem; 
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 60px;   /* 🔼 bigger logo */
  width: auto;    /* keeps proportion */
  display: block;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: #1b1a1a;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #0077ff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0077ff, #5a4fff);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #475569;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  padding: 1rem 2rem;
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: #f8fafc;
  color: #0077ff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center center / cover no-repeat;
}


.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  color: #fbbf24;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
  to { box-shadow: 0 0 30px rgba(251, 191, 36, 0.6); }
}

.sparkle {
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #ec4899);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(41, 166, 239, 0.8);
  font-weight: 500;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.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 ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: white;
  color: #0077ff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll-wheel {
  0% { opacity: 1; top: 8px; }
  50% { opacity: 0.5; top: 16px; }
  100% { opacity: 1; top: 8px; }
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: #f8fafc;
}

#about {
  padding-top: 50px;   /* try 50px instead of something like 120px */
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 0;
  padding-top: 0;
}

.section-title {
   font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;

}

.section-subtitle {
  font-size: 17px;
  color: #64748b;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0077ff, #0a0188);
  border-radius: 2px;
  margin: 0 auto;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  font-size: 15px;
  color: #475569;
  text-align: justify;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f214a;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: #64748b;
}

.about-features {
  position: relative;
}

.feature-card {
  background: linear-gradient(135deg, #0077ff, #5a4fff);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.3);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.check {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Vision Section - New Design */
/* Row container */
.vm-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  padding: 40px 20px;
  flex-wrap: wrap; /* ensures responsive stacking on small screens */
  padding-top: 5px;   /* smaller padding */
  margin-top: 0;  /* reduce top padding */
}


/* Card */
.vm-card {
  flex: 1;
  min-width: 300px;
  max-width: 570px;
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  gap: 20px;
}

/* Icon */
.vm-icon {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Content */
.vm-content {
  flex: 1;
}

.vm-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #210a88;
}



.vm-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-word;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  text-align: justify;
  color: #333;
  line-height: 1.6;
}

.mission-list .tick {
  color: #5882eb;  /* green tick */
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

/* About + Vision/Mission scroll animations */

/* Hidden by default */
.about-content,
.stat-item,
.feature-card,
.vm-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Show state */
.about-content.show,
.stat-item.show,
.feature-card.show,
.vm-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger for nicer effect */
.stat-item:nth-child(1).show { transition-delay: 0.2s; }
.stat-item:nth-child(2).show { transition-delay: 0.4s; }
.stat-item:nth-child(3).show { transition-delay: 0.6s; }

.vm-card:nth-child(1).show { transition-delay: 0.2s; }
.vm-card:nth-child(2).show { transition-delay: 0.4s; }

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .vm-row {
    flex-direction: column;
  }
}


/* Services Section */
#services {
  padding-top: 40px;   /* was probably 100px+ */
  margin-top: 0;
  padding-bottom: 50px;
}

#services .section-header {
  margin-top: 0;
  padding-top: 0;
  
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* always 4 per row */
  gap: 2rem;
  
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* everything aligned from top */
  align-items: center;     /* left-align content */
  min-height: 200px;     
  
 /* start hidden */
  opacity: 0;
  transform: translateY(40px);
}

.service-card.show {
  animation: fadeUp 0.8s ease forwards;
}
/* Animate each card with slight delay */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #0077ff;
}

.service-icon-wrapper {
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #e9eaeb, #a7a7a7);
  width: 50px;
  height: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(8deg);
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #081942;
  margin-bottom: 1rem;
}

.service-description {
   font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
    margin-top: auto;   /* pushes description to consistent start */
  text-align: left;   /* keep text neat */
  padding-left: 20px; /* indent bullets */
  width: 100%; 
}
.service-description li {
  margin-bottom: 6px;   /* space between points */
}
.service-arrow {
  font-size: 1.5rem;
  color: #0077ff;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* Contact Section */

#contact .section-header {
margin-top: 0;
  padding-top: 0;  
}

#contact {
 padding-top: 40px;   /* was probably 100px+ */
  margin-top: 0;
  padding-bottom: 50px;
}

/* Contact Content Grid */
/* Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  
  animation: fadeSlideUp 0.8s ease-in-out both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Info Card (Left) */
.contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

}

/* Hidden state */
.contact-card,
.contact-form-wrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Visible state with animation */
.contact-card.show {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 0.8s ease forwards;
}
.contact-form-wrapper.show {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 0.8s ease forwards;
}



@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.contact-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

/* Items inside card */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:hover .contact-icon i {
  transform: scale(1.3) rotate(8deg);
}
.contact-icon i {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
   transition: transform 0.3s ease, color 0.3s ease;
}

/* Different colors per icon */
.icon-office {
  color: #2563eb;   /* Blue */
}
.icon-intl {
  color: #059669;   /* Green */
}
.icon-phone {
  color: #d97706;   /* Orange */
}
.icon-email {
  color: #db2777;   /* Pink */
}


.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0.3rem 0;
  color: #071b4b;
}

.contact-details p,
.contact-link {
  font-size: 15px;
  color: #64748b;
}

/* Form Card (Right) */
.contact-form-wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-info,
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%; /* force equal height */
}

.contact-card,
.contact-form-wrapper {
  flex: 1; /* fill the height evenly */
}
.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
  color: #0f172a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
 transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #0077ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
  transform: scale(1.02);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.form-button {
  padding: 1rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  
}

.form-button:hover {
  background: #1d4ed8;
}


/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 3rem 1rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-about p {
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 14px;
  text-align: justify;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1e293b;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #83a5e0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  margin-bottom: 0.6rem;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
}
.footer-contact i {
  width: 16px;      /* smaller width */
  height: 16px;     /* smaller height */
  font-size: 16px;  /* makes Lucide render small */
  flex-shrink: 0;   /* prevents squashing */
  color: #fbbf24;   /* optional: highlight */
  
}

.footer-icon {
  width: 18px;   /* smaller width */
  height: 18px;  /* smaller height */
  stroke-width: 1.5;
  margin-right: 6px; /* space between icon & text */
  vertical-align: middle;
  color: #65a7ea;
}


.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
 
  font-size: 0.9rem;
  color: #94a3b8;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    white-space: normal; /* allow wrapping on smaller screens */
    text-align: center;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .logo-text {
    display: none;
  }
  
  .vision-card {
    padding: 2.5rem 2rem;
  }
  
  .mission-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-card,
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  .contact-details p,
    .contact-link {
    font-size: 14px;
    color: #64748b;
}
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav {
    padding: 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .vision-card {
    padding: 2rem 1.5rem;
  }
  
  .mission-card {
    padding: 1.5rem 1rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-card,
  .contact-form-wrapper {
    padding: 1.5rem 1rem;
  }
}



/* Hidden state */
.hero-title,
.hero-description,
.hero-tagline,
.hero-buttons {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Show state */
.hero-title.show,
.hero-description.show,
.hero-tagline.show,
.hero-buttons.show {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.hero-title.show { transition-delay: 0.2s; }
.hero-description.show { transition-delay: 0.4s; }
.hero-tagline.show { transition-delay: 0.6s; }
.hero-buttons.show { transition-delay: 0.8s; }

/* Gradient shimmer only when visible */
.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #ec4899);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text.animate {
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Loading spinner */
.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #2563eb; /* blue */
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
