body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    position: sticky; /* Make the navbar sticky */
    top: 0; /* Stick the navbar to the top */
    z-index: 1000; /* Ensure the navbar stays above other content */
    background-color: white;
}

.navbar-brand img {
    max-height: 86px;
}

.navbar-nav .nav-link {
    color: black;
    font-size: 16px;
    transition: color 0.3s;
    margin: 0 30px; /* Adjust spacing between links */
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #056cb5;
}

.navbar-toggler {
    border: none;
}

/* Banner image styles */
.banner-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Make sure it takes up the full viewport height */
    overflow: hidden; /* Prevent scrolling */
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without distortion */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.5); /* Transparent black overlay */
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    text-align: center;
    font-size: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle text shadow */
}

.banner-content h1 {
    font-size: 3rem; /* Increase font size for the heading */
    font-weight: 700; /* Bold text */
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.5rem; /* Slightly larger font for the description */
    font-weight: 500; /* Medium weight */
}

.footer {
    background-color: rgba(
        var(--bs-light-rgb),
        var(--bs-bg-opacity)
    ) !important;
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.footer-logo img {
    max-width: 213px;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-nav ul li {
    display: inline-block;
}

.footer-nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #056cb5; /* Blue color on hover */
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.footer-social .social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

.footer-social .social-icon img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
.container {
  max-width: 1500px !important;
}
.footer-rights {
  color: #056cb5;
}
.contact-us {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #056cb5;
}

.section-description {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.form-label {
  font-weight: 500;
  color: #343a40;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 10px 15px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #056cb5;
  box-shadow: 0 0 0 0.2rem rgba(5, 108, 181, 0.25);
}

.btn-primary {
  background-color: #056cb5;
  border: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #03497a;
}
.email-contact {
  text-decoration: none;
  color: #056cb5;
}


@media (max-width: 992px) {
    .banner-container {
        height: 100%; /* Reduce container height for tablets */
    }

    .banner-content h1 {
        font-size: 2.5rem; /* Smaller heading on tablets */
    }

    .banner-content p {
        font-size: 1.2rem; /* Smaller description text on tablets */
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: 100%; /* Further reduce container height for smaller screens */
    }
    .banner-image {
        object-fit: contain;
    }

    .banner-content h1 {
        font-size: 2rem; /* Smaller heading on mobile */
    }

    .banner-content p {
        font-size: 1rem; /* Smaller description text on mobile */
    }
    .footer-nav ul {
        flex-direction: column; /* Stack links vertically */
        align-items: start;
    }

    .footer-nav ul li {
        text-align: center; /* Center-align links */
    }

    .footer-social {
        flex-direction: column; /* Stack social icons vertically */
        gap: 10px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-description {
        font-size: 1rem;
    }
    .navbar-nav .nav-link{
        margin: 0px !important;
    }
    .image-box img {
        height: 300px !important; /* Adjust height for mobile */
      }
      .info-box {
        padding: 13px !important;  /* Add some padding on small screens */
      }
      .about-us-title{
        font-size: 1.6rem !important;
      }
      .entry-row{
        display: block !important;
      }
}

@media (max-width: 576px) {
    .banner-container {
        height: 100%; /* Reduce container height further on small mobile screens */
    }
    .banner-image {
        object-fit: contain;
    }

    .banner-content h1 {
        font-size: 1.8rem; /* Further reduce heading size */
    }

    .banner-content p {
        font-size: 0.9rem; /* Further reduce description text */
    }
    .navbar-nav .nav-link{
        margin: 0px !important;
    }
    .image-box img {
        height: 300px !important; /* Adjust height for mobile */
      }
      .info-box {
        padding: 13px !important;  /* Add some padding on small screens */
      }
      .about-us-title{
        font-size: 1.6rem !important;
      }
      .entry-row{
        display: block !important;
      }
}
.policy-link {
    font-size: 1.1rem;
    margin-bottom: 35px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  .policy-link:hover {
    background-color: #e2e6ea;
  }
  .policy-title {
    color: #056cb5;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
  }
  .policy-link a{
      text-decoration: none;
      color: #056cb5;
  }
  .custom-bg {

    color: white;
    padding: 50px 0;
  }

  /* Text Section - Card Style */
  .info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    /* box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1); */
  }

  /* Image Styling */
  .image-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
  }

  .image-box img:hover {
    transform: scale(1.03);
  }

  /* Button Styling */
  .btn-custom {
    background: #056cb5;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s;
  }

  .btn-custom:hover {
    background: #056cb5;
    color: white;
  }

  .payment-info {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.payment-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        #0056b3 25%,
        transparent 25%,
        transparent 75%,
        #0056b3 75%,
        #0056b3
    );
    background-size: 20px 20px;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.payment-info .section-title {
   
    margin-bottom: 1rem;
}

.payment-info .section-description {
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.payment-info .card {
    border: none;
    transition: transform 0.3s ease;
}

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

.payment-info p {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1rem;
}

.payment-info strong {
    color: #0056b3;
}

.alert-info {
    background-color: rgba(0,86,179,0.1);
    border: none;
    color: #0056b3;
}

.hover-effect {
  transition: all 0.3s ease;
}

.hover-effect:hover {
  color: #3498db !important;
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #3498db;
  transform: translateY(-3px);
}

.footer-section{
  background:#61a0d9;
}