:root {
  --sora: 'Sora', sans-serif;
  --primary-1: #301b2c;
  --primary-2: #a78293;
  --gradient: linear-gradient(90deg, var(--primary-1), var(--primary-2));
  --glass-bg: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.22);
  --text-dark: #301b2c;
}

body {
  font-family: var(--sora);
  background: linear-gradient(135deg, rgba(0, 0, 78, 0.1), rgba(255, 182, 6, 0.1));
  color: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 80px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient);
  opacity: 0.25;
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(100px);
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient);
  opacity: 0.25;
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(100px);
}

/* ===== Glass Card Effect ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ===== Text Styles ===== */
.highlight {
  color: var(--primary-2);
}

.highlight2 {
  color: var(--primary-1);
}

.btn-glass {
  background: var(--gradient);
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-glass:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* ===== Stats ===== */
.stats .stat-box {
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  color: var(--text-dark);
}

/* === Stats Section (Glass Blend Effect) === */
.stats {
  margin-top: 60px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Light gradient shine overlay */
.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: 0.8s;
}

.stat-box:hover::before {
  left: 125%;
}

/* Glow and lift on hover */
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.35);
}

/* Headings inside stat box */
.stat-box h4 {
  font-size: 2rem;
  color: var(--primary-1);
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}


/* Default (for large screens) */
.heroimg {
  max-width: 400px;
  height: 300px !important;
  margin-top: -300px;
  margin-left: 100px;
}

/* For medium screens (tablets, 768px - 991px) */
@media (max-width: 991px) {
  .heroimg {
    max-width: 320px;
    height: 250px !important;
    margin-top: -50px;
  }
}

/* For small tablets and large phones (576px - 767px) */
@media (max-width: 767px) {
  .heroimg {
    max-width: 280px;
    height: 500px !important;
    margin-top: -50px;
    margin-left: 10px;
  }
}

/* For small phones (below 576px) */
@media (max-width: 575px) {
  .heroimg {
    max-width: 300px;
    height: 400px !important;
    margin-top: -15px;
  }
}

/* For extra small devices (below 400px) */
@media (max-width: 400px) {
  .heroimg {
    max-width: 300px;
    height: 400px !important;
    margin-top: -15px;
  }
}
