/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #1a237e;
    --secondary-color: #ff6b6b;
    --accent-color: #4fc3f7;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #4fc3f7 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    
}

html {
    scroll-behavior: smooth;
  }

body {
    line-height: 1.6;
    color: darkblack;
    background-color: var(--light-bg);
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #0066cc;
      color: white;
      padding: 10px 20px;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 50px;
      margin-right: 10px;
      border-radius: 50px;
    }

    .trust-text h1 {
      font-size: 28px;
      margin: 0;
    }

    .trust-text p {
      font-size: 15px;
      margin: 0;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 4px 0;
      transition: 0.4s;
    }

    @media screen and (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0066cc;
        flex-direction: column;
        text-align: center;
        z-index: 1000;
        font-size: 1.8rem;
      }

      .nav-links.show {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }

/* Hero Section */
.hero {
    background: var(--gradient-primary), url('images/main.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 6.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.3s backwards;
}

   .cta-button {
    background: linear-gradient(135deg, #ffcc00 0%, #ffd700 100%) !important;
    color: black;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}


.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Mission */
.mission{
    text-align: justify;
    color: #666;
    font-size: 2rem;
    line-height: 1.8;
}

.mission h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 3rem;
    position: relative;
}
/* values */
.values-container {
  max-width: 100%;
  margin: auto;
}

.values-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: 3rem;
  position: relative;
}

ul.values-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 2rem;               /* Keep bullet indent */
  text-align: justify;              /* Justify left & right inside each <li> */
  max-width: 900px;                 /* Optional: limits width for readability */
  margin: 0 auto;                   /* Horizontally center the entire block */
}

ul.values-list li {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.6;
}

ul.values-list strong {
  color: #023e8a;
}

@media (max-width: 600px) {
  .values-container h2 {
    font-size: 3rem;
  }

  ul.values-list li {
    font-size: 2.5rem;
  }
}

:root {
  /* Pale tints for service panels */
  --vision-bg:      #f3e5f5;
  --swasthya-bg:    #fff8e1;
  --education-bg:   #ffebee;
  --udyogini-bg:    #fff3e0;
  --hunger-bg:      #e3f2fd;
  --kalajyoti-bg:   #e8f5e9;

  /* Rich logo colors for buttons */
  --vision-btn:     #2e1b7a;
  --swasthya-btn:   #e9cb3e;
  --education-btn:  #d84838;
  --udyogini-btn:   #f28c28;
  --hunger-btn:     #317eb5;
  --kalajyoti-btn:  #54a65c;
}

/* =================== Desktop Styles =================== */
/* Services Section */
.services {
  padding: 8rem 5%;
  background-color: var(--light-bg);
}
.services h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
  font-size: 3rem;
}

/* Core Service Detail */
.service-detail {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 9rem;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.service-detail:hover { transform: translateY(-10px); }

.service-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail:hover .service-image img {
  transform: scale(1.1);
}

/* Content */
.service-content {
  flex: 1;
  padding: 2rem;
}
.service-content h2,
.service-content h3 {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.service-content p {
  color: #666;
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Feature Pills (desktop fallback) */
.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(79,195,247,0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.service-features li:hover {
  transform: translateX(10px);
}
.service-features i {
  font-size: 2rem;
  color: var(--accent-color);
}

/* Stats Cards */
.service-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.service-stats .stat {
  flex: 1;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.service-stats .stat:hover {
  transform: translateY(-5px);
}
.service-stats .counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.service-stats p {
  font-size: 2.4rem;
  color: #666;
}

/* View More Button Base */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  margin-top: 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}
.view-more-btn i {
  transition: transform 0.3s ease;
}
.view-more-btn:hover i {
  transform: translateX(5px);
}

/* Panel Backgrounds */
.vision-service    { background: var(--vision-bg)     !important; }
.swasthya-service  { background: var(--swasthya-bg)   !important; }
.education-service { background: var(--education-bg)  !important; }
.udyogini-service  { background: var(--udyogini-bg)   !important; }
.hunger-service    { background: var(--hunger-bg)     !important; }
.kalajyoti-service { background: var(--kalajyoti-bg)  !important; }

/* Button Colors */
.vision-service .view-more-btn    { background: var(--vision-btn);     color: #fff; }
.swasthya-service .view-more-btn  { background: var(--swasthya-btn);   color: #333; }
.education-service .view-more-btn { background: var(--education-btn);  color: #fff; }
.udyogini-service .view-more-btn  { background: var(--udyogini-btn);   color: #fff; }
.hunger-service .view-more-btn    { background: var(--hunger-btn);     color: #fff; }
.kalajyoti-service .view-more-btn { background: var(--kalajyoti-btn);  color: #fff; }

/* Button Hover States */
.vision-service .view-more-btn:hover    { background: #271565; transform: translateY(-3px); }
.swasthya-service .view-more-btn:hover  { background: #bfa233; transform: translateY(-3px); }
.education-service .view-more-btn:hover { background: #b3362f; transform: translateY(-3px); }
.udyogini-service .view-more-btn:hover  { background: #c66b1f; transform: translateY(-3px); }
.hunger-service .view-more-btn:hover    { background: #1f5a95; transform: translateY(-3px); }
.kalajyoti-service .view-more-btn:hover { background: #3d7c4d; transform: translateY(-3px); }


/* ============== Mobile Styles (≤768px) ============== */
@media (max-width: 768px) {
  /* Stack image/content */
  .service-detail {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .service-image img {
    width: 300px;
    height: 210px;
  }

  /* Convert pills to wrap-flex */
  .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  .service-features li {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
  }

  /* Stats full-width */
  .service-stats {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .service-stats .stat {
    flex: 1 1 100%;
  }

  /* Button full-width & smaller */
  .view-more-btn {
    width: 100%;
    font-size: 1.6rem;
    padding: 1rem 0;
    margin-top: 2rem;
    justify-content: center;
  }
}

/* Gallery “View More” Button */
.gallery-btn {
  display: inline-block;
  min-width: 160px;
  padding: 0.6rem 1rem;
  margin: 1.5rem auto 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff !important;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.gallery-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.gallery-btn i {
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}

.gallery-btn:hover i {
  transform: translateX(3px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .gallery-btn {
    min-width: 140px;
    padding: 0.5rem 0.8rem;
    font-size: 1.2rem;
  }
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: white;
    position: relative;
}

.about::before {
    content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.about h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 3rem;
    position: relative;
    text-align: center;

}
.about p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    }

@media (max-width: 768px) {
  .about {
    padding: 3rem 2%;
  }

  .about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .about p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-content {
    padding: 0 10px;
  }
}

/* Testimonials*/
.testimonials-section {
  padding: 2rem;
  background: #f9f9f9;
  text-align: center;
}
.testimonials-section h2 {
  color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 3rem;
    position: relative;
    text-align: center;
}
.testimonial-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 2rem;
}
@media(min-width: 768px) {
  .testimonial-container {
    flex-direction: row;
  }
}
.testimonial {
  background: #fff;
  border-left: 4px solid #007BFF;
  padding: 1rem;
}
.testimonial footer {
  text-align: right;
  font-weight: bold;
  margin-top: 0.5rem;

}
.bg{
 background: ghostwhite;
}

/* /* Donation Section */
.donate {
    padding: 8rem 5%;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
    font-size: 2rem;
}
/* Wrap the button in a container that limits its width */
.visit-button-wrapper {
  width: 100%;
  max-width: 240px;      /* adjust as desired */
  margin: 0 auto;        /* center horizontally */
}

/* Make the button fill its wrapper but not exceed it */
.visitor-btn {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--primary-color);
}

/* Tweak hover for the new size */
.visitor-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Mobile: keep the same constraint but smaller font */
@media (max-width: 600px) {
  .visit-button-wrapper {
    max-width: 80%;      /* relative to viewport */
  }
  .visitor-btn {
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
  }
}
/* Donate Button Wrapper */
.donate-button-wrapper {
  width: 100%;
  max-width: 240px;    /* adjust to taste */
  margin: 2rem auto;   /* vertical spacing + center */
}

/* Donate Button Wrapper */
.donate-button-wrapper {
  width: 100%;
  max-width: 240px;   /* same as visitor-btn wrapper */
  margin: 2rem auto;  /* vertical spacing + center */
}

/* Donate Button (identical to visitor-btn) */
.donate-btn {
  display: block;
  width: 100%;
  padding: 1rem 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.donate-btn i {
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}
.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.donate-btn:hover i {
  transform: translateX(3px);
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .donate-button-wrapper {
    max-width: 80%;
  }
  .donate-btn {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Contact Section */
.contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.contact p {
    font-size: 2.2rem;
}

.contact-details {
  flex: 1;
  min-width: 250px;
}

s
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
}


/* Footer */
footer {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 2.5rem;
    text-decoration: none;

}

@media (max-width: 768px) {
  footer p{
    padding: 1rem;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
  }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: initial;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .donation-form {
        padding: 2rem;
    }
}
/* partners */
 /* Title Style */
.gallery-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
  font-size: 3rem;
}

/* Grid Layout */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

/* Image Style */
.gallery-preview-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.gallery-preview-grid img:hover {
  transform: scale(1.1); /* Zoom in */
}
/* ✅ Responsive Mobile Layout */
@media (max-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 480px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr; /* 1 column on small phones */
  }

  .gallery-preview-grid img {
    height: 160px;
  }

  .gallery-title {
    font-size: 2rem;
  }

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.partner-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
}

.partner-card h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-card p {
    color: #666;
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.program-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.program-features li:hover {
    transform: translateX(10px);
}

.program-features i {
    font-size: 2rem;
    color: var(--accent-color);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.stat-item p {
    color: #666;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .partner-card {
        padding: 2rem;
    }

    .partner-logos {
        flex-direction: column;
        gap: 2rem;
    }

    .program-features {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* Hunger Program Specific Styles */
.hunger-program {
    margin-top: 4rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.hunger-program .program-features li {
    background: rgba(255, 107, 107, 0.1);
}

.hunger-program .program-features i {
    color: var(--secondary-color);
}

.hunger-program .stat-item {
    background: rgba(255, 107, 107, 0.05);
}

.hunger-program .stat-item:hover {
    background: rgba(255, 107, 107, 0.1);
}

.hunger-program .partner-logos img {
    height: 100px;
}

/* Update Partners Section Layout */
.partners-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (max-width: 768px) {
    .hunger-program {
        margin-top: 2rem;
    }
    
    .partners-content {
        gap: 2rem;
    }
}

/* Vision Program Specific Styles */
.vision-program {
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.vision-program .program-features li {
    background: rgba(33, 150, 243, 0.1);
}

.vision-program .program-features i {
    color: #2196f3;
}

.vision-program .stat-item {
    background: rgba(33, 150, 243, 0.05);
}

.vision-program .stat-item:hover {
    background: rgba(33, 150, 243, 0.1);
}

/* Tribal Program Specific Styles */
.tribal-program {
    background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.tribal-program .program-features li {
    background: rgba(76, 175, 80, 0.1);
}

.tribal-program .program-features i {
    color: #4caf50;
}

.tribal-program .stat-item {
    background: rgba(76, 175, 80, 0.05);
}

.tribal-program .stat-item:hover {
    background: rgba(76, 175, 80, 0.1);
}

/* Update Partners Section Layout */
.partners-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.partner-card {
    margin-bottom: 2rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .partners-content {
        gap: 2rem;
    }
  .image-container {
      display: flex;
      gap: 10px; /* space between images */
    }
    .partner-card {
        margin-bottom: 1rem;
    }

    .vision-program,
    .tribal-program,
    .hunger-program {
        margin-top: 1rem;
    }
}

/* Animation Enhancements */
.partner-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.partner-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-features li:hover {
    transform: translateX(10px) scale(1.05);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
} 
.body { font-family: Arial; background: #f4f4f4; padding: 20px; }
        .form-container {
            background: #fff; padding: 20px; border-radius: 10px;
            max-width: 400px; margin: auto; box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .label { display: block; margin-top: 10px; color: darkblack;}
        .input[type="text"], .input[type="email"], .input[type="tel"], .input[type="number"] {
            width: 100%; padding: 8px; margin-top: 5px; border: 1px solid #ccc; border-radius: 5px;
        }
        .button {
            margin-top: 15px; padding: 10px 20px;
            background-color: green; color: darkblack; border: none; border-radius: 5px;
            cursor: pointer;
        }
        .message { margin-top: 10px; }
        .form-card {
    background: #e0e5ec;
    padding: 30px;
    border-radius: 20px;
    box-shadow:  8px 8px 16px #a3b1c6, -8px -8px 16px #ffffff;
    width: 350px;
  }
  .form-card h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  .neumorphic {
    background: #e0e5ec;
    border: none;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: inset 4px 4px 8px #a3b1c6, inset -4px -4px 8px #ffffff;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s;
  }
  .neumorphic:focus {
    outline: none;
    box-shadow: inset 2px 2px 4px #a3b1c6, inset -2px -2px 4px #ffffff;
  }
  button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    color: #555;
    box-shadow: 4px 4px 8px #a3b1c6, -4px -4px 8px #ffffff;
    cursor: pointer;
    transition: box-shadow 0.3s;
  }
  button:hover {
    box-shadow: inset 4px 4px 8px #a3b1c6, inset -4px -4px 8px #ffffff;
  }

  
        .service-detail-page {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
        }
        
        .service-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .service-header h1 {
            color: #2196f3;
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .service-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .program-details {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .program-details h2 {
            color: #2196f3;
            margin-bottom: 2rem;
        }
        
        .program-details p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            margin-top: 2rem;
            background: #2196f3;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .back-button:hover {
            background: #1976d2;
            transform: translateY(-3px);
        }

       #scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #007BFF;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s ease;
  }

  #scrollToTopBtn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
  }
