  /* hero */
/* Import Nunito Font */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

/* Global Font Styling */
body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Prevent horizontal scrolling caused by overflow */
html, body {
  overflow-x: hidden;
}



/* Navbar Styling */
header {
    border-bottom: 2px solid #f0f0f0;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .nav-link {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s ease-in-out;
  }
  
  .nav-link:hover {
    color: #007bff;
  }
  
  .btn-orange {
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .btn-orange:hover {
    background-color: #e67e22;
  }
  
  .navbar-brand img {
    display: block;
   
  }
  


/* Hero Section Styling */
/* Hero Section Styling */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 15px;
}


  /* Section Background */
/* General Section Styling */
.autism-journey-section {
  position: relative;
  background: linear-gradient(to right, #068b2c, #000cf5);
  padding: 5rem 0;
  color: white;
  overflow: hidden;
}

/* Decorative Circles with Icons */
.bg-decorative-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-decorative-circles .circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  animation: float 8s infinite ease-in-out;
}

.icon-circle img {
  width: 60px;
  height: 60px;
  display: block;
  margin: auto;
  padding: 15px;
}

/* Circle Positions */
.bg-decorative-circles .circle:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 20%;
  animation-duration: 10s;
}

.bg-decorative-circles .circle:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 40%;
  left: 10%;
  animation-duration: 12s;
}

.bg-decorative-circles .circle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 70%;
  right: 15%;
  animation-duration: 15s;
}

.bg-decorative-circles .circle:nth-child(4) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation-duration: 18s;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

  


  /* About Us Section */
/* Section Background */
/* General Section Styling */
.about-us-section {
  position: relative;
  background-color: #f8f9fa;
}

.text-orange {
  color: #ff6600;
}

.btn-orange {
  background-color: #ff6600;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-orange:hover {
  background-color: #e55a00;
  transform: scale(1.05);
}

/* Image Boxes */
.image-box {
  flex: 1 1 calc(50% - 10px);
  position: relative;
}

.image-box img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Feature Card */
.feature-card {
  bottom: 10px;
  left: 10px;
  width: 140px;
  height: 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  animation: fadeInUp 1.5s ease-in-out;
}

.feature-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

/* List Styling */
.list-unstyled li {
  display: flex;
  align-items: center;
}

.list-unstyled li i {
  font-size: 1.2rem;
}

.smile-acronym {
  background-color: #fff5e6; /* Light orange background */
  border-left: 5px solid #ff6600;
  padding: 15px;
  margin-bottom: 20px;
}

.smile-acronym h5 {
  margin-bottom: 10px;
}

.smile-acronym ul {
  padding-left: 0;
}

.smile-acronym li {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}


/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-box {
    flex: 1 1 100%;
  }

  .feature-card {
    width: 120px;
    height: 70px;
    font-size: 0.8rem;
  }
}


  /* What we do */
/* Section Styling */
/* General Styling */
.what-we-do-section {
  background-color: #000; /* Dark background */
  padding: 60px 0;
}

.text-warning {
  color: #ffc107; /* Vibrant yellow */
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #000000, #ffc107);
}

.smile-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #333;
}

.icon-wrapper i {
  color: #ffc107; /* Yellow icon color */
}

.letter {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .smile-card {
    margin-bottom: 20px;
  }

  .letter {
    font-size: 2.5rem;
  }
}


  
  /* programs */
  /* Programs Section */
.programs-section {
    background: #f9f9f9;
    padding: 5rem 0;
  }
  
  .programs-section h6 {
    font-size: 0.9rem;
    color: #f39c12;
    text-transform: uppercase;
  }
  
  .programs-section h2 {
    font-size: 2.5rem;
    color: #f39c12;
  }
  
  .program-card {
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .icon-wrapper {
    font-size: 2.5rem;
    color: #ffffff;
    background: #f39c12;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .program-card:hover .icon-wrapper {
    background:  rgba(2, 219, 67, 0.82);
   
    transform: rotate(10deg);
  }
  
  .program-card h5 {
    font-size: 1.25rem;
    color: #333333;
  }
  
  .program-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
  }
  
  .program-card .btn-outline-primary {
    border-color: #0056b3;
    color: #0056b3;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .program-card .btn-outline-primary:hover {
    background: #0056b3;
    color: #ffffff;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .programs-section h2 {
      font-size: 2rem;
    }
  
    .program-card {
      padding: 2rem 1rem;
    }
  
    .icon-wrapper {
      font-size: 2rem;
      width: 60px;
      height: 60px;
      line-height: 60px;
    }
  }
  
  
  
/* Recent Projects Section */
/* Section Styling */
.recent-projects-section {
  background: linear-gradient(135deg, #000000, #010101);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.recent-projects-section h6 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.recent-projects-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.recent-projects-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Project Card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Fixed Height for Images */
.project-card img {
  width: 100%;
  height: 300px; /* Fixed height for desktop view */
  object-fit: cover; /* Ensures the image fills the area without distortion */
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.project-card:hover img {
  transform: scale(1.1); /* Slight zoom on hover */
}

.project-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

/* Fullscreen Modal */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.fullscreen-modal img {
  max-width: 90%;
  max-height: 90%;
}

.fullscreen-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* Button Styling */
.view-all-btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background: #d16500;
  color: #fff;
}

/* Responsive Design */

/* Tablets and Medium Devices (Max Width 768px) */
@media (max-width: 768px) {
  .project-card img {
    height: 200px; /* Reduced height for tablets */
  }

  .recent-projects-section h2 {
    font-size: 2rem; /* Adjust heading size */
  }

  .recent-projects-section p {
    font-size: 1rem; /* Adjust paragraph size */
  }

  .view-all-btn {
    padding: 10px 15px; /* Adjust button padding for smaller screens */
  }
}

/* Small Mobile Devices (Max Width 576px) */
@media (max-width: 576px) {
  .project-card img {
    height: 180px; /* Further reduced height for small screens */
  }

  .recent-projects-section h2 {
    font-size: 1.8rem; /* Smaller heading */
  }

  .recent-projects-section p {
    font-size: 0.9rem; /* Adjust paragraph size */
  }
}




  /* News Section */
/* News Section */
/* Section Styling */
.news-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 5rem 0;
  position: relative;
}

.news-section h6 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffc107;
}

.news-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333333;
}

.news-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
}

/* Video Card */
.video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-card img {
  width: 100%;
  border-radius: 15px;
}

.video-card .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.video-card .play-overlay i {
  font-size: 4rem;
  color: #ffc107;
}

.video-card .video-caption {
  margin-top: 1rem;
}

.video-card h4 {
  font-size: 1.5rem;
  color: #333333;
}

.video-card p {
  font-size: 1rem;
  color: #666666;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.video-modal .modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.video-modal video {
  width: 100%;
  height: auto;
}

.video-modal .close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4444;
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

/* Caption Translator */
.caption-translator {
  margin-top: 1rem;
  color: #fff;
}

.caption-translator label {
  font-size: 1rem;
  margin-right: 10px;
}

.caption-translator select {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-section h2 {
    font-size: 2rem;
  }

  .news-section p {
    font-size: 1rem;
  }

  .video-card .play-overlay i {
    font-size: 3rem;
  }

  .video-card h4 {
    font-size: 1.3rem;
  }

  .video-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .video-card .play-overlay i {
    font-size: 2.5rem;
  }

  .video-card h4 {
    font-size: 1.2rem;
  }

  .video-card p {
    font-size: 0.85rem;
  }
}


  /* SDG Section Background */
/* SDG Section Background */
/* Section Styling */
.sdg-section {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.sdg-section h6 {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: bold;
  color: #ffc107;
}

.sdg-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}

.sdg-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dddddd;
}

/* SDG Cards */
.sdg-card {
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sdg-card .icon {
  font-size: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.sdg-card h4 {
  margin-top: 1rem;
  color: #333333;
}

.sdg-card p {
  font-size: 0.95rem;
  color: #555555;
  margin-top: 0.5rem;
}

/* Hover Animations */
.sdg-card .icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */

/* Tablet and Medium Screens (Max Width: 768px) */
@media (max-width: 768px) {
  .sdg-section h2 {
    font-size: 2rem;
  }

  .sdg-section p {
    font-size: 1rem;
  }

  .sdg-card .icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }
}

/* Mobile Screens (Max Width: 576px) */
@media (max-width: 576px) {
  .sdg-card {
    padding: 2rem 1.5rem;
  }

  .sdg-card .icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
  }

  .sdg-section h2 {
    font-size: 1.8rem;
  }

  .sdg-section p {
    font-size: 0.9rem;
  }
}

  

  /* testimonial */
  /* Testimonials Section */
.testimonials-section {
    background-color: #f8fbfd;
    padding: 5rem 0;
  }
  
  .testimonial-intro .icon {
    font-size: 2.5rem;
    color: #6ac045;
  }
  
  .testimonial-intro h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
  }
  
  .testimonial-intro h2 {
    font-size: 2rem;
    color: #333;
  }
  
  .testimonial-intro p {
    font-size: 1rem;
    color: #6c757d;
  }
  
  /* Testimonial Card */
  .testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
  }
  
  .testimonial-card .quote-icon {
    font-size: 3rem;
    color: #6ac045;
    margin-bottom: 1rem;
  }
  
  .testimonial-card .testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
  }
  
  .testimonial-card h5 {
    font-size: 1.2rem;
    color: #333;
  }
  
  .testimonial-card .testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: 1rem;
    object-fit: cover;
  }
  
  /* Carousel Indicators */
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background-color: #6ac045;
    border-radius: 50%;
  }
  

  /* cta */
  /* CTA Section */
.cta-section {
    background-color: #f8f9fa;
  }
  
  .cta-content {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 2rem;
  }
  
  .cta-text h3 {
    font-size: 1.8rem;
    color: #333;
  }
  
  .cta-text p {
    font-size: 1rem;
    color: #6c757d;
  }
  
  .btn-gradient {
    background: linear-gradient(135deg, #28a745, #007bff);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .btn-gradient:hover {
    background: linear-gradient(135deg, #007bff, #28a745);
    transform: translateY(-3px);
  }
  
  .btn-gradient i {
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .cta-content {
      flex-direction: column;
      text-align: center;
    }
  
    .cta-button a {
      display: block;
      margin-bottom: 1rem;
    }
  
    .cta-button a:last-child {
      margin-bottom: 0;
    }
  }
  


  /* Chatbot and WhatsApp Container */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  /* Dancing Animation */
  @keyframes dance {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  #chatbot, #whatsapp {
    background: #f39c12;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
    animation: dance 1.5s infinite ease-in-out;
  }
  
  #chatbot:hover, #whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Chatbot Window */
  #chatbot-window {
    background: white;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
  }
  
  /* Chatbot Header */
  .chatbot-header {
    background: #f39c12;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chatbot-header h5 {
    margin: 0;
    font-size: 1rem;
  }
  
  .chatbot-header button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
  }
  
  /* Chatbot Body */
  .chatbot-body {
    padding: 15px;
  }
  
  .chatbot-message {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .chatbot-options {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .chatbot-options li {
    background: #f7f7f7;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .chatbot-options li:hover {
    background: #f39c12;
    color: white;
  }
  
  /* Chatbot Answer */
  #chatbot-answer {
    margin-top: 15px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
  }

  
  /* Contact Us Section */
.contact-us-section {
    background: #f8f9fa;
    padding: 5rem 0;
    position: relative;
  }
  
  .contact-us-section h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
  }
  
  .contact-us-section h2 {
    font-size: 2.5rem;
    color: #333;
  }
  
  .contact-us-section p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 3rem;
  }
  
  /* Contact Information */
  .contact-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-info .info-item i {
    font-size: 2rem;
    color: #f39c12;
    margin-right: 1rem;
  }
  
  .contact-info .info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #333;
  }
  
  .contact-info .info-item p {
    margin: 0;
    font-size: 1rem;
    color: #6c757d;
  }
  
  /* Contact Form */
  #contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  #contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
  }
  
  #contact-form .btn-primary {
    background: linear-gradient(135deg, #f39c12, #ffba00);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  #contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ffba00, #f39c12);
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-info {
      margin-bottom: 2rem;
    }
  }

  
  /* Footer */
.footer {
    background: #2c3e50;
    color: white;
  }
  
  .footer h5 {
    color: #f39c12;
    margin-bottom: 1rem;
  }
  
  .footer p, .footer ul {
    color: #bdc3c7;
    margin: 0;
  }
  
  .footer ul {
    padding: 0;
    list-style: none;
  }
  
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer ul li a:hover {
    color: #f39c12;
  }
  
  .footer .footer-logo {
    max-width: 150px;
    margin-top: 1rem;
  }
  
  .footer .btn-primary {
    background: linear-gradient(135deg, #f39c12, #ffba00);
    border: none;
    border-radius: 50px;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .footer .btn-primary:hover {
    background: linear-gradient(135deg, #ffba00, #f39c12);
    transform: translateY(-3px);
  }
  
  .footer hr {
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .footer a {
    color: #bdc3c7;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: #f39c12;
  }
  
  .footer i {
    font-size: 1.2rem;
  }
  
  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }
  
    .footer ul {
      text-align: left;
    }
  }
  