/* General Styling */
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  section {
    padding: 60px 0;
  }
  
  h1, h2, h3, h5 {
    font-weight: bold;
  }
  
  /* Hero Section */
  #hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    position: relative;
z-index: 1;
overflow: hidden;

  }
  
  #hero .btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease-in-out;
  }
  
  #hero .btn:hover {
    background: #fff;
    color: #2575fc;
  }
  
  /* USP Boxes */
  #usps .col-md-4 {
    margin-bottom: 30px;
  }
  
  #usps h5 {
    color: #6a11cb;
  }
  
  /* Testimonials */
  #testimonials {
    background-color: #f8f9fa;
  }
  
  #testimonials p {
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Contact Form */
  #contact input,
  #contact textarea {
    border-radius: 10px;
    border: 1px solid #ced4da;
  }
  
  #contact button {
    background: #6a11cb;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
  }
  
  #contact button:hover {
    background: #2575fc;
    color: #fff;
  }
  
  /* Footer */
  footer {
    background: #111;
    color: #aaa;
  }
  
  footer p {
    margin: 0;
  }
/* For glass effect on scroll (optional) */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
  }
 /* Reset navbar background on desktop */
.navbar {
    background-color: transparent !important;
    
  }

  
  /* Toggler icon visible */
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  /* Apply menu background ONLY on mobile */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background-color: rgba(0, 0, 0, 0.8);
      padding: 1rem;
      border-radius: 10px;
      margin-top: 0.5rem;
    }
  }
  /* Ensure navbar links are solid white */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
    color: #ffdd57 !important; /* Optional hover highlight */
  }
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  @media (min-width: 1200px) {
    .container-xl {
      max-width: 1140px;
    }
  }
  .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .subject-badge {
    display: inline-block;
    background-color: #f0f4ff;
    color: #0d6efd;
    font-weight: 600;
    text-align: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    transition: transform 0.2s ease;
  }
  
  
  .subject-badge:hover {
    transform: scale(1.03);
    background-color: #e1ebff;
  }
          
  .carousel-item {
    transition: transform 0.6s ease;
  }
  
  .card p {
    color: #333;
  }
  .animated-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .animated-circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -120px;
    animation: floatCircle 20s linear infinite;
    border-radius: 50%;
  }
  
  /* Randomize sizes and positions */
  .animated-circles li:nth-child(1) {
    left: 10%;
    width: 10px;
    height: 10px;
    animation-delay: 0s;
  }
  .animated-circles li:nth-child(2) {
    left: 20%;
    width: 14px;
    height: 14px;
    animation-delay: 2s;
  }
  .animated-circles li:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
  }
  .animated-circles li:nth-child(4) {
    left: 40%;
    width: 18px;
    height: 18px;
    animation-delay: 1s;
  }
  .animated-circles li:nth-child(5) {
    left: 55%;
    animation-delay: 3s;
  }
  .animated-circles li:nth-child(6) {
    left: 65%;
    width: 10px;
    height: 10px;
    animation-delay: 5s;
  }
  .animated-circles li:nth-child(7) {
    left: 75%;
    animation-delay: 0.5s;
  }
  .animated-circles li:nth-child(8) {
    left: 85%;
    width: 13px;
    height: 13px;
    animation-delay: 2.5s;
  }
  .animated-circles li:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
  }
  .animated-circles li:nth-child(10) {
    left: 95%;
    animation-delay: 3.5s;
  }
  
  /* Floating animation */
  @keyframes floatCircle {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0;
    }
    50% {
      opacity: 0.4;
      transform: scale(1.2);
    }
    100% {
      transform: translateY(-1000px) scale(0.9);
      opacity: 0;
    }
  }
/* Background animation container */
#background-anim {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
  }
  
  /* Individual floating circles */
  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 10s infinite ease-in-out;
  }
  
  /* Floating keyframes */
  @keyframes float {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0.8;
    }
    50% {
      transform: translateY(-60px) scale(1.2);
      opacity: 1;
    }
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.8;
    }
  }
    
    
  
          