/* Logo styling */
.logo {
  font-size: 50px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* Individual letter colors with improved color scheme */
/*
.logo span {
  display: inline-block;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}*/
/*
.s { color: #007BFF; text-shadow: 2px 2px 10px #007BFF; } *//* Bright Blue */
/*
.l { color: #28A745; text-shadow: 2px 2px 10px #28A745; }*/ /* Green */
/*
.v { color: #DC3545; text-shadow: 2px 2px 10px #DC3545; }*/ /* Deep Red */
/*
.p { color: #FF8C00; text-shadow: 2px 2px 10px #FF8C00; }*/ /* Vibrant Orange */
/*
.c { color: #FFD700; text-shadow: 2px 2px 10px #FFD700; }*/ /* Golden Yellow */
/*
.t { color: #6F42C1; text-shadow: 2px 2px 10px #6F42C1; } */ /* Royal Purple */

/* Hover effect */
.logo span:hover {
  transform: scale(1.2);
  text-shadow: 4px 4px 20px rgba(255, 255, 255, 0.8);
}
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

/* Navbar styles */
.navbar {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  width: 160px;
  height: 48px;
  background:white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #4b5563;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1100;
}

.dropbtn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 0.375rem;
  z-index: 1;
}

.dropdown-content a {
  color: #374151;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f3f4f6;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile menu button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Slider styles */
.slider {
  position: relative;
  height: 600px;
  margin-top: 4rem;
  overflow: hidden;
}

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

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.slide-content h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.25rem;
  max-width: 36rem;
  margin: 0 auto;
}

.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

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

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

/* About section */
.about {
  padding: 4rem 0;
  background: white;
}

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

.about-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.about-text p {
  color: #4b5563;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0px 1px rgba(0,0,0,0.1);
}

/* Footer styles */
.footer {
  background: #1f2937;
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f3f4f6;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #d1d5db;
  transition: color 0.2s;
}

.social-links a:hover {
  color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }

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

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



    /* News ticker styles */
    .news-ticker {
      background: #1f2937;
      color: white;
      padding: 0.75rem 0;
      overflow: hidden;
      position: relative;
      z-index: 500;
    }
    
    .news-ticker-content {
      white-space: nowrap;
      animation: ticker 30s linear infinite;
      display: inline-block;
      padding-right: 2rem;
    }
    
    @keyframes ticker {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Jump links navigation */
    .jump-nav {
      background: white;
      padding: 1rem 0;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: sticky;
      top: 4rem;
      z-index: 90;
    }

    .jump-nav ul {
      display: flex;
      justify-content: center;
      gap: 2rem;
      list-style: none;
    }

    .jump-nav a {
      color: #374151;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .jump-nav a:hover {
      color: #2563eb;
    }

    /* Impact section styles */
    .impact-section {
      background: linear-gradient(rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
      padding: 5rem 0;
    }

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

    .impact-card {
      background: white;
      padding: 2.5rem 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .impact-card:hover {
      transform: translateY(-5px);
    }

    .impact-number {
      font-size: 3.5rem;
      font-weight: bold;
      background: linear-gradient(45deg, #2563eb, #1d4ed8);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.5rem;
    }

    .impact-label {
      color: #4b5563;
      font-size: 1.2rem;
      font-weight: 500;
    }

    /* Programs section */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .program-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .program-card:hover {
      transform: translateY(-5px);
    }

    .program-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .program-content {
      padding: 1.5rem;
    }

    .program-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 0.5rem;
    }

    .program-description {
      color: #6b7280;
      margin-bottom: 1rem;
    }

    /* Updates section */
    .updates-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .update-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .update-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .update-content {
      padding: 1.5rem;
    }

    .update-date {
      color: #2563eb;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .update-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 1rem;
    }

    .update-description {
      color: #6b7280;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: #2563eb;
      color: white;
    }

    .btn-primary:hover {
      background: #1d4ed8;
    }

    @media (max-width: 768px) {
      .jump-nav {
        overflow-x: auto;
        padding: 1rem;
      }

      .jump-nav ul {
        width: max-content;
      }

      .impact-number {
        font-size: 3rem;
      }
    }

    /* Contact Banner */
.contact-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

/* Contact Grid */
.contact-info .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.contact-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 250px;
}

.contact-card i {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
}

/* Feedback Form */
.feedback form {
  max-width: 600px;
  margin: 0 auto;
}

.feedback .form-group {
  margin-bottom: 15px;
}

.feedback input, .feedback textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Example CSS for mobile devices */
@media (max-width: 768px) {
  .news-ticker {
    font-size: 14px; /* Adjust font size on smaller screens */
  }

  .mobile-menu {
    padding-top: 60px; /* Add more space if the ticker is overlapping */
  }

  .home-name {
    position: relative; /* Ensure the home name is positioned properly */
    z-index: 2;
  }
}

.floating-call-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.floating-call-btn img{
width: 40px;
height: 40px;
}

/* Video Section Styling */
#video {
  background: linear-gradient(135deg, #A2C2E2 0%, #9F7AEA 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#video .container {
  display: flex;
  flex-direction: column; /* Always stack the content and video in mobile */
  align-items: center;
  justify-content: center;
  text-align: center; /* Center text on smaller screens */
}

#video h2.watch-heading {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

#video h3 {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin-top: 1.5rem;
}

#video p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.7;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 15px;
  background-color: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

.video:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.content {
  text-align: left;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

.content h3 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.content p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #video h2.watch-heading {
    font-size: 2rem;
  }

  #video p {
    font-size: 1rem;
  }

  .video-container {
    padding-top: 75%; /* Adjust aspect ratio on smaller screens */
  }

  .content {
    padding-left: 0;
    text-align: center;
  }

  .content h3 {
    font-size: 2rem;
  }

  /* Stack video and content vertically on mobile screens */
  #video .container {
    flex-direction: column; /* Stack vertically on smaller screens */
    text-align: center; /* Center text */
  }
}

@media (min-width: 768px) {
  /* On larger screens, display content and video side by side */
  #video .container {
    flex-direction: row; /* Display side by side */
  }

  .content {
    padding-left: 2rem;
    text-align: left;
  }
}


