/* General Reset */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Navbar Base Styles */
.navbar {
  padding: 15px 30px;
  background-color: #a20f0f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar .navbar-brand .logo {
  width: 150px;
  height: auto;
}

.navbar-nav .nav-item {
  margin-left: 15px;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ff7f00;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-item {
  font-size: 1rem;
  color: #333;
}

.navbar-nav .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #ff7f00;
}

/* Buttons */
.btn-orange, .btn-violet {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-orange {
  background-color: #ff7f00;
  color: white;
}

.btn-orange:hover {
  background-color: #e56700;
  transform: scale(1.05);
}

.btn-violet {
  background-color: #6c4cff;
  color: white;
}

.btn-violet:hover {
  background-color: #5a3bcc;
  transform: scale(1.05);
}

/* Dancing Icons */
.dancing-icon {
  animation: bounce 1.5s infinite ease-in-out;
  font-size: 1.3rem;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-8px);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .navbar {
      padding: 10px 20px;
  }

  .navbar-brand .logo {
      width: 120px;
  }

  .navbar-nav {
      margin-top: 20px;
  }

  .navbar-nav .nav-item a.btn {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
  }

  .btn-orange, .btn-violet {
      font-size: 0.9rem;
      padding: 10px 15px;
  }

  .dancing-icon {
      font-size: 1.2rem;
  }

  .navbar-nav .dropdown-menu {
      padding: 10px;
      font-size: 1rem;
  }

  .navbar-toggler {
      border: none;
      outline: none;
  }

  .navbar-toggler-icon {
      background-color: rgba(0, 0, 0, 0.7);
      border-radius: 5px;
      width: 25px;
      height: 25px;
  }
}


/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  text-align: left;
}

.hero h4 {
  font-size: 1.2rem;
  color: #ff7f00; /* Orange */
  animation: fadeIn 1s ease-in-out;
}

/* Text Changing Effect */
.changing-text {
  font-size: 3rem;
  line-height: 1.3;
  color: #6c4cff; /* Violet */
  display: inline-block;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  text-align: left;
}

.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-orange {
  background-color: #ff7f00;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-orange:hover {
  background-color: #e56700;
  transform: scale(1.05);
}

.btn-outline-violet {
  border: 2px solid #6c4cff;
  color: #6c4cff;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline-violet:hover {
  background-color: #6c4cff;
  color: white;
  transform: scale(1.05);
}

/* Image Animation */
.hero-img {
  animation: zoomIn 1s ease-in-out;
  max-width: 90%;
  border-radius: 10px;
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
      padding: 50px 20px;
      text-align: left;
  }

  .hero h4 {
      font-size: 22px;
      margin-top: 100px;
  }

  .changing-text {
      font-size: 2rem;
  }

  .btn {
      padding: 10px 15px;
      font-size: 1rem;
  }

  .hero-img {
      max-width: 80%;
      margin-top: 20px;
  }
}



/* About Section */
.about {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Left Side: Image */
.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  animation: fadeInLeft 1s ease-in-out;
}

/* Right Side: Content */
.about h6 {
  font-size: 1rem;
  color: #ff7f00; /* Orange */
  animation: fadeIn 1s ease-in-out;
}

.about h2 {
  font-size: 2.5rem;
  color: #000;
  animation: fadeInUp 1s ease-in-out;
}

.about p {
  font-size: 1.1rem;
  color: #666;
  animation: fadeInUp 1.2s ease-in-out;
}

.about ul li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  animation: fadeInUp 1.3s ease-in-out;
}

.about ul li i {
  font-size: 1.2rem;
  color: #ff7f00; /* Orange */
}

/* Buttons */
.btn-orange {
  background-color: #ff7f00;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-orange:hover {
  background-color: #e56700;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about {
      text-align: center;
  }

  .about-img {
      max-width: 90%;
  }

  .about ul {
      text-align: left;
      margin: auto;
  }
}




/*  */
/* Image Slider */
/* Image Slider */
.image-slider {
  position: relative;
  overflow: hidden;
}

/* Slide Image */
.slide-image {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center; /* Vertically centers the content */
  justify-content: center; /* Horizontally centers the content */
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

/* Carousel Caption (Text Content) */
.carousel-caption {
  position: relative;
  z-index: 2;
  max-width: 80%;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
  margin-right: 100px;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Buttons */
.btn-orange {
  background-color: #ff7f00;
  color: white;
  padding: 12px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-orange i {
  font-size: 1.5rem;
}

.btn-orange:hover {
  background-color: #e56700;
  transform: scale(1.05);
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-image {
      height: 80vh;

  }

  .carousel-caption {
      max-width: 90%;
      text-align: left;
  }

  .carousel-caption h1 {
      font-size: 2rem;
  }

  .carousel-caption p {
      font-size: 1rem;
  }

  .btn-orange {
      font-size: 1rem;
      padding: 10px 15px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
      font-size: 1.8rem;
  }

  .carousel-caption p {
      font-size: 0.9rem;
  }

  .btn-orange {
      font-size: 0.9rem;
      padding: 8px 12px;
  }
}







/* What We Do Section */
.what-we-do .section-title h2 {
  font-size: 2.5rem;
  color: #6c4cff; /* Violet */
  margin-bottom: 10px;
}

.what-we-do .section-title p {
  font-size: 1.1rem;
  color: #666;
}

/* Work Card */
.work-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.work-card img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #ff7f00; /* Orange */
}

.work-content h4 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 15px;
}

.work-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.work-content .btn {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #ff7f00; /* Orange */
  color: white;
  transition: background-color 0.3s, transform 0.3s;
}

.work-content .btn:hover {
  background-color: #e56700;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .work-content h4 {
      font-size: 1.3rem;
  }

  .work-content p {
      font-size: 0.9rem;
  }

  .work-content .btn {
      font-size: 0.9rem;
      padding: 8px 15px;
  }
}



/* Donations Section */
/* Donations Section */
.donations-section {
  position: relative;
  background: url('../images/index-hero.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 60px 0;
  color: white;
  overflow: hidden;
}

/* Overlay */
.donations-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  z-index: 1;
}

/* Content Positioning */
.donations-section .container {
  position: relative;
  z-index: 2; /* Ensures content is above the overlay */
}

/* Section Title */
.donations-section .section-title h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

.donations-section .section-title p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8); /* Slightly lighter subtitle */
}

/* Table Styling */
.table-responsive {
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
  margin-top: 20px;
}

.table {
  width: 100%;
  white-space: nowrap; /* Prevent text wrapping */
  border-collapse: collapse; /* Remove spacing between cells */
}

.table th,
.table td {
  text-align: left; /* Align text to the left */
  padding: 15px;
  font-size: 1rem;
  color: #333; /* Dark text for better contrast */
  background-color: rgba(255, 255, 255, 0.8); /* Light background for better readability */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle borders */
}

.table thead th {
  background-color: #6c4cff; /* Violet background */
  color: white; /* White text for headers */
  font-weight: bold;
  text-transform: uppercase;
}

.table tbody tr:hover {
  background: rgba(255, 127, 0, 0.1); /* Light orange hover effect */
  transition: background-color 0.3s ease;
}

/* Button Styling */
.btn-orange {
  background-color: #ff7f00;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-orange i {
  margin-right: 5px; /* Space between icon and text */
  font-size: 1.2rem;
}

.btn-orange:hover {
  background-color: #e56700;
  transform: scale(1.05); /* Slight scale on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .donations-section {
      padding: 40px 20px;
  }

  .donations-section .section-title h2 {
      font-size: 2rem;
  }

  .donations-section .section-title p {
      font-size: 1rem;
  }

  .table th,
  .table td {
      font-size: 0.9rem;
      padding: 10px; /* Reduce padding on smaller screens */
  }

  .btn-orange {
      font-size: 0.9rem;
      padding: 10px 15px;
  }
}



/* News Section */
.news-section .news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-section .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-section .news-media {
  position: relative;
}

.news-section .news-media img {
  width: 100%;
  height: 400px;
  border-bottom: 3px solid #6c4cff;
}

/* Video Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff7f00;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.video-play-btn i {
  margin-right: 5px;
}

.video-play-btn:hover {
  background: #e56700;
}

/* News Content */
.news-section .news-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.news-section .news-content p {
  font-size: 1rem;
  color: #666;
}

.news-section .btn-orange {
  background-color: #ff7f00;
  color: white;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.news-section .btn-orange:hover {
  background-color: #e56700;
  transform: scale(1.05);
}



/*  */
/* Testimonials Section */
.testimonials {
  position: relative;
  background-color: #f9f9f9;
  padding: 60px 0;
}

.testimonials .section-title h2 {
  font-size: 2.5rem;
  color: #6c4cff; /* Violet */
  margin-bottom: 10px;
}

.testimonials .section-title p {
  font-size: 1.1rem;
  color: #666;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  font-style: italic;
}

.testimonial-card .testimonial-author img {
  border: 2px solid #ff7f00; /* Orange border for profile image */
}

.testimonial-card .testimonial-author h6 {
  font-size: 1rem;
  margin-bottom: 0;
  color: #333;
}

.testimonial-card .testimonial-author small {
  font-size: 0.85rem;
  color: #999;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-card p {
      font-size: 0.9rem;
  }

  .testimonial-card .testimonial-author h6 {
      font-size: 0.9rem;
  }

  .testimonial-card .testimonial-author small {
      font-size: 0.8rem;
  }
}



/* CTA Section */
/* CTA Section */
.cta-section {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh; /* Ensures it covers full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark semi-transparent overlay */
  z-index: 1;
}

/* Content */
.cta-section .container {
  position: relative;
  z-index: 2; /* Ensures the content is above the overlay */
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
  margin-top: 200px;

}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn-orange, .btn-violet {
  font-size: 1.2rem;
  padding: 12px 25px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-orange {
  background-color: #ff7f00;
  color: white;
}

.btn-orange:hover {
  background-color: #e56700;
  transform: scale(1.05);
}

.btn-violet {
  background-color: #6c4cff;
  color: white;
}

.btn-violet:hover {
  background-color: #5a3bcc;
  transform: scale(1.05);
}

/* Dancing Icons */
.dancing-icon {
  animation: bounce 1.5s infinite ease-in-out;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section h2 {
      font-size: 2rem;
  }

  .cta-section p {
      font-size: 1rem;
  }

  .btn-orange, .btn-violet {
      font-size: 1rem;
      padding: 10px 20px;
  }

  .dancing-icon {
      font-size: 1.2rem;
  }
}





/* Contact Us Section */
.contact-section h2 {
  font-size: 2.5rem;
  color: #6c4cff; /* Violet */
}

.contact-section .contact-card {
  background: white;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.contact-section .contact-card i {
  display: block;
  margin-bottom: 15px;
}



/* Footer */
.footer {
  background: #000;
  color: white;
}

.footer h5 {
  color: #ff7f00;
  font-size: 1.5rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ff7f00;
}

.footer .border-white {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
