body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #2f1c6a, #1a093f);
      color: white;
    }

    .navbar {
      background-color: #1a093f;
    }

    .navbar-brand {
      color: #feca1b;
      font-weight: bold;
      font-size: 1.8rem;
    }

    .hero {
      padding: 100px 0;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.2rem;
      color: #ddd;
    }

    .btn-primary {
      background-color: #feca1b;
      color: #1a093f;
      border: none;
      font-weight: bold;
    }

    .stats-section {
      background: #10062e;
      padding: 60px 0;
    }

    .stat-card {
      background: #24155c;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      color: #fff;
    }

    .stat-card h3 {
      font-size: 2rem;
      color: #feca1b;
    }

    .benefit-card {
  padding: 25px;
  border-radius: 15px;
  color: #fff;
  min-height: 320px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

/* Individual card colors */
.benefit-blue {
  background: #2d3eea;
}
.benefit-yellow {
  background: #feca1b;
  color: #1a093f;
}
.benefit-pink {
  background: #ff2e7e;
}
.benefit-purple {
  background: #6a1ebf;
}

.icon-placeholder img {
  width: auto;
  max-width: 100%;
}


    .footer {
      background-color: #10062e;
      padding: 40px 0;
    }

    .footer a {
      color: #bbb;
      text-decoration: none;
    }

    .footer h6 {
      color: #feca1b;
      margin-bottom: 15px;
    }
    
.hero {
    background: linear-gradient(135deg, #4facfe);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: #fff;
  }

  @keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .hero .btn-primary {
    background-color: #021e4a;
    border: none;
  }

  .pattern-bg {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
  }

  .hero-img {
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
  }