/* =============================================
   Snow Aura — Premium Light Theme
   Design: Pristine White, Azure Blue, Royal Violet
   Fonts: Inter + Outfit
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark:      #F8FAFC;
  --bg-card:      #FFFFFF;
  --bg-glass:     rgba(255, 255, 255, 0.85);
  --primary:       #00C2FF;
  --primary-glow:  rgba(0, 194, 255, 0.15);
  --secondary:     #7000FF;
  --accent:        #ff00c8;
  --white:         #0F172A; /* Using dark for standard text in logic */
  --text-main:     #1E293B;
  --text-muted:    #64748B;
  --grad-linear:   linear-gradient(135deg, #00C2FF 0%, #7000FF 100%);
  --grad-mesh:     radial-gradient(at 0% 0%, rgba(0, 194, 255, 0.1) 0, transparent 50%),
                   radial-gradient(at 100% 100%, rgba(112, 0, 255, 0.1) 0, transparent 50%);
  --radius-lg:     32px;
  --radius-md:     20px;
  --radius-sm:     12px;
  --transition:    all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-glow:   0 15px 35px rgba(0, 194, 255, 0.2);
  --shadow-card:   0 20px 50px rgba(15, 23, 42, 0.05);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: var(--grad-mesh);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.1; color: #0F172A; letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { 
  max-width: 100%; 
  border-radius: var(--radius-md); 
  filter: saturate(1.1);
  transition: var(--transition);
}
img:hover {
  transform: scale(1.01);
}

/* ===== UTILITIES ===== */
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }
.text-grad {
  background: var(--grad-linear);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

/* ===== BUTTONS ===== */
.btn-aura {
  background: var(--grad-linear);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  transition: var(--transition);
}
.btn-aura:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 194, 255, 0.35);
}

.btn-glass {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #0F172A;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.btn-glass:hover {
  background: #f1f5f9;
  border-color: var(--primary);
  color: var(--secondary);
}

/* ===== NAVBAR ===== */
.navbar-main {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1100;
}
.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0F172A !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-linear);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 15px rgba(0, 194, 255, 0.2);
}
.navbar-main .nav-link {
  color: #64748B !important;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px !important;
  transition: var(--transition);
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active {
  color: var(--secondary) !important;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 30px;
  color: #0F172A;
}
.hero-desc {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 45px;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
  border: 4px solid #fff;
}
.hero-blob {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.2;
}

/* ===== BENTO CARDS ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.bento-card:hover {
  border-color: rgba(0, 194, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.08);
}
.bento-icon {
  width: 60px;
  height: 60px;
  background: #F1F5F9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 25px;
  transition: var(--transition);
}
.bento-card:hover .bento-icon {
  background: var(--grad-linear);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

/* ===== STATS ===== */
.stats-row {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: var(--shadow-card);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 48px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 35px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 15px 45px rgba(0,0,0,0.02);
}
.testi-text { font-style: normal; font-size: 17px; margin-bottom: 25px; color: var(--text-main); line-height: 1.8; }
.testi-user { display: flex; align-items: center; gap: 15px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; border: 3px solid #F1F5F9; }
.testi-name { font-weight: 800; color: #0F172A; }
.testi-title { font-size: 13px; color: var(--text-muted); }

/* ===== SERVICE CARDS ===== */
.service-glass-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.service-tag {
  background: #F1F5F9;
  color: #475569;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.service-list { list-style: none; padding: 0; margin: 20px 0; }
.service-list li { margin-bottom: 12px; font-size: 14px; color: var(--text-muted); display: flex; gap: 10px; font-weight: 500; }
.service-list li i { color: var(--primary); margin-top: 4px; }

/* ===== FOOTER ===== */
.footer-main {
  background: #fff;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}
.footer-heading { color: #0F172A; font-weight: 800; margin-bottom: 25px; font-size: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 15px; font-weight: 500; }
.footer-links a:hover { color: var(--secondary); transform: translateX(5px); display: inline-block; }
.footer-bottom { border-top: 1px solid rgba(15, 23, 42, 0.05); margin-top: 60px; padding-top: 30px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.8s ease forwards; }

/* ===== SECTION TITLES ===== */
.section-head { text-align: center; margin-bottom: 70px; }
.section-head h2 { font-size: clamp(32px, 4vw, 54px); margin-bottom: 20px; color: #0F172A; }
.section-head p { color: var(--text-muted); font-size: 18px; max-width: 700px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 50px; }
  .bento-grid { grid-template-columns: repeat(1, 1fr); }
  .section-pad { padding: 80px 0; }
}

@media (max-width: 767px) {
  .hero-section { padding: 60px 0; }
  .stat-num { font-size: 36px; }
  .btn-aura { width: 100%; justify-content: center; }
}
