 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('images/background.jpg');
    background-repeat: no-repeat;
    background-position: center center; /* centers the image */
    background-attachment: fixed;       /* keeps it fixed while scrolling */
    background-size: cover;             /* covers entire viewport */
    color: #333;
    line-height: 1.6;
    min-height: 100vh;                  /* ensures full height */
}


        header {
            background: linear-gradient(to right, #0073e6, #00c6ff);
            color: white;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        header h1 {
            font-size: 3rem;
            font-weight: bold;
            text-transform: uppercase;
            animation: slideIn 2s ease-in-out;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: skewX(-45deg);
            animation: shineEffect 4s infinite linear;
        }

        nav {
            display: flex;
            justify-content: center;
            background-color: rgba(0, 91, 181, 0.9);
            padding: 15px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 20px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        nav a:hover {
            color: #BF3737;
        }
		nav a::after {
        content: '';
        display: block;
        width: 0;
        height: 3px;
        background: #BF3737;
        transition: width 0.3s;
        margin-top: 4px;
}
        nav a:hover::after {
        width: 100%;
}

        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

      .image-row {
  display: flex;
  flex-wrap: wrap;              /* allow items to wrap to next line */
  justify-content: space-between;
  gap: 20px;                    /* spacing between items */
  padding: 20px;
  background-color: #fff;
}

.image-container {
  flex: 1 1 calc(33.333% - 20px);  /* 3 per row */
  max-width: calc(33.333% - 20px); /* force max width for clean rows */
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.image-container:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

        .image-container h3,
        .image-container p {
            margin: 0;
            padding: 5px 0;
            min-height: 40px;
        }

        .image-container p {
            font-size: 14px;
            color: #666;
            min-height: 50px;
        }

    .image-container img {
    width: 100%; 
    height: 200px;
    object-fit: cover; 
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	image-rendering: crisp-edges;
}
/* Card Info hidden by default */
.image-container .card-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease, padding 0.4s ease;
  background: rgba(0, 115, 230, 0.05);
  border-radius: 8px;
  margin-top: 10px;
  padding: 0 10px;
}

/* Active card shows info */
.image-container.active .card-info {
  max-height: 500px;
  opacity: 1;
  padding: 15px;
}

.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  color: #007BFF;
  margin-bottom: 30px;
}

.faq-item {
  border-radius: 8px;
  background: #fff;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #DE9292;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 15px;
  color: #444;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

..branch-wheel-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 40px;
      background: #ffffff;
    }
.branch-wheel-container h3 {
  font-size: 28px;
  color: #6b5bff;
  text-align: center;   /* 🔥 center the title */
  width: 100%;          /* make sure it spans full width */
  margin-bottom: 20px;  /* add space below the heading */
}

    .branch-layout {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      width: 100%;
      padding: 40px 0;
      flex-wrap: wrap; /* allow stacking on small screens */
    }

    /* Branch carousel container (left side) */
   .branch-carousel {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  position: relative;
  margin-top: 200px; /* 🔥 pushes wheel lower */
  transform: translateX(70px);
}

    /* Branch buttons */
    .branch-btn {
      position: absolute;
      width: 120px;
      height: 40px;
      border-radius: 20px;
      background: linear-gradient(135deg,#6b5bff,#00c6ff);
      color: #fff;
      border: none;
      cursor: pointer;
      font-weight: bold;
      text-shadow: 0 0 4px #000;
      transition: all 0.3s ease, transform 0.3s ease;
    }

    .branch-btn:hover {
      transform: scale(1.2);
      box-shadow: 0 0 15px #6b5bff, 0 0 25px #00c6ff;
    }

    .branch-btn.active {
      box-shadow: 0 0 25px #ff0080, 0 0 40px #00fff5;
      transform: scale(1.25);
      background: linear-gradient(135deg,#ff0080,#00fff5);
    }

    /* Right side: map + contact card */
    .branch-center {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
      max-width: 260px;
	  margin-left: 80px;
    }

    .branch-map iframe {
      width: 100%;
      height: 200px;
      border-radius: 12px;
      border: 2px solid #6b5bff;
      box-shadow: 0 0 15px rgba(107,91,255,0.3);
    }

    .branch-info {
      text-align: left;
      width: 100%;
      background: #ffffff;
      padding: 12px 16px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(107,91,255,0.2), 0 0 10px rgba(0,198,255,0.1);
    }

    .branch-info strong {
      font-size: 18px;
      color: #6b5bff;
      display: block;
      margin-bottom: 6px;
    }

    .branch-info p {
      margin: 4px 0;
      font-size: 14px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .branch-layout {
        flex-direction: column;   /* stack wheel on top */
        gap: 30px;
      }

      .branch-carousel {
        width: 250px;
        height: 250px;
      }

      .branch-center {
        max-width: 100%;
      }

      .branch-map iframe {
        height: 180px;
      }
    }
.social-sidebar {
  position: fixed;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  padding: 10px;
}

.social-sidebar a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: linear-gradient(to right, #0073e6, #00c6ff);
  color: white;
  font-size: 20px;
  text-decoration: none;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.social-sidebar a:hover {
  background: #0056b3;
  transform: translateX(5px);
}
.social-sidebar .whatsapp-icon {
  background: #25D366; 
}

.social-sidebar .whatsapp-icon:hover {
  background: #1ebe5d;
}

.social-sidebar .instagram-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-sidebar .instagram-icon:hover {
  opacity: 0.85;
}


        .contact-section {
            margin: 40px auto;
            text-align: center;
            padding: 20px;
            background: #f4f4f9;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .contact-section a {
            display: inline-block;
            text-decoration: none;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #0073e6, #00c6ff);
            padding: 10px 20px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .contact-section a:hover {
            background: linear-gradient(to right, #005bb5, #0073e6);
        }

        .contact-section p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

.contact-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #007BFF;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.contact-float-btn:hover {
  background-color: #0056b3;
}

.contact-form-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 320px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 20px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.contact-form-popup h3 {
  margin-top: 0;
  color: #007BFF;
}

.contact-form-popup input,
.contact-form-popup textarea {
  width: 94%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form-popup button {
  background-color: #007BFF;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

.contact-form-popup button:hover {
  background-color: #0056b3;
}
.lb-image {
  max-width: 90vw !important;
  max-height: 80vh !important;
  object-fit: contain;
}

.lightboxOverlay,
.lightbox {
  overflow-y: auto !important;
}
#main-nav {
  position: sticky;
  text-align: center;
}

#main-nav a {
  margin: 0 10px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

#main-nav.scrolled {
  background-color: #94BBEB; 
 
}
#main-nav a:hover {
  color: #94EBE4;
}
.search-wrapper {
  position: relative;        /* stays inside nav */
  margin-left: auto;         /* pushes search to the far right */
  display: flex;
  align-items: center;
  gap: 8px;
}

#searchIcon {
  font-size: 20px;
  cursor: pointer;
  color: white;
  background: #38141E;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#searchIcon:hover {
  background: #912D2D;
  transform: scale(1.1);
}

#searchBox {
  width: 0;
  opacity: 0;
  padding: 8px 12px;
  border: none;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  backdrop-filter: blur(8px);
  color: black;
}

#searchBox.expanded {
  width: 200px;
  opacity: 1;
}

mark {
  background: #ffeb3b;
  color: black;
  padding: 2px 4px;
  border-radius: 4px;
}

.modern-footer {
  width: 100%;
  background: rgba(0, 44, 99, 0.85);
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 999;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-content a {
  color: #bde0ff;
  text-decoration: none;
  margin: 0 8px;
}

.footer-content a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.duta {
  font-weight: bold;
  color: #00cfff;
  font-style: italic;
}

.footer-left {
  text-align: left;
  flex: 1;
}

.footer-center {
  text-align: center;
  flex: 1;
}

.footer-right {
  text-align: right;
  flex: 1;
}


@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
  }
}
.hero-section {
    max-width: 95vw; 
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(to right, rgba(0, 91, 187, 0.9), rgba(0, 91, 187, 0.6));
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    color: white;
    text-align: center;
}



.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
  animation: slideDown 1.2s ease-out;
}

.hero-section p {
  font-size: 1.3rem;
  color: #e0f7fa;
  margin-top: 10px;
  animation: fadeIn 2s ease-out;
}

/* Floating background glow */
.hero-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,255,255,0.3), transparent 70%);
  animation: float 10s infinite linear;
  z-index: 0;
}

/* Keyframes */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideDown {
  0% {opacity: 0; transform: translateY(-50px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes float {
  0% {transform: translate(0, 0);}
  50% {transform: translate(20px, 20px);}
  100% {transform: translate(0, 0);}
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.social-resp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.social-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.social-card:hover {
  transform: translateY(-5px);
}

.social-card.open .card-body {
  max-height: 1000px;
  padding: 15px;
  opacity: 1;
}

.card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.15);
  color: #0073e6;
  font-size: 1.1rem;
}

.card-header i {
  font-size: 1.5rem;
}

.card-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.card-body img {
  width: 100%;
  border-radius: 8px;
  margin: 10px 0;
  object-fit: cover;
  max-height: 180px;
}
.csr-highlights {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.toggle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.toggle-card {
  flex: 1 1 300px;
  background: #f2f9ff;
  border: 2px solid #0073e6;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.toggle-card:hover {
  background: #e6f3ff;
  transform: scale(1.02);
}

.toggle-card .expanded {
  display: none;
  margin-top: 10px;
}

.toggle-card.active .collapsed {
  display: none;
}

.toggle-card.active .expanded {
  display: block;
}
.glass-section {
  margin: 80px auto;
  padding: 60px 40px;
  max-width: 1300px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 91, 187, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.1s ease;
}

.section-title {
  font-size: 2.8rem;
  color: #0073e6;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.impact-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 360px;
  width: 100%;
  cursor: pointer;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

.impact-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.impact-content {
  padding: 20px;
  text-align: center;
}

.impact-content h3 {
  font-size: 1.4rem;
  color: #C71C1A;
  margin-bottom: 10px;
}

.impact-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.quote {
  display: block;
  font-style: italic;
  font-size: 0.9rem;
  color: #0073e6;
  margin-top: 10px;
  opacity: 0.8;
}

/* Modal (Diary View) */
.book-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.book-modal.active {
  display: flex;
  opacity: 1;
}

.book-content {
  width: 95%;
  max-width: 1200px;
  height: 90%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-modal.active .book-content {
  transform: scale(1);
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4.2rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 3000;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #C71C1A;
}

/* Loading Animation */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #0073e6;
  display: none;
}
.book-modal.active .loading {
  display: block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Swiper (Diary Pages) */
.swiper {
  width: 100%;
  height: 100%;
  flex: 1;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px;
  background: #CFCFCF;
  overflow-y: auto;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide h2, .swiper-slide p, .swiper-slide img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.swiper-slide-active h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.swiper-slide-active p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.swiper-slide-active img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.swiper-slide h2 {
  font-size: 1.8rem;
  margin: 10px 0 15px;
  color: #0073e6;
}

.swiper-slide p {
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0;
  max-width: 750px;
  color: #444;
}

.swiper-slide img {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 40vh;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Swiper controls */
.swiper-button-next, .swiper-button-prev {
  color: #0073e6;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 12px;
  transform: scale(1.2);
  transition: background 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: rgba(199, 28, 26, 0.9);
}
.swiper-pagination-bullet {
  background: #0073e6;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #C71C1A;
  opacity: 1;
}

    /* Responsive */
    @media (max-width: 1024px) {
      .book-content { width: 98%; height: 85%; }
      .swiper-slide img, .swiper-slide canvas, .swiper-slide .map-container { max-height: 35vh; height: 250px; }
    }

    @media (max-width: 768px) {
      .glass-section { padding: 40px 20px; }
      .section-title { font-size: 2.2rem; }
      .section-subtitle { font-size: 1rem; }
      .swiper-slide h2 { font-size: 1.4rem; }
      .swiper-slide p { font-size: 0.95rem; padding: 0 10px; }
      .swiper-slide img, .swiper-slide canvas, .swiper-slide .map-container { max-height: 30vh; height: 200px; }
    }

    @media (max-width: 480px) {
      .impact-card { max-width: 100%; }
      .swiper-slide h2 { font-size: 1.2rem; }
      .swiper-slide p { font-size: 0.9rem; }
      .swiper-slide img, .swiper-slide canvas, .swiper-slide .map-container { max-height: 25vh; height: 150px; }
      .swiper-button-next, .swiper-button-prev { padding: 8px; transform: scale(1); }
    }

.donate-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.donate-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 30px;
  background: linear-gradient(135deg, #f7f9ff, #e8f1ff);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  text-align: center;
}

.donate-card:hover {
  transform: translateY(-6px);
}

.donate-card h3 {
  color: #0073e6;
  margin-bottom: 10px;
}

.donate-card p {
  color: #444;
  margin-bottom: 20px;
  font-size: 1rem;
}

.btn-volunteer,
.btn-donate {
  display: inline-block;
  padding: 12px 20px;
  background-color: #C71C1A;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-donate {
  background-color: #0073e6;
}

.btn-volunteer:hover {
  background-color: #A31210;
}

.btn-donate:hover {
  background-color: #005bb5;
}
.god-tier-section {
  padding: 80px 40px;
  background: linear-gradient(to right, rgba(235,245,255,0.7), rgba(250,250,250,0.9));
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
}

.god-header {
  text-align: center;
  margin-bottom: 60px;
}

.god-header h2 {
  font-size: 2.7rem;
  color: #003f7f;
  margin-bottom: 10px;
  position: relative;
}

.god-header p {
  font-size: 1.2rem;
  color: #444;
}

.god-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.god-card {
  background: #FFF5F5;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.god-card:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-header img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.card-header h3 {
  font-size: 1.6rem;
  color: #002f6c;
}

.card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.4s ease;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
}

.god-card.active .card-content {
  max-height: 1000px;
  padding-top: 20px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.service-images {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.service-images img {
  width: 140px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-images img:hover {
  transform: scale(1.05);
}
#hyprop-robot {
  position: fixed;
  right: 30px;
  bottom: 35%;
  z-index: 9999;
  width: 90px;
  height: 150px;
  cursor: pointer;
  animation: floatEffect 4s ease-in-out infinite;
}

.robot-mouth {
  width: 40px;
  height: 30px;
  margin: 4px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.robot-mouth svg {
  width: 100%;
  height: 100%;
}

.robot-mouth path {
  stroke: #cc0000;
  stroke-width: 4;
  fill: none;
}

.robot-arm {
  width: 14px;
  height: 40px;
  background: #0073e6;
  position: absolute;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.left-arm {
  left: -12px;
  transform-origin: top center;
  animation: attentionWave 8s ease-in-out infinite;
}

.right-arm {
  right: -12px;
  transform-origin: top center;
  animation: attentionWave 8s ease-in-out infinite;
}


@keyframes attentionWave {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(-25deg); }
  90% { transform: rotate(0deg); }
  95% { transform: rotate(-15deg); }
}


#hyprop-robot:hover .robot-body {
  animation: colorShift 2s linear infinite alternate;
}

@keyframes colorShift {
  0% { background: linear-gradient(160deg, #ff9a9e, #fad0c4); }
  25% { background: linear-gradient(160deg, #a18cd1, #fbc2eb); }
  50% { background: linear-gradient(160deg, #84fab0, #8fd3f4); }
  75% { background: linear-gradient(160deg, #c2e9fb, #a1c4fd); }
  100% { background: linear-gradient(160deg, #fccb90, #d57eeb); }
}

@keyframes floatEffect {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.robot-body {
  position: relative;
  width: 85%;
  height: 47%;
  background: linear-gradient(160deg, #d1ecff, #a8d0ff);
  border-radius: 50% 50% 30% 30% / 55% 55% 45% 45%;
  border: 3px solid #0073e6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.robot-arm {
  width: 12px;
  height: 42px;
  background: #0073e6;
  position: absolute;
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.left-arm {
  left: -10px;
  transform: rotate(-10deg);
  
}

.right-arm {
  right: -10px;
  transform-origin: top center;
  animation: attentionWave 8s ease-in-out infinite;
}

@keyframes attentionWave {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(-25deg); }
  90% { transform: rotate(0deg); }
  95% { transform: rotate(-15deg); }
}


.robot-eyes {
  display: flex;
  justify-content: space-around;
  padding: 10px 10px 0;
}

.eye {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #0073e6;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.pupil {
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  transition: transform 0.1s ease;
}



.robot-hand {
  width: 10px;
  height: 30px;
  background: #0073e6;
  position: absolute;
  border-radius: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.left-hand {
  left: -10px;
  transform: rotate(-10deg);
  animation: attentionWave 2s ease-in-out;
}

.right-hand {
  right: -10px;
  transform-origin: top center;
  animation: wave 4s infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-20deg); }
  40% { transform: rotate(0deg); }
  60% { transform: rotate(-15deg); }
}


#robot-call-box {
  position: fixed;
  right: 140px;
  bottom: 38%;
  width: 200px;
  background: #003366;
  color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 9998;
  transition: opacity 0.3s ease;
}
#robot-call-box.hidden {
  display: none;
}
#robot-call-box h3 {
  margin-top: 0;
  color: #ffcc00;
}
#hyprop-robot:hover .robot-mouth {
  transform: scaleY(1.2);
}

 :root {
      --primary: #1e90ff;
      --dark: #0b0f1c;
      --light: #f4f8fb;
      --glass-bg: rgba(255, 255, 255, 0.08);
      --blur: blur(18px);
    }

    * {margin: 0; padding: 0; box-sizing: border-box;}
    body {
      font-family: 'Montserrat', sans-serif;
      background: ;
      color: #240C0C;
      overflow-x: hidden;
    }

   
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 3rem;
      background: var(--glass-bg);
      backdrop-filter: var(--blur);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
  nav .logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);

  /* 👇 Force it to the left */
  margin-right: auto;  
}

    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    nav ul li a {
      color: var(--light);
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }
    nav ul li a:hover {color: var(--primary);}

    
    .hero {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
 background: linear-gradient(to bottom, rgba(0,0,0,0.6), var(--dark)),
                url("images/hero.jpg") center/cover no-repeat;
    background-size: cover;      position: relative;
      overflow: hidden;
    }
    .hero h1 {
      font-size: 3.5rem;
      font-family: 'Orbitron', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--light);
    }
    .hero p {
      margin-top: 1rem;
      font-size: 1.3rem;
      max-width: 700px;
    }
    .hero .btn {
      margin-top: 2rem;
      padding: 0.8rem 2rem;
      background: var(--primary);
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }
    .hero .btn:hover {background: #F0290C;}

    
    .section {
      padding: 6rem 2rem;
      max-width: 1200px;
      margin: auto;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
      gap: 2rem;
    }
    .card {
      background: var(--glass-bg);
      backdrop-filter: var(--blur);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(0,0,0,0.2);
      transition: transform 0.5s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .card:hover {transform: translateY(-10px) scale(1.03);}
    .card img {
      width: 100%;
      border-radius: 15px;
      margin-bottom: 1rem;
      transition: 0.4s;
    }
    .card img:hover {transform: scale(1.05);}
    .card h3 {margin-bottom: 0.8rem; color: var(--primary);}
    .card p {line-height: 1.6;}

   
    .timeline {
      margin-top: 5rem;
      border-left: 3px solid var(--primary);
      padding-left: 2rem;
    }
    .timeline-item {
      margin-bottom: 2rem;
      position: relative;
    }
    .timeline-item::before {
      content: "";
      position: absolute;
      left: -1.1rem;
      top: 0.4rem;
      width: 15px; height: 15px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 10px var(--primary);
    }
    .timeline-item h4 {color: var(--primary); margin-bottom: 0.5rem;}
	span {
  color: white;
  font-size: 1.0em;
}

@keyframes blink-arrow {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}


.arrow {
  display: inline-block; 
  color: white; 
  font-size: 1.2rem; 
  font-weight: bold;
  animation: blink-arrow 2.5s infinite; 
}
/* === BUTTON === */
/* === TOGGLE BUTTON === */
.survey-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #6b5bff, #00c6ff);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 2px rgba(0,0,0,0.5);
  box-shadow: 0 4px 12px rgba(107,91,255,0.5), 0 4px 12px rgba(0,198,255,0.5);
  transition: all 0.3s ease;
  z-index: 9999;
  opacity: 0;
  transform: translateY(40px);
}

.survey-toggle.visible {
  opacity: 1;
  transform: translateY(0);
}

.survey-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(107,91,255,0.6), 0 6px 18px rgba(0,198,255,0.6);
}

/* === PANEL === */
.survey-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  max-height: 600px;
  background: rgba(248,248,248,0.9); /* soft frosted glass */
  backdrop-filter: blur(10px); /* frosted effect */
  border: 2px solid rgba(107,91,255,0.3); /* subtle soft neon border */
  border-radius: 24px;
  box-shadow: 
      0 8px 24px rgba(0,0,0,0.12); /* soft shadow for depth */
  padding: 28px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68,-0.55,0.27,1.55);
  z-index: 9998;
  overflow-y: auto;
  color: #222222; /* dark text for readability */
}


/* Active state */
.survey-panel.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* === HEADER WITH GLITCH EFFECT === */
.survey-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}

/* Glitch text animation */
.survey-title::before,
.survey-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  clip: rect(0, 0, 0, 0);
}

.survey-title::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
  color: #6b5bff;
}

.survey-title::after {
  animation: glitchBottom 2.5s infinite linear alternate-reverse;
  color: #00c6ff;
}

@keyframes glitchTop {
  0% { clip: rect(0, 600px, 2px, 0); transform: translate(-2px,-2px); }
  20% { clip: rect(4px, 600px, 8px, 0); transform: translate(2px,2px); }
  40% { clip: rect(10px, 600px, 14px, 0); transform: translate(-2px,0); }
  60% { clip: rect(6px, 600px, 12px, 0); transform: translate(2px,-2px); }
  80% { clip: rect(0, 600px, 2px, 0); transform: translate(0,2px); }
  100% { clip: rect(2px, 600px, 6px, 0); transform: translate(-2px,0); }
}

@keyframes glitchBottom {
  0% { clip: rect(15px, 600px, 18px, 0); transform: translate(1px,1px); }
  20% { clip: rect(12px, 600px, 16px, 0); transform: translate(-1px,0); }
  40% { clip: rect(14px, 600px, 20px, 0); transform: translate(1px,-1px); }
  60% { clip: rect(15px, 600px, 18px, 0); transform: translate(0,1px); }
  80% { clip: rect(12px, 600px, 16px, 0); transform: translate(-1px,1px); }
  100% { clip: rect(14px, 600px, 20px, 0); transform: translate(1px,0); }
}

/* === FORM === */
.survey-form { display: flex; flex-direction: column; gap: 12px; }
.survey-label { font-weight: 600; font-size: 0.85rem; color: #444; }
.survey-input, textarea, select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: rgba(240,240,240,0.9);
  color: #000000;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.survey-input:focus, textarea:focus, select:focus {
  border-color: #6b5bff;
  box-shadow: 0 2px 8px rgba(107,91,255,0.2);
  outline: none;
}
.survey-welcome span {
  color: #000000; /* black text */
  font-size: 0.95rem;
}

/* === STAR RATING === */
.star-rating { display: flex; flex-direction: row-reverse; justify-content: center; font-size: 2rem; gap: 6px; }
.star-rating input { display: none; }
.star-rating label { cursor: pointer; color: #888; transition: color 0.3s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #ffaa00; }

/* === SUBMIT BUTTON === */
.survey-btn {
  background: linear-gradient(135deg, #6b5bff, #00c6ff); /* cyberpunk gradient */
  color: #fff; /* readable text */
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(107,91,255,0.4), 0 0 20px rgba(0,198,255,0.3); /* soft neon glow */
  transition: all 0.3s ease;
}

.survey-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(107,91,255,0.5), 0 0 28px rgba(0,198,255,0.4); /* stronger hover glow */
}


@font-face {
  font-family: 'YourFont';
  src: url('yourfont.woff2') format('woff2');
  font-display: swap;
}
</style>