
    body {
      font-family: 'Montserrat', sans-serif;
      color: #333;
      overflow-x: hidden;
      /* background-color: #f5f5f5; */
    
       
        background-color: #f8f9fa;
        margin: 0;
        padding: 0;
      }
    
  /* Top Banner Styling */
  .top-banner {
    background: linear-gradient(90deg, #6b2d5c, #d7263d); /* Gradient from purple to red */
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays above other content */
  }

  .top-banner a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .top-banner a:hover {
    color: #ffd700; /* Gold on hover for a premium feel */
  }

  .top-banner .arrow {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
  }

  .top-banner a:hover .arrow {
    transform: translateX(5px); /* Slight arrow movement on hover */
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .top-banner {
      font-size: 0.9rem; /* Smaller font for medium screens */
      padding: 0.75rem 1rem; /* Adjusted padding */
    
    }

    .top-banner .arrow {
      font-size: 0.8rem; /* Smaller arrow */
    }

    body {
      padding-top: 50px; /* Adjust offset for smaller banner height */
    }
  }

  @media (max-width: 576px) {
    .top-banner {
      font-size: 0.8rem; /* Even smaller font for small screens */
      padding: 0.5rem 1rem; /* Further reduced padding */
      border-bottom-left-radius: 10px; /* Smaller radius */
      border-bottom-right-radius: 10px;
    }

    .top-banner .arrow {
      font-size: 0.7rem; /* Smaller arrow */
    }

    body {
      padding-top: 40px; /* Adjust offset for very small banner height */
    }
  }



  /* Responsive adjustments for Top Banner */
  @media (max-width: 768px) {
    .top-banner {
      font-size: 0.9rem;
      padding: 0.75rem 1rem;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
    }

    .top-banner .arrow {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 576px) {
    .top-banner {
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }
  }


  

  .navbar {
    background-color: #f5f5ef;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  
  .navbar-brand img {
    height: 70px;
    transition: transform 0.3s ease;
  }
  
  .navbar-brand img:hover {
    transform: scale(1.05);
  }
  
  .navbar-toggler {
    border: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  .navbar-nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
  }
  
  .nav-link {
    color: #000 !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 1.5rem;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #d7263d;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link:hover {
    color: #d7263d !important;
  }
  
  .navbar .btn {
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .navbar .btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 992px) {
    .navbar-nav {
      justify-content: center;
      background-color: #f5f5ef;
      padding: 1rem;
      border-radius: 0 0 15px 15px;
    }
    .nav-link {
      margin: 0.5rem 0;
      text-align: center;
    }
    .navbar .btn {
      margin: 1rem auto;
      display: block;
      width: fit-content;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      top: 48px;
    }
    .nav-link {
      font-size: 1rem;
    }
    .navbar .btn {
      font-size: 0.9rem;
      padding: 0.4rem 1.2rem;
    }
    body {
      padding-top: calc(48px + 1rem);
    }
  }
  
  @media (max-width: 576px) {
    .navbar {
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      top: 35px;
    }
    body {
      padding-top: calc(35px + 1rem);
    }
  }
  
  @media (max-width: 400px) {
    .navbar {
      padding: 0.5rem 0;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    .nav-link {
      font-size: 0.9rem;
      margin: 0.3rem 0;
    }
    .navbar .btn {
      font-size: 0.8rem;
      padding: 0.3rem 1rem;
    }
    .navbar-brand img {
      height: 50px;
    }
  }

  .hero-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('7.jpg');
    background-size: 20px 20px;
  }
  
  .hero-section .tagline {
    font-size: 1rem;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  .hero-section .tagline::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 0.5rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-section .btn {
    background-color: #333;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
  }
  
  .hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #555;
  }
  
  .hero-section .description {
    font-size: 1rem;
    color: #666;
    margin-top: 1.5rem;
    line-height: 1.5;
  }
  
  .image-box {
    text-align: center;
  }
  
  .image-box img {
    max-width: 85%; /* Increased from 70% to make the image larger */
    height: auto;
    object-fit: contain;
    filter: brightness(120%); /* Makes the image lighter by increasing brightness */
    opacity: 0.9; /* Slightly reduces opacity for a lighter appearance */
    margin-top: 100px;
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .hero-section h1 {
      font-size: 2.2rem;
    }
    .hero-section .description {
      font-size: 0.95rem;
    }
    .image-box img {
      max-width: 80%; /* Adjusted for larger screens */
    }
  }
  
  @media (max-width: 992px) {
    .hero-section h1 {
      font-size: 2rem;
    }
    .hero-section .description {
      font-size: 0.9rem;
    }
    .image-box img {
      margin-top: 2rem;
      max-width: 70%; /* Adjusted for medium screens */
    }
    .hero-section .col-lg-6 {
      text-align: center;
    }
    .hero-section .btn {
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      padding: 2rem 0;
      min-height: auto;
    }
    .hero-section h1 {
      font-size: 1.8rem;
    }
    .hero-section .tagline {
      font-size: 0.9rem;
    }
    .hero-section .btn {
      font-size: 0.9rem;
      padding: 0.5rem 1.5rem;
    }
    .image-box img {
      max-width: 60%; /* Adjusted for smaller screens */
    }
  }
  
  @media (max-width: 576px) {
    .hero-section {
      padding: 1.5rem 0;
      min-height: auto;
    }
    .hero-section h1 {
      font-size: 1.5rem;
    }
    .hero-section .tagline {
      font-size: 0.85rem;
    }
    .hero-section .description {
      font-size: 0.85rem;
    }
    .hero-section .btn {
      font-size: 0.85rem;
      padding: 0.5rem 1.2rem;
    }
    .image-box img {
      max-width: 50%; /* Adjusted for very small screens */
    }
  }
  
  @media (max-width: 400px) {
    .hero-section {
      padding: 1rem 0;
    }
    .hero-section h1 {
      font-size: 1.3rem;
    }
    .hero-section .tagline {
      font-size: 0.8rem;
    }
    .hero-section .description {
      font-size: 0.8rem;
    }
    .hero-section .btn {
      font-size: 0.8rem;
      padding: 0.4rem 1rem;
    }
    .image-box img {
      max-width: 45%; /* Adjusted for the smallest screens */
    }
  }
   
     /* Testimonials Section */
     .testimonials-section {
      padding: 80px 0;
      background: #ffffff;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .testimonials-section .parallax-bg {
      position: absolute;
      top: -10%;
      left: 0;
      width: 100%;
      height: 120%;
      background: url('https://source.unsplash.com/1600x900/?pattern') no-repeat center center/cover;
      opacity: 0.15;
      z-index: -1;
      transform: translateY(0);
    }

    .testimonials-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #D32F2F;
      text-align: center;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .testimonials-section .carousel {
      max-width: 800px;
      margin: 0 auto;
    }

    .testimonials-section .carousel-item {
      text-align: center;
      padding: 30px;
      background: #f9f9f9;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border: 2px solid transparent;
      border-image: linear-gradient(90deg, #FFC107, #D32F2F) 1;
    }

    .testimonials-section .carousel-item:hover {
      transform: translateY(-10px);
      transition: transform 0.3s ease;
    }

    .testimonials-section .carousel-item p {
      font-style: italic;
      color: #555;
      font-size: 1.1rem;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .testimonials-section .carousel-item h5 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #D32F2F;
    }

    .testimonials-section .carousel-item .text-muted {
      font-size: 0.9rem;
      color: #777;
    }

    .testimonials-section .stars {
      margin-bottom: 15px;
    }

    .testimonials-section .stars i {
      color: #FFC107;
      font-size: 1.2rem;
    }

    .testimonials-section .carousel-control-prev,
    .testimonials-section .carousel-control-next {
      width: 50px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
    }

    .testimonials-section .carousel-control-prev-icon,
    .testimonials-section .carousel-control-next-icon {
      background-color: #D32F2F;
      border-radius: 50%;
    }

   /* Viswabharathi Section (About Us) */
.viswabharathi-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.viswabharathi-section .parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('https://source.unsplash.com/1600x900/?texture,pattern') no-repeat center center/cover;
  opacity: 0.15;
  z-index: -1;
  transform: translateY(0);
}

.viswabharathi-section .parallax-overlay {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(211, 47, 47, 0.1));
  opacity: 0.2;
  z-index: -1;
  transform: translateY(0);
}

.viswabharathi-section .container {
  position: relative;
  z-index: 1;
}

.viswabharathi-section .section-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #D32F2F;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.viswabharathi-section .subsection {
  padding: 120px !important;
  margin: 20px 0;
  background: #e2e0e0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.viswabharathi-section .subsection:hover {
  transform: translateY(-10px);
}

.viswabharathi-section .subsection-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.viswabharathi-section .subsection-reverse .subsection-content {
  flex-direction: row-reverse;
}

.viswabharathi-section .image-container {
  flex: 0 0 auto;
  width: 25vmin; /* Responsive square size */
  height: 25vmin; /* Equal height for square shape */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.viswabharathi-section .subsection-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill square without distortion */
  border-radius: 8px; /* Slightly rounded corners for appeal */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(211, 47, 47, 0.3); /* Subtle thematic border */
}

.viswabharathi-section .subsection-image:hover {
  transform: scale(1.08); /* Subtle zoom on hover */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

.viswabharathi-section .text-container {
  flex: 1;
  text-align: left;
}

.viswabharathi-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #D32F2F;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.viswabharathi-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .viswabharathi-section .subsection-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .viswabharathi-section .subsection-reverse .subsection-content {
    flex-direction: column;
  }

  .viswabharathi-section .image-container {
    width: 40vmin; /* Larger for visibility on tablets */
    height: 40vmin;
  }

  .viswabharathi-section .text-container {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .viswabharathi-section .section-heading {
    font-size: 2.5rem;
  }

  .viswabharathi-section .subsection {
    padding: 20px;
  }

  .viswabharathi-section h2 {
    font-size: 1.8rem;
  }

  .viswabharathi-section p {
    font-size: 1rem;
  }

  .viswabharathi-section .image-container {
    width: 50vmin; /* Adjust for smaller screens */
    height: 50vmin;
  }
}

@media (max-width: 576px) {
  .viswabharathi-section {
    padding: 40px 0;
  }

  .viswabharathi-section .section-heading {
    font-size: 2rem;
  }

  .viswabharathi-section .subsection {
    margin: 10px 0;
  }

  .viswabharathi-section .image-container {
    width: 60vmin; /* Ensure visibility on small screens */
    height: 60vmin;
  }
  .viswabharathi-section .reveal-text{
    margin-left: 10px;
  }

}

/* Animation for reveal effect */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
    /* Join Us Section */
    .join-us-section {
      padding: 80px 0;
      background: linear-gradient(90deg, #FFC107, #D32F2F);
      color: #fff;
      text-align: center;
    }
    .join-us-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .join-us-section .btn {
      background: #fff;
      color: #D32F2F;
      padding: 10px 30px;
      font-size: 1.2rem;
      border: none;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .join-us-section .btn:hover {
      background: #FF5722;
      color: #fff;
    }
    /*Contact Section*/
    .contact-section {
      padding: 80px 0;
      background: #fff;
    }
    .contact-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #D32F2F;
      text-align: center;
      margin-bottom: 40px;
    }
    .contact-section input,
    .contact-section textarea {
      border-radius: 5px;
      border: 1px solid #ccc;
      padding: 10px;
      margin-bottom: 15px;
      width: 100%;
    }
    .contact-section button {
      background: #D32F2F;
      border: none;
      padding: 10px 30px;
      color: #fff;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .contact-section button:hover {
      background: #FF5722;
    }
    .contact-section button:disabled {
      background: #6c757d;
      cursor: not-allowed;
    }


  
  

    .contact-container {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      width: 100%;
      max-width: 2000px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin: 0 auto;
      display: flex; /* Change to flex for horizontal layout */
      flex-direction: row; /* Align items horizontally */
      justify-content: space-around; /* Space items evenly */
      align-items: center; /* Center items vertically */
      flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    }

    .contact-item {
      display: flex;
      align-items: center;
      justify-content: center; /* Center content within each item */
      padding: 15px 20px; /* Adjust padding for horizontal layout */
      text-decoration: none;
      color: #333;
      font-size: 16px;
      transition: background 0.3s;
      flex: 1; /* Allow items to grow equally */
      min-width: 200px; /* Ensure items don't get too small */
      border-right: 1px solid #e0e0e0; /* Add vertical separators */
    }

    .contact-item:last-child {
      border-right: none; /* Remove border on the last item */
    }

    .contact-item:hover {
      background: #f9f9f9;
    }

    .contact-item i {
      font-size: 20px;
      margin-right: 10px;
    }

    .contact-item .text {
      flex-grow: 1;
      text-align: center; /* Center text within each item */
    }

    .contact-item .arrow {
      font-size: 16px;
      color: #888;
      margin-left: 10px;
    }

    .footer-text {
      text-align: center;
      font-size: 12px;
      color: #888;
      margin-top: 20px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .contact-container {
        flex-direction: row; /* Keep horizontal layout */
        justify-content: space-between; /* Adjust spacing */
        padding: 15px;
      }

      .contact-item {
        font-size: 14px;
        padding: 12px 15px;
        min-width: 150px; /* Adjust for medium screens */
      }

      .contact-item i {
        font-size: 18px;
      }

      .contact-item .arrow {
        font-size: 14px;
      }
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: stretch; /* Stretch items to full width */
        margin: 10px;
        padding: 15px;
      }

      .contact-item {
        font-size: 14px;
        padding: 12px 0;
        border-right: none; /* Remove vertical separators */
        border-bottom: 1px solid #e0e0e0; /* Revert to horizontal separators */
        min-width: auto; /* Allow items to take full width */
      }

      .contact-item:last-child {
        border-bottom: none; /* Remove border on the last item */
      }

      .contact-item i {
        font-size: 18px;
      }

      .contact-item .arrow {
        font-size: 14px;
      }

      .footer-text {
        font-size: 10px;
      }
    }

    @media (max-width: 480px) {
      .contact-container {
        margin: 5px;
        padding: 10px;
      }

      .contact-item {
        font-size: 12px;
        padding: 10px 0;
      }

      .contact-item i {
        font-size: 16px;
        margin-right: 8px;
      }

      .contact-item .arrow {
        font-size: 12px;
      }

      .footer-text {
        font-size: 8px;
        margin-top: 15px;
      }
    }

    @media (max-width: 320px) {
      .contact-item {
        font-size: 10px;
        padding: 8px 0;
      }

      .contact-item i {
        font-size: 14px;
        margin-right: 6px;
      }

      .contact-item .arrow {
        font-size: 10px;
      }

      .footer-text {
        font-size: 7px;
        margin-top: 10px;
      }
    }


    .whatsapp-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #4CAF50; /* WhatsApp green */
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease;
      text-decoration: none; /* Remove underline from link */
    }

    .whatsapp-icon:hover {
      transform: scale(1.1);
    }

    .whatsapp-icon i {
      font-size: 2rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .whatsapp-icon {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
      }

      .whatsapp-icon i {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 480px) {
      .whatsapp-icon {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
      }

      .whatsapp-icon i {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 320px) {
      .whatsapp-icon {
        width: 40px;
        height: 40px;
        bottom: 8px;
        right: 8px;
      }

      .whatsapp-icon i {
        font-size: 1.4rem;
      }
    }





    
    
   
    
    
     
   
   
    /* Existing Styles (Call to Action Section) */
  
    
    .cta-section {
        min-height: 100vh;
        background-color: #f5f5f5;
        position: relative;
        overflow: hidden;
    }
    
    .cta-content {
        max-width: 600px;
        padding: 40px;
        z-index: 2;
    }
    
    .cta-content h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 30px;
    }
    
    .cta-content .btn {
        padding: 10px 30px;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
    }
    
    .cta-content .btn:hover {
        background-color: #333;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 60%;
        background-color: #d4e4d3;
        border-radius: 50%;
        z-index: 1;
    }
    
    /* Footer Styles */
    .footer-section {
        background: #f5f5f5;
        color: #000;
        padding: 30px 0;
        text-align: center;
        border-top: 1px solid #ddd;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
    
    .footer-links a {
        color: #000;
        text-decoration: none;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        border-bottom: 1px solid #ddd;
        transition: color 0.3s ease;
    }
    
    .footer-links a:last-child {
        border-bottom: none;
    }
    
    .footer-links a i {
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .footer-links a::after {
        content: '\f054'; /* Font Awesome right arrow */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8rem;
        color: #000;
    }
    
    .footer-links a:hover {
        color: #666;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .footer-bottom .powered-by {
        font-size: 0.8rem;
        color: #666;
    }
    
    /* Desktop Layout */
    @media (min-width: 768px) {
        .footer-links {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
    
        .footer-links a {
            border-bottom: none;
            width: auto;
            padding: 0;
            margin: 0 15px;
            display: inline-flex;
        }
    
        .footer-links a::after {
            display: none;
        }
    
        .footer-links a:not(:last-child)::after {
            content: '';
            display: inline-block;
            width: 30px;
            height: 1px;
            background-color: #ddd;
            margin: 0 15px;
            vertical-align: middle;
        }
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 576px) {
        .footer-links a {
            font-size: 0.9rem;
            padding: 8px 0;
        }
    
        .footer-links a i {
            font-size: 1.1rem;
        }
    
        .footer-links a::after {
            font-size: 0.7rem;
        }
    
        .footer-bottom p {
            font-size: 0.8rem;
        }
    
        .footer-bottom .powered-by {
            font-size: 0.7rem;
        }
    
        .footer-section {
            padding: 20px 0;
        }
    }














    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* Responsive */
    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2rem;
      }
      .hero-section p {
        font-size: 1rem;
      }
      .hero-section .btn {
        font-size: 1rem;
        padding: 8px 20px;
      }
      .hero-section {
        padding: 50px 0;
        min-height: auto;
      }
      .testimonials-section h2,
      .about-section h2,
      .join-us-section h2,
      .contact-section h2 {
        font-size: 1.8rem;
      }
      .testimonials-section .carousel-item {
        padding: 20px;
      }
      .testimonials-section .carousel-item p {
        font-size: 1rem;
      }
      .about-section .subsection {
        min-height: 70vh;
        padding: 30px 0;
      }
      .about-section .subsection .row {
        flex-direction: column;
      }
      .about-section .subsection-image {
        height: 180px;
        margin-bottom: 25px;
      }
      .about-section h2 {
        font-size: 1.6rem;
      }
      .about-section p {
        font-size: 0.95rem;
      }
      .about-section {
        background-attachment: scroll;
      }
      .whatsapp-icon {
        width: 50px;
        height: 50px;
      }
      .whatsapp-icon i {
        font-size: 1.5rem;
      }
      .navbar-brand img {
        height: 40px;
      }
      .viswabharathi-section {
        padding: 50px 0;
      }
      .viswabharathi-section .section-heading {
        font-size: 2.8rem;
        margin-bottom: 40px;
      }
      .viswabharathi-section .subsection {
        padding: 40px 20px;
        min-height: auto;
        margin: 15px 0;
      }
      .viswabharathi-section h2 {
        font-size: 2rem;
      }
      .viswabharathi-section p {
        font-size: 1rem;
        max-width: 90%;
      }
    }
    @media (max-width: 576px) {
      .about-section .subsection {
        min-height: 60vh;
        padding: 20px 0;
      }
      .about-section .subsection-image {
        height: 150px;
        margin-bottom: 20px;
      }
      .about-section h2 {
        font-size: 1.4rem;
      }
      .about-section p {
        font-size: 0.9rem;
      }
      .viswabharathi-section .section-heading {
        font-size: 2.2rem;
      }
      .viswabharathi-section .subsection {
        padding: 30px 15px;
      }
      .viswabharathi-section h2 {
        font-size: 1.8rem;
      }
      .viswabharathi-section p {
        font-size: 0.9rem;
      }
    }
    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }


    .opportunities-section {
      background: #f5f5f0;
      padding: 50px 0;
      text-align: center;
    }
    
    .opportunities-section h1 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #333;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }
    
    .opportunities-section .subtext {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 40px;
      font-style: italic;
    }
    
    .content-block {
      background: #f0e6ff;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .content-block:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .content-text h2 {
      font-size: 2rem;
      font-weight: bold;
      color: #4b0082;
      margin-bottom: 20px;
      position: relative;
    }
    
    .content-text h2::after {
      content: '';
      width: 50px;
      height: 3px;
      background: #ff8c00;
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .content-text p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    .features-list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }
    
    .features-list li {
      background: #e6d9ff;
      border-radius: 20px;
      padding: 10px 20px;
      margin: 10px 0;
      font-size: 1rem;
      color: #333;
      display: flex;
      align-items: center;
      transition: background 0.3s ease;
    }
    
    .features-list li:hover {
      background: #d4c6ff;
    }
    
    .features-list .checkmark {
      margin-right: 10px;
      color: #4b0082;
      font-size: 1.2rem;
    }
    
    .know-more {
      font-size: 1.1rem;
      color: #4b0082;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    
    .know-more:hover {
      color: #ff8c00;
    }
    
    .content-image .image-card {
      position: relative;
      /* background: linear-gradient(135deg, #8b4513, #d2691e); */
      border-radius: 10px;
      padding: 20px;
      color: #fff;
      text-align: center;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    
    .content-image .image-card:hover {
      transform: scale(1.05);
    }
    
    .content-image .website {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 0.9rem;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      padding: 5px 10px;
      border-radius: 5px;
    }
    
    .content-image img {
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
      border-radius: 10px;
      transition: opacity 0.3s ease;
    }
    
    .content-image .image-card:hover img {
      opacity: 0.9;
    }
    
    .content-image .overlay-text h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .content-image .overlay-text p {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .content-image .contact-info {
      background: #4b0082;
      padding: 10px;
      border-radius: 5px;
      font-size: 1rem;
      margin-top: 20px;
      font-weight: bold;
    }
    
    .content-image .logo {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 1.2rem;
      font-weight: bold;
      color: #fff;
      background: linear-gradient(135deg, #ff4500, #ff8c00);
      padding: 5px 10px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .content-block {
        flex-direction: column;
        text-align: center;
      }
    
      .content-text h2::after {
        left: 50%;
        transform: translateX(-50%);
      }
    
      .content-image {
        margin-top: 20px;
      }
    
      .opportunities-section h1 {
        font-size: 2rem;
      }
    
      .content-text h2 {
        font-size: 1.8rem;
      }
    
      .content-text p {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 576px) {
      .opportunities-section {
        padding: 30px 0;
      }
    
      .opportunities-section h1 {
        font-size: 1.8rem;
      }
    
      .opportunities-section .subtext {
        font-size: 1rem;
      }
    
      .content-text h2 {
        font-size: 1.5rem;
      }
    
      .content-text p {
        font-size: 0.9rem;
      }
    
      .features-list li {
        font-size: 0.9rem;
        padding: 8px 15px;
      }
    
      .content-image .overlay-text h3 {
        font-size: 1.3rem;
      }
    
      .content-image .contact-info {
        font-size: 0.9rem;
      }
    }












    /* Contact 2*/
    .cta-section {
      min-height: 100vh;
      background-color: #f5f5f5;
      position: relative;
      overflow: hidden;
  }
  
  .cta-content {
      max-width: 600px;
      padding: 40px;
      z-index: 2;
  }
  
  .cta-content h1 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #000;
      margin-bottom: 20px;
  }
  
  .cta-content p {
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 30px;
  }
  
  .cta-content .btn {
      padding: 10px 30px;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
  }
  
  .cta-content .btn:hover {
      background-color: #333;
  }
  
  /* Background Shape */
  .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 60%;
      background-color: #d4e4d3;
      border-radius: 5%;
      z-index: 1;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .cta-content h1 {
          font-size: 1.8rem;
      }
  
      .cta-content p {
          font-size: 1rem;
      }
  
      .cta-content {
          padding: 20px;
      }
  
      .cta-section::before {
          width: 90%;
          height: 50%;
      }
  }
  
  @media (max-width: 576px) {
      .cta-content h1 {
          font-size: 1.5rem;
      }
  
      .cta-content p {
          font-size: 0.9rem;
      }
  
      .cta-content .btn {
          padding: 8px 20px;
          font-size: 0.9rem;
      }
  }















  
.footer-links {
  text-align: center;
  margin: clamp(10px, 2vw, 20px) 0;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.footer-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #007bff;
}

.separator {
  margin: 0 clamp(5px, 1vw, 10px);
  color: #888;
}

.footer-text {
  text-align: center;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  color: #888;
  margin-top: clamp(10px, 2vw, 20px);
  padding-bottom: clamp(10px, 2vw, 20px);
}

@media (max-width: 600px) {
  .contact-item {
    flex: 1 1 calc(50% - 20px);
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: clamp(5px, 1vw, 10px);
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 1vw, 10px);
  }

  .separator {
    display: none;
  }
}