/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-section .col-lg-6 {
  flex: 1 1 350px;
  min-width: 300px;
  max-width: 600px;
}

.contact-section .contact-info {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contact-section .contact-info h4 {
  color: #2c5aa0;
  margin-bottom: 30px;
}

.contact-section .contact-info div {
  margin-bottom: 20px;
  color: #333;
  font-size: 16px;
}

.contact-section .contact-info i {
  color: #2c5aa0;
  margin-right: 15px;
  width: 20px;
}

.contact-section .social-icons {
  margin-top: 30px;
}
.contact-section .social-icons a {
  color: #2c5aa0;
  font-size: 24px;
  margin-right: 15px;
  transition: color 0.3s;
}
.contact-section .social-icons a:last-child {
  margin-right: 0;
}
.contact-section .social-icons a:hover {
  color: #fbbf24;
}

.contact-section form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-section .form-control {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 16px;
}
.contact-section .btn-primary {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .contact-section .row {
    flex-direction: column;
    gap: 20px;
  }
  .contact-section .col-lg-6 {
    max-width: 100%;
  }
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Top Strip */
.top-strip {
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fbbf24;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* position: sticky; */
  /* top: 0; */
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Site logo image styling (used in header and footer) */
.site-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.org-info h1 {
  font-size: 32px;
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #2c5aa0; /* Fallback for browsers that don't support background-clip */
  margin-bottom: 8px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(44, 90, 160, 0.1);
  letter-spacing: -0.5px;
  line-height: 1.2;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(44, 90, 160, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(44, 90, 160, 0.6));
  }
}

.org-info .hindi-name {
  font-size: 24px;
  background: linear-gradient(135deg, #dc2626, #ea580c, #f59e0b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #dc2626; /* Fallback */
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
  font-family: "Devanagari Sangam MN", "Noto Sans Devanagari", sans-serif;
  position: relative;
}

.org-info .hindi-name::before {
  content: "🕉️";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
  animation: omRotate 4s linear infinite;
}

@keyframes omRotate {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.org-info .reg-no {
  font-size: 16px;
  color: #059669;
  font-weight: 600;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.15),
    rgba(16, 185, 129, 0.15)
  );
  border-radius: 25px;
  border: 2px solid rgba(5, 150, 105, 0.3);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.org-info .reg-no::before {
  content: "📋";
  font-size: 14px;
  margin-right: 5px;
}

.org-info .reg-no::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 2s;
}

.org-info .reg-no:hover::after {
  left: 100%;
}

/* Mobile Donate Button */
.mobile-donate-btn {
  display: none;
  margin-top: 15px;
  text-align: center;
}

.btn-mobile-donate {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.btn-mobile-donate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.8s;
}

.btn-mobile-donate:hover::before {
  left: 100%;
}

.btn-mobile-donate:hover {
  background: linear-gradient(135deg, #ee5a52, #d63447);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
  color: white;
  text-decoration: none;
}

.btn-mobile-donate i {
  font-size: 16px;
  animation: heartbeat 2s infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.btn-mobile-donate:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  }
  25% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
  }
  50% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  }
  75% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  }
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, #1e3a8a, #2c5aa0);
  padding: 0;
  position: relative;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid #f59e0b;
  font-weight: 600;
}

.nav-link.donate-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  margin-left: 10px;
  border-radius: 25px;
  font-weight: 600;
}

.nav-link.donate-btn:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px) scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
}

.slide-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: white;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #2c5aa0;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.about-text h3 {
  color: #2c5aa0;
  margin-bottom: 15px;
  font-size: 24px;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Donate Section */
.donate-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
  text-align: center;
  color: white;
}

.donate-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.donate-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
  background: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: bold;
}

.team-member h4 {
  color: #2c5aa0;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-member .position {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 25px;
}

.service-content h4 {
  color: #2c5aa0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.service-content p {
  color: #666;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 90, 160, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 48px;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 50px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #fbbf24;
}

.footer-section p,
.footer-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  text-align: center;
  background: #1e40af;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-strip .container {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .org-info h1 {
    font-size: 24px;
  }

  .org-info .hindi-name {
    font-size: 18px;
  }

  /* Show mobile donate button only on mobile */
  .mobile-donate-btn {
    display: block !important;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 20px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
    min-width: 250px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #2563eb);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-top: 3px solid #3b82f6;
    border-left: 3px solid rgba(59, 130, 246, 0.5);
    border-right: 3px solid rgba(59, 130, 246, 0.5);
    border-bottom: 3px solid rgba(59, 130, 246, 0.5);
    border-radius: 0 0 15px 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin: 0;
    padding: 10px 0;
  }

  .nav-menu.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-item {
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 10px 15px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 30px;
    display: flex;
    align-items: center;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fbbf24;
    transform: translateX(15px);
    padding-left: 45px;
    font-size: 19px;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link.donate-btn {
    margin-left: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    font-weight: 700;
    text-align: center;
    border-top: 2px solid #fbbf24;
    min-height: 70px;
    font-size: 19px;
    justify-content: center;
  }

  .nav-link.donate-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: white;
    transform: scale(1.02);
    padding-left: 30px;
    font-size: 20px;
  }

  .hero-slider {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-slider {
    height: 300px;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}
