body {
    font-family: 'Inter', sans-serif;
    background: #F5F7FA;
    color: #2C2C2C;
    scroll-behavior: smooth;
  }

  /* Navbar */
  .navbar {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  .navbar .nav-link {
    color: #2C2C2C !important;
    font-weight: 500;
    font-size: 14px;
    margin: 0 10px;
  }
  .navbar .nav-link:hover {
    color: #6C63FF !important;
  }
  .navbar .btn-sm {
    margin-left: 5px;
    border-radius: 20px;
    font-weight: 600;
  }

  /* Hero */
  .hero {
    background: linear-gradient(135deg, #6C63FF, #00C9A7);
    color: white;
    text-align: center;
    padding: 120px 20px 100px;
    border-radius: 0 0 60px 60px;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: 800;
  }
  .hero p {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  /* Section Box */
  .section-box {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin: auto;
    max-width: 900px;
  }

  /* Form Styles */
  .form-floating > input, 
  .form-floating > select, 
  .form-floating > textarea {
    height: 50px;
  }

  /* Custom Button */
  .btn-custom {
    background: #FF6584;
    color: white;
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
  }
  .btn-custom:hover {
    background: #6C63FF;
    transform: scale(1.07);
  }

  /* Footer */
  footer {
    background: #2C2C2C;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
  }
  footer a {
    color: #FF6584;
    text-decoration: none;
  }
  footer a:hover {
    color: #00C9A7;
  }
  /* Section Titles */
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #2C2C2C;
    }

    /* Cards */
    .icon-box, .donation-card {
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(15px);
      border-radius: 18px;
      padding: 25px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      transition: 0.3s;
      height: 100%; /* equal height */
    }
    .icon-box:hover, .donation-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    }
    .icon-box i, .donation-card i {
      font-size: 2.4rem;
      color: #6C63FF;
      margin-bottom: 15px;
    }

    /* Gallery */
    .gallery img {
      border-radius: 15px;
      transition: 0.4s;
    }
    .gallery img:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    
    
    /* Dropdown container */
.navbar .dropdown-menu {
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown.show .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: dropdownFade 0.35s ease forwards;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar .dropdown-item:hover {
  background: #6C63FF;
  color: #fff;
  border-radius: 8px;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

/* Dropdown items */
.navbar .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px; /* icon spacing */
  font-size: 14px;
  color: #2C2C2C;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect with background and slight move */
.navbar .dropdown-item:hover {
  background: #6C63FF;
  color: #fff;
  border-radius: 8px;
  transform: translateX(5px);
}

/* Optional: subtle icon animation on hover */
.navbar .dropdown-item i {
  transition: transform 0.3s ease;
}

.navbar .dropdown-item:hover i {
  transform: rotate(-15deg) scale(1.1);
}

/* Smooth arrow indicator (optional) */
.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.navbar .dropdown:hover > .dropdown-toggle::after {
  transform: rotate(180deg);
}
