
    :root {
      --primary: #2a5c7c;
      --secondary: #ffd166;
      --accent: #3e7a6e;
      --light-green: #e6f7f3;
      --light-blue: #c2e9f0;
      --light: #f8fdf8;
      --dark: #333;
      --white: #ffffff;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: #f5f7fa;
      overflow-x: hidden;
    }
    
    .hindi {
      font-family: 'Hind Siliguri', sans-serif;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .text-center {
      text-align: center;
    }
    
    /* Header with Slider */
    header {
      position: relative;
      height: 70vh;
      min-height: 525px;
      margin-top:120px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      overflow: hidden;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    }
    
    .header-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    
    .slide.active {
      opacity: 1;
    }
    
    .logo-text {
      font-size: 2rem;
      font-weight: 700;
      color: var(--secondary);
      text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
      display: block;
      margin-bottom: 10px;
    }
    
    header p {
      font-size: 1.4rem;
      margin-bottom: 40px;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
    }
    
    .header-buttons {
      display: flex;
      gap: 20px;
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn {
      display: inline-block;
      background: var(--secondary);
      color: var(--primary);
      padding: 15px 35px;
      border: none;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
      cursor: pointer;
    }
    
    .btn:hover {
      background: #ffb347;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 179, 71, 0.5);
    }
    
    .btn-donate {
      background: var(--white);
      color: var(--primary);
    }
    
    .btn-donate:hover {
      background: var(--light-green);
    }
    
    /* Navigation */
    nav {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }
    
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    
    .nav-logo i {
      font-size: 1.8rem;
      color: var(--primary);
    }
    
    .nav-logo span {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--primary);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 20px;
    }
    
    .nav-links a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding: 5px 0;
      transition: all 0.3s ease;
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--dark);
      padding: 10px;
    }
    
    /* About Section */
    .about {
      background: linear-gradient(to right, var(--white) 60%, var(--light-green) 40%);
      padding: 100px 0;
    }
    
    .about-container {
      display: flex;
      gap: 40px;
      align-items: center;
    }
    
    .about-text {
      width: 60%;
    }
    
    .about-image {
      width: 40%;
      position: relative;
    }
    
    .about-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin: 25px 0;
    }
    
    .feature {
      background-color: var(--light-green);
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--light-blue);
      transition: all 0.3s ease;
    }
    
    .feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
      background-color: var(--secondary);
    }
    
    .feature i {
      color: var(--accent);
    }
    
    /* Timetable Section */
    .timetable {
      background: var(--light);
      padding: 100px 0;
    }
    
    .timetable-container {
      max-width: 800px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      overflow: hidden;
      border: 3px solid var(--secondary);
    }
    
    .timetable-header {
      background: var(--primary);
      color: var(--white);
      padding: 20px;
      text-align: center;
      font-size: 1.3rem;
    }
    
    .timetable-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
    }
    
    .timetable-day {
      background: var(--light-green);
      padding: 15px;
      border-bottom: 1px solid #ddd;
      font-weight: 600;
      color: var(--primary);
    }
    
    .timetable-schedule {
      padding: 15px;
      border-bottom: 1px solid #ddd;
    }
    
    /* Services Section */
    .services {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .service-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      text-align: center;
      border-top: 5px solid var(--secondary);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .service-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .service-card h3 {
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    /* Residents/Children Slider Section */
  .resident-slider-container {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    padding: 30px 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.resident-slider {
    display: flex;
    transition: transform 0.4s ease;
}

.resident-slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
}

.resident-slide-img {
    width: 280px;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
}

.resident-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resident-slide-info h2 {
    color: #2c3e50;
    font-size: 1.8rem;
}

.resident-type {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 8px 0;
}

.resident-age {
    color: #e74c3c;
    margin-bottom: 12px;
}

.resident-story {
    color: #555;
    line-height: 1.6;
}

.resident-quote {
    margin-top: 15px;
    padding-left: 15px;
    border-left: 3px solid #2980b9;
    color: #2980b9;
    font-style: italic;
}

/* Buttons */
.resident-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.resident-prev-btn { left: 10px; }
.resident-next-btn { right: 10px; }

/* Dots */
.resident-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.resident-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.resident-dot.active {
    background: #2980b9;
}

/* Responsive */
@media(max-width: 768px) {
    .resident-slide {
        flex-direction: column;
        text-align: center;
    }
    .resident-slider-container {
        padding: 20px;
    }
}
    
    /* Donation Items Section */
    .donation-items {
      padding: 100px 0;
      background: var(--white);
    }
    
    .food-cart {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    
    .cart-item {
      background: var(--light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      text-align: center;
      padding: 20px;
      border: 2px solid transparent;
    }
    
    .cart-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      border-color: var(--secondary);
    }
    
    .item-image {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 10px;
      background: var(--white);
      padding: 10px;
    }
    
    .cart-item h3 {
      color: var(--primary);
      margin-bottom: 10px;
      font-size: 1.1rem;
    }
    
    .cart-item p {
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .quantity-control {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }
    
    .quantity-control button {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      border: none;
      background: var(--primary);
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .quantity-control button:hover {
      background: var(--accent);
      transform: scale(1.1);
    }
    
    .quantity-display {
      width: 40px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--light-green);
      border-radius: 5px;
      font-weight: 600;
      color: var(--primary);
    }
    
    .donation-summary {
      margin-top: 40px;
      padding: 30px;
      background: var(--light-green);
      border-radius: 10px;
      border: 2px solid var(--secondary);
    }
    
    .summary-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(42, 92, 124, 0.1);
    }
    
    .summary-item:last-child {
      border-bottom: none;
      font-weight: 600;
      color: var(--primary);
      font-size: 1.1rem;
    }
    
    /* Donation Section */
    .donation {
      padding: 100px 0;
      background: var(--light);
    }
    
    .donation-container {
      display: flex;
      gap: 50px;
      align-items: flex-start;
    }
    
    .donation-text {
      flex: 1;
    }
    
    .donation-form {
      flex: 1;
      background: var(--white);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      border: 3px solid var(--secondary);
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s;
    }
    
    .form-control:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(42, 92, 124, 0.1);
    }
    
    .donation-amounts {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 10px 0 15px;
    }
    
    .amount-option {
      padding: 10px 20px;
      background: var(--light-green);
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 500;
      color: var(--primary);
      user-select: none;
    }
    
    .amount-option:hover, .amount-option.active {
      background: var(--secondary);
      color: var(--primary);
      transform: translateY(-3px);
    }
    
    /* Contact Section */
    .contact {
      padding: 100px 0;
      background: var(--primary);
      color: var(--white);
    }
    
    .contact-container {
      display: flex;
      gap: 50px;
      align-items: center;
    }
    
    .contact-info {
      flex: 1;
    }
    
    .contact-info h3 {
      color: var(--secondary);
      margin-bottom: 20px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    
    .contact-item:hover {
      transform: translateX(10px);
    }
    
    .contact-item i {
      color: var(--secondary);
      font-size: 1.2rem;
      width: 30px;
    }
    
    .map-container {
      flex: 1;
      height: 400px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      color: var(--white);
      text-align: center;
      padding: 50px 0 30px;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin: 20px 0;
      flex-wrap: wrap;
    }
    
    .footer-links a {
      color: var(--secondary);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--white);
      text-decoration: underline;
    }
    
    /* Animation Keyframes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }
    
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
    .footer-social a, .nav-links a i {
  font-size: 1.3rem;
  margin: 0 8px;
  color: var(--primary);
  transition: 0.3s;
}

.footer-social a:hover, .nav-links a i:hover {
  color: #ff6600;
}

    
    /* Responsive Design */
    @media (max-width: 992px) {
      .about-container,
      .donation-container,
      .contact-container {
        flex-direction: column;
      }
      
      .about-text,
      .about-image,
      .donation-text,
      .donation-form,
      .contact-info,
      .map-container {
        width: 100%;
      }
      
      .about {
        background: var(--white);
      }
      
      header h1 {
        font-size: 2.5rem;
      }
      
      .resident-slide {
        flex-direction: column;
        min-height: auto;
      }
      
      .resident-info,
      .resident-image {
        flex: none;
        width: 100%;
      }
      
      .resident-image {
        height: 300px;
      }
    }
    
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
      }
      header {
          margin-top: 110p;
      }
      
      .nav-links.active {
        left: 0;
      }
      
      .nav-links li {
        margin: 15px 0;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .timetable-grid {
        grid-template-columns: 1fr;
      }
      
      .header-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }
      
      .food-cart {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .resident-info {
        padding: 30px;
      }
      
      .resident-name {
        font-size: 1.8rem;
      }
      
      .resident-stats {
        flex-direction: column;
        gap: 15px;
      }
    }
    
    @media (max-width: 480px) {
      header h1 {
        font-size: 2rem;
      }
       header {
          margin-top: 110p;
      }
      header p {
        font-size: 1.1rem;
      }
      
      .donation-form {
        padding: 20px;
      }
      
      .services-grid,
      .food-cart {
        grid-template-columns: 1fr;
      }
      
      .resident-info {
        padding: 20px;
      }
    }
