:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-glow: #60a5fa;
  --secondary: #f59e0b;
  --accent: #ec4899;
  --dark: #1f2937;
  --darker: #111827;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;
  --glass-light: rgba(255, 255, 255, 0.1);
  --glass-dark: rgba(0, 0, 0, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  line-height: 1.7;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light);
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Navbar Styles with Glassmorphism */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar.scrolled {
  padding: 0.8rem 5%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.logo img {
  height: 60px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.2));
}

.logo:hover img {
  transform: rotate(5deg);
}

.logo h1 {
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-login {
  /* background: var(--gradient-primary); */
  background-color: rgba(244, 137, 37);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login::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: 0.5s;
}

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

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Hero Section with Glassmorphism */
.hero {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 5% 8rem;
  position: relative;
  overflow: hidden;
}

/* .hero {
  background: url("images/heroimg.jpg") no-repeat center center/cover;
  height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
} */

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  transform: rotate(30deg);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
  animation: fadeInUp 1s ease;
}

.hero-content h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: rgba(244, 137, 37);
  color: rgba(255, 255, 255, 1);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(31, 50, 97);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.hero-storage-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.hero-storage-note svg {
  width: 18px;
  height: 18px;
}

.hero-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease;
}

.media-placeholder {
  width: 100%;
  height: 350px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.media-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transform: rotate(30deg);
  animation: shimmer 3s infinite linear;
}

.media-placeholder:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
video {
  width: 650px;
  max-width: 1500px;
  height: 400px;
  border-radius: 20px;
  border: 2px solid rgba(70, 70, 70, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;

}

/* Shimmer effect */
video::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  transform: rotate(30deg);
  animation: shimmer 3s infinite linear;
  pointer-events: none;
}

/* Hover effect */
video:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Shimmer keyframes */
@keyframes shimmer {
  0% {
    transform: translate(-50%, -50%) rotate(30deg);
  }
  100% {
    transform: translate(0, 0) rotate(30deg);
  }
}


/* Features Section with Glassmorphism */
.features {
  padding: 7rem 5%;
  text-align: center;
  position: relative;
  background: transparent;
}
.features h2{
    margin-bottom: 20px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 4rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient-accent);
  transition: height 0.4s ease;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--gray);
  font-size: 1.05rem;
}

/* About Section with Glassmorphism */
/* --------------------------- */
/* ✅ Modern CSS + Variables   */
/* --------------------------- */
/* :root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-glow: #60a5fa;
  --secondary: #f59e0b;
  --accent: #ec4899;
  --dark: #1f2937;
  --darker: #111827;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;

  --glass-light: rgba(255, 255, 255, 0.1);
  --glass-dark: rgba(0, 0, 0, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);

  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  --gradient-accent: linear-gradient(135deg, var(--primary-light), var(--accent));
} */

/* --------------------------- */
/* ✅ GLASSMORPHIC NAVBAR      */
/* --------------------------- */
/* .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.navbar.scrolled {
  padding: 0.8rem 5%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* Feature images */
.feature-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4rem;
  position: relative;
}
.feature-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.5);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

.feature-img {
  width: 100%;
  aspect-ratio: 16 / 9;        /* keeps consistent height */
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 1.1rem;
  display: block;
}

/* Small caption spacing consistency */
.feature-card h3 {
  margin: 0.4rem 0 0.5rem;
}

/* Optional: subtle lift on image only */
.feature-card:hover .feature-img {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .feature-img {
    aspect-ratio: 4 / 3;      /* a bit taller on phones for clarity */
  }
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.2));
}

.logo:hover img {
  transform: scale(1.05) rotate(3deg);
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Login Button
.btn-login {
  background: var(--gradient-primary);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
} */

.btn-login::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: 0.5s;
}

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

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}

/* --------------------------- */
/* ✅ ABOUT PAGE STYLES         */
/* --------------------------- */

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--gradient-primary);
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 10%;
  gap: 3rem;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark);
}

.about-text p {
  margin-top: 12px;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
}

.btn-secondary {
  background: var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  border: none;
  margin-top: 1rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block; 

}

.btn-secondary:hover {
  opacity: 0.8;
}

/* 🌆 Our Services Section */
.services-section {
  padding: 6rem 5%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
}

.services-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4rem;
  position: relative;
}

.service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.service img {
  width: 300px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.service-text {
  max-width: 800px;
  text-align: left;
}

.service-text h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

.service-right {
  flex-direction: row-reverse;
}

/* Glassmorphic card-like layout for service rows */
.service {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service {
    flex-direction: column !important;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .service img {
    width: 100%;
    max-width: 350px;
  }

  .service-text {
    text-align: center;
  }

  .service-right {
  flex-direction: row-reverse;
}

}


/* Stats Section */
.stats-section {
  text-align: center;
  padding: 1rem 5%;
  background: #f5f7fa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

/* Mission */
.mission-section {
  margin-top: 4rem;
  background: url('../images/mission-bg.jpg') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-overlay {
  background: rgba(0,0,0,0.5);
  padding: 1rem 3rem;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.mission-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
}

/* 🌆 Enhanced CivicSense Footer */
.footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(245, 247, 250, 0.4));
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  padding: 3rem 5% 1.5rem;
  color: var(--dark);
  font-family: "Inter", sans-serif;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

/* ✨ Animated gradient glow at the top of footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  transform: translateX(-50%);
  animation: glowSlide 4s linear infinite;
  opacity: 0.6;
}

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

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  max-width: 400px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.25));
  transition: transform 0.3s ease;
}

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

.footer-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
}

.footer-contact p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: var(--primary);
}

/* 🌐 Social Media Icons */
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--gray);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
  transform: translateY(-3px);
  text-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}

/* 🔻 Bottom Copyright Bar */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  color: var(--gray);
  background: transparent;
}

.footer-bottom strong {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}


/* Contact Section with Glassmorphism */
.contact {
  padding: 7rem 5%;
  text-align: center;
  background: transparent;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

/* Footer with Glassmorphism */
footer {
  text-align: center;
  padding: 3rem;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8fafc' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

footer p {
  position: relative;
  z-index: 2;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 5%;
  }
  
  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-content h2 {
    font-size: 2.3rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 5% 6rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  
  .media-placeholder {
    height: 250px;
  }
  
  .about-content {
    padding: 2rem;
  }
}
/* 🌆 How CivicSense Works Section */
.how-civicsense-works {
  padding: 4rem 6%;
  text-align: center;
  background: linear-gradient(to bottom, #f9fbff 0%, #ffffff 100%);
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  position: relative;
}

/* Dotted line connecting circles */
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 120px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent 10px,
    rgba(0, 0, 0, 0.1) 10px,
    rgba(0, 0, 0, 0.1) 20px
  );
  z-index: 0;
}

.step {
  position: relative;
  width: 260px;
  z-index: 1;
}

.step-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  margin: 0 auto 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-circle img {
  width: 90%;
  height: auto;
  border-radius: 50%;
}

.step:hover .step-circle {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.step-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.step p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-primary-report {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-report:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}
.btn-primary-reward {
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 14px;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-reward:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .steps-wrapper::before {
    display: none;
  }
}
/* .hero {
  padding: 6rem 5% 8rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.8)), url('../images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: left;
} */
