/* =========================================================
   HOME PAGE — HERO ANIMATED (FADE-IN + CURVED BACKGROUND)
   ========================================================= */

.hero-animated {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(10, 10, 10, 0.24)),
              url("../img/agency.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;

  /* bottom curve and fade effect */
  clip-path: ellipse(130% 85% at 50% 15%);
  opacity: 0;
  animation: heroFadeIn 1.8s ease forwards 0.3s;
  background-attachment: fixed; /* parallax-like effect */
}

/* fade-in animation for background */
@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- INNER ---------- */
.hero-animated .hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* ---------- LEFT SIDE ---------- */
.hero-animated .hero-left {
  flex: 1 1 500px;
  z-index: 3;
  opacity: 0;
  margin-top: -40px;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.6s;
}

.hero-animated .kicker {
  color: #9c8643;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-animated h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 16px 0 20px;
  font-weight: 700;
}

.hero-animated p {
  font-size: 18px;
  color: #d1d1d1;
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 32px;
}

.hero-animated .cta-row {
  display: flex;
  gap: 16px;
}

.hero-animated .btn-primary,
.hero-animated .btn-ghost {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.hero-animated .btn-primary {
  background: #9c8643;
  color: #fff;
}

.hero-animated .btn-primary:hover {
  background: #b79d54;
  transform: translateY(-3px);
}

.hero-animated .btn-ghost {
  border: 1.5px solid #9c8643;
  color: #ffffffff;
}

.hero-animated .btn-ghost:hover {
  background: #9c8643;
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- RIGHT SIDE ---------- */
/* .hero-animated .hero-right {
  position: relative;
  flex: 1 1 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  overflow: visible;
}

.hero-animated .person {
  position: relative;
  z-index: 4;
  width: 359px;
  animation: fadeInScale 1.3s ease forwards 0.8s, float 4s ease-in-out infinite 1.8s;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  opacity: 0;
  transform: scale(0.9);
}

@keyframes fadeInScale {
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
} */

/* ---------- FLOATING BUBBLES ---------- */
.hero-animated .bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  width: 230px;
  color: #fff;
  z-index: 6;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
  animation: fadeUp 1s ease forwards;
}

.hero-animated .b1 { top: 20px; right: -45px; animation-delay: 1s; }
.hero-animated .b2 { top: 159px; right: -45px; animation-delay: 1.2s; }
.hero-animated .b3 { bottom: 180px; right: -45px; animation-delay: 1.4s; }
.hero-animated .b4 { bottom: 60px; right: -45px; animation-delay: 1.6s; }

/* ---------- BADGES ---------- */
.hero-animated .badge {
  position: absolute;
  background: #9c8643;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-animated .bx1 { top: 60px; right: 320px; animation-delay: 1.8s; }
.hero-animated .bx2 { bottom: 120px; right: 360px; animation-delay: 2s; }
.hero-animated .bx3 { bottom: 260px; right: 200px; animation-delay: 2.2s; }

/* ==============================
   IT SERVICES INTRO SECTION (Modern Corporate Style)
   ============================== */
.it-services-intro {
  background-color: #f9f9f4;
  padding: 64px 8%;
  font-family: "Poppins", sans-serif;
}

.container-section {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1;
  min-width: 320px;
}

.intro-text h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-text h2 span {
  color: #9c8643;
}

.intro-text p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 17px;
}

.intro-btn {
  display: inline-block;
  background-color: #9c8643;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.intro-btn:hover {
  background-color: #b59c54;
  transform: translateY(-3px);
}

/* IMAGE SIDE */
.intro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 450px;
  animation: floatUpDown 4s ease-in-out infinite;
}

/* ---------- FAQ SECTION ---------- */
/* ===== FAQ SECTION ===== */
.faq-section {
  background: linear-gradient(180deg, #fdfdfb, #f5f5f5);
  padding: 60px 8%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* ===== HEADER ===== */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h4 {
  color: #9c8643;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.faq-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.faq-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #9c8643, #000);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== FAQ CONTAINER ===== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* ===== QUESTION ===== */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}

.faq-question:hover {
  color: #9c8643;
  background: #faf7ef;
}

.faq-question span {
  font-size: 22px;
  color: #9c8643;
  transition: transform 0.3s ease;
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #555;
  font-size: 15.5px;
  line-height: 1.7;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* ===== ACTIVE STATE ===== */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 12px 22px 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: #000;
}

.faq-item.active .faq-question {
  color: #9c8643;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 16px;
    padding: 16px 18px;
  }
  .faq-answer {
    font-size: 15px;
    padding: 0 18px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 40px 5%;
  }
  .faq-header h2 {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }
  .faq-answer {
    font-size: 14px;
    padding: 0 16px;
  }
}


/* ---------- GLOBAL ANIMATION ---------- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .hero-animated {
    padding: 60px 5% 40px;
    text-align: center;
    background-attachment: scroll;
    clip-path: ellipse(150% 70% at 50% 10%);
  }

  .hero-animated .hero-inner {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: -202px;
    justify-content: center;
    gap: 40px;
  }

  .hero-animated .hero-left,
  .hero-animated .hero-right {
    flex: none;
    width: 100%;
  }

  .hero-animated .hero-left {
    order: 2;
    margin-top: 215px;
    margin-bottom: 182px;
  }

  .hero-animated .hero-right {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-animated .person {
    width: 240px;
    max-width: 85%;
    margin: 0 auto 20px;
    animation: fadeInScale 1.2s ease forwards, float 4s ease-in-out infinite;
  }

  .hero-animated .bubble {
    position: relative;
    opacity: 1;
    transform: none;
    margin: 12px auto;
    text-align: center;
    width: 90%;
  }

  .hero-animated .badge { display: none; }

  .hero-animated h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-animated p {
    font-size: 15px;
    color: #e2e2e2;
  }

  .hero-animated .cta-row {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-animated {
    margin-top: 21px;
    clip-path: ellipse(170% 60% at 50% 8%);
  }

  .hero-animated .person {
    width: 200px;
  }

  .hero-animated h1 {
    font-size: 26px;
  }

  .hero-animated p {
    font-size: 14px;
  }

  .hero-animated .bubble {
    width: 95%;
  }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .intro-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 34px;
  }

  .intro-image img {
    max-width: 350px;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 6%;
  }

  .faq-header h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
  }

  .section-title-1{
    margin-top:-100px;
}
}
/* ===== Variables ===== */
:root {
  --primary-yellow: #ffcc00;
  --card-bg: #ffffff;
  --bg-light: #f4f8ff;
  --text-dark: #1a1a1a;
  --text-gray: #6c757d;
}

/* ===== Section ===== */
.services-section {
  text-align: center;
  background: var(--bg-light);
  padding: 80px 5%;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-gray);
  margin-bottom: 50px;
  font-size: 1rem;
}

/* ===== Grid Layout ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* ===== Feature Card ===== */
.feature-card {
  width: 100%;
  max-width: 350px;
  background: transparent;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

/* ===== Rectangle Image ===== */
.card-image {
  width: 100%;
  height: 180px;
  border-radius: 12px 12px 0 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.feature-card:hover .card-image {
  transform: scale(1.08);
}

/* ===== Square Box ===== */
.card-box {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px 20px 25px;
  margin-top: -40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.feature-card:hover .card-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Icon Square ===== */
.icon-square {
  width: 70px;
  height: 70px;
  background: var(--primary-yellow);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: -70px auto 15px;
  border: 5px solid #fff;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

.feature-card:hover .icon-square {
  background: white;
  color: var(--primary-yellow);
  box-shadow: 0 0 0 3px var(--primary-yellow);
}

/* ===== Text ===== */
.card-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-box p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ======================================
      RESPONSIVE DESIGN
====================================== */

/* Tablets */
@media (max-width: 992px) {

  .services-section {
    padding: 60px 6%;
  }

  .card-grid {
    gap: 30px;
  }

  .card-image {
    height: 160px;
  }

  .icon-square {
    width: 65px;
    height: 65px;
    font-size: 22px;
  }

  .card-box {
    padding: 35px 18px 22px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-image {
    height: 160px;
  }

  .icon-square {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin: -60px auto 12px;
  }

  .card-box h3 {
    font-size: 1rem;
  }

  .card-box p {
    font-size: 0.9rem;
  }
}

/* Mobile Small */
@media (max-width: 480px) {

  .services-section {
    padding: 50px 5%;
  }

  .card-image {
    height: 150px;
  }

  .icon-square {
    width: 55px;
    height: 55px;
    font-size: 18px;
    margin: -55px auto 10px;
  }

  .card-box {
    padding: 30px 16px 20px;
  }
}


/* ===== Responsive ===== */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --card-bg: #ffffff;
  --section-bg: linear-gradient(180deg, #a49319ff 0%, #d0d0d9ff 100%);
  --gradient-icon: linear-gradient(90deg, #d2a511d3, #202020);
  --text-dark: #222;
  --text-light: #6c757d;
}

/* Whole section background */
/* Compact Stats Section */
.stats-section {
  background: var(--section-bg);
  padding: 35px 0;             /* smaller height */
  text-align: center;
  border-radius: 16px;
}

/* Title & description */
.stats-header {
  margin-bottom: 25px;         /* reduced spacing */
}

.stats-header h2 {
  font-size: 22px;             /* smaller title */
  font-weight: 700;
  color: #202020;
  margin-bottom: 6px;
}

.stats-header p {
  font-size: 14px;             /* smaller text */
  color: #555;
  max-width: 480px;            /* narrower */
  margin: 0 auto;
  line-height: 1.5;
}

/* Cards container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;                   /* smaller gaps */
  width: 90%;
  max-width: 800px;            /* reduced width */
  margin: 0 auto;
}

/* Compact Card */
.stat-card {
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  padding: 12px 15px;          /* reduced padding */
  width: 180px;                /* smaller width */
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Smaller icon circle */
.stat-left {
  width: 38px;                 /* smaller */
  height: 38px;
  margin-right: 10px;
}

.stat-icon i {
  font-size: 16px;             /* smaller icon */
}

/* Text inside cards */
.stat-right {
  text-align: left;
}

.stat-number {
  font-size: 1.4em;            /* smaller number */
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.75em;           /* smaller label */
  color: var(--text-light);
  margin-top: 3px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .stat-card {
    width: 70%;                /* compact mobile width */
    padding: 12px 12px;
  }
  .stats-header h2 {
    font-size: 20px;
  }
}

/* ===== Variables ===== */
:root {
  --primary-yellow: #ffcc00;
  --card-bg: #ffffff;
  --bg-light: #f4f8ff;
  --text-dark: #1a1a1a;
  --text-gray: #6c757d;

  /* Stats Section Variables */
  --section-bg: linear-gradient(180deg, #a49319ff 0%, #d0d0d9ff 100%);
  --gradient-icon: linear-gradient(90deg, #d2a511d3, #202020);
  --text-light: #6c757d;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  text-align: center;
  background: var(--bg-light);
  padding: 80px 5%;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-gray);
  margin-bottom: 50px;
  font-size: 1rem;
}

/* Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Feature Card */
.feature-card {
  width: 100%;
  max-width: 320px;
  background: transparent;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

/* Rectangle Image */
.card-image {
  width: 100%;
  height: 180px;
  border-radius: 12px 12px 0 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.feature-card:hover .card-image {
  transform: scale(1.08);
}

/* Square Box Below Image */
.card-box {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px 20px 25px;
  margin-top: -40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.feature-card:hover .card-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Square */
.icon-square {
  width: 70px;
  height: 70px;
  background: linear-gradient(90deg, #f0c94d, #000000);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: -70px auto 15px;
  border: 5px solid #fff;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

.feature-card:hover .icon-square {
  background: white;
  color: var(--primary-yellow);
  box-shadow: 0 0 0 3px var(--primary-yellow);
}

/* Text Styling */
.card-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-box p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== Responsive for Services Section ===== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 8%;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .card-box {
    padding: 30px 15px 20px;
  }
  .icon-square {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  .section-title {
    font-size: 1.4rem;
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--section-bg);
  padding: 60px 5%;
  text-align: center;
  border-radius: 20px;
}

.stats-header {
  margin-bottom: 40px;
}

.stats-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 10px;
}

.stats-header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Stat Card */
.stat-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 20px;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

/* Icon */
.stat-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-icon);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 22px;
}

/* Text */
.stat-right {
  text-align: left;
}

.stat-number {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-size: 0.9em;
  color: var(--text-light);
  margin-top: 5px;
  font-weight: 500;
}

/* ===== Responsive for Stats Section ===== */
@media (max-width: 992px) {
  .stats-container {
    gap: 20px;
  }
  .stat-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 50px 8%;
  }
  .stat-card {
    width: 80%;
  }
  .stats-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .stats-header h2 {
    font-size: 20px;
  }
  .stats-header p {
    font-size: 14px;
  }
  .stat-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    padding: 20px;
  }
  .stat-left {
    margin: 0 0 10px 0;
  }
  .stat-number {
    font-size: 1.6em;
  }
}
