/* ================= VARIABLES ================= */
:root {
  --bg: #0800ff;
  --bg-gradient: linear-gradient(135deg, #0800ff 0%, #1a0066 50%, #000033 100%);
  --gold: #feee01;
  --gold-gradient: linear-gradient(135deg, #feee01 0%, #ffd700 100%);
  --text: #ffffff;
  --muted: #c9c9c9;
  --dark: #0a0a0a;
  --slide-duration: 12s;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --glow-shadow: 0 0 20px rgba(254, 238, 1, 0.3);
}

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

html, body { 
  height: 100%; 
  font-family: 'Inter', system-ui, sans-serif; 
  background: var(--bg-gradient);
  color: var(--text); 
  scroll-behavior: smooth;
}

/* ================= CONTAINER ================= */
.container { 
  width: 100%; 
  max-width: 1600px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* ================= HEADER STYLES ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgb(0, 29, 252);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(254, 238, 1, 0.2);
}

.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 15px 0; 
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
  color: inherit; 
}

/* LOGO IMAGE STYLES */
.logo-img { 
  height: 80px; 
  width: auto;
  object-fit: contain;
}

.logo-text { 
  color: var(--gold); 
  font-weight: 700; 
  font-size: 1.5rem; 
  text-shadow: 0 0 10px rgba(254, 238, 1, 0.5);
}

.desktop-nav { 
  display: flex; 
  align-items: center; 
  gap: 30px; 
}

.desktop-nav a { 
  text-decoration: none; 
  color: var(--text); 
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
}

.desktop-nav a:hover { 
  color: var(--gold); 
  background: rgba(254, 238, 1, 0.1);
  box-shadow: var(--glow-shadow);
}

.desktop-nav .download-btn {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 25px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.desktop-nav .download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(254, 238, 1, 0.4);
  border: 2px solid var(--gold);
}

.menu-toggle { 
  display: none; 
  font-size: 24px; 
  background: none; 
  border: none; 
  color: var(--text); 
  cursor: pointer; 
}

/* ================= HERO SLIDER STYLES ================= */
.hero { 
  position: relative; 
  width: 100%; 
  height: 70vh; 
  overflow: hidden; 
}

.slides-container { 
  display: flex; 
  width: 100%; 
  height: 100%; 
  animation: slideLeft var(--slide-duration) linear infinite; 
}

.slide { 
  width: 100%; 
  height: 100%; 
  flex: 0 0 100%; 
  object-fit: cover; 
  object-position: center; 
}

/* PLACEHOLDER GRADIENTS - Remove these when you add actual images */
.slide:nth-child(1) {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
}

.slide:nth-child(2) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.slide:nth-child(3) {
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2; 
}

.hero-content { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  text-align: center; 
  z-index: 3; 
  max-width: 800px; 
  width: 100%; 
  padding: 20px; 
}

.hero-title { 
  font-size: clamp(32px, 5vw, 64px); 
  font-weight: 800; 
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .accent { 
  color: var(--gold); 
  text-shadow: 0 0 20px rgba(254, 238, 1, 0.8);
}

.hero-sub { 
  margin-top: 12px; 
  color: rgb(2, 247, 255); 
  font-size: clamp(16px, 2vw, 22px); 
  margin-bottom: 30px;
}

.btn.primary { 
  display: inline-block; 
  background: var(--gold-gradient);
  color: #000; 
  padding: 15px 35px; 
  border-radius: 50px; 
  margin-top: 18px; 
  text-decoration: none; 
  font-weight: 700; 
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(254, 238, 1, 0.4);
  border: 2px solid var(--gold);
}

/* ================= SLIDE ANIMATION ================= */
@keyframes slideLeft {
  0%, 30% { transform: translateX(0); }
  33%, 63% { transform: translateX(-100%); }
  66%, 96% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* ================= ABOUT SECTION STYLES ================= */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg) 0%, #1668e2 50%, #0022ff 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(254, 238, 1, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(8, 0, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(254, 238, 1, 0.5);
  position: relative;
}

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

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 800px;
  margin: 30px auto 0;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(254, 238, 1, 0.2);
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(254, 238, 1, 0.2);
  border-color: var(--gold);
}

.card-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(254, 238, 1, 0.5);
}

/* CARD ICON IMAGE STYLES */
.card-icon-img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(254, 238, 1, 0.5));
}

.card-title {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 15px;
  font-weight: 700;
}

.card-description {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

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

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(254, 238, 1, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(254, 238, 1, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-shadow);
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--gold);
  display: block;
  text-shadow: 0 0 15px rgba(254, 238, 1, 0.6);
}

.stat-label {
  color: var(--text);
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
}

/* ================= SERVICES SECTION STYLES ================= */
.services-section {
  padding: 100px 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: linear-gradient(135deg, rgba(8, 0, 255, 0.3) 0%, rgba(26, 0, 102, 0.2) 100%);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(254, 238, 1, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(254, 238, 1, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--glow-shadow);
}

/* SERVICE ICON IMAGE STYLES */
/*
.service-icon-img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(254, 238, 1, 0.5));
}
*/

/* ================= FOOTER STYLES ================= */
.footer { 
  padding: 60px 20px 30px; 
  background: linear-gradient(135deg, #000033 0%, #0a0a0a 100%);
  color: var(--muted); 
  border-top: 1px solid rgba(254, 238, 1, 0.2);
}

.footer-inner { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-nav { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.footer-brand { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  margin-bottom: 20px;
}

/* FOOTER LOGO IMAGE STYLES */
/*
.footer-logo-img { 
  height: 40px; 
  width: auto;
  object-fit: contain;
}
*/

.footer-brand span {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(254, 238, 1, 0.1);
  color: var(--muted);
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 900px) {
  .desktop-nav { 
    display: none; 
  }
  
  .menu-toggle { 
    display: inline-block; 
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .stats-section {
    grid-template-columns: 1fr;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .services-section {
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 10px;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* ================= UTILITY CLASSES ================= */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.hidden {
  display: none;
}