.footer-links a.active {
    color: #ffffff !important;
    font-weight: bold;
    /* text-decoration: underline; */
}
.contact .email-form {
    background-color: #f4f4f4;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
  }

  @media (max-width: 575px) {
    .contact .email-form {
      padding: 15px;
    }
  }

  .contact .email-form input[type=text],
  .contact .email-form input[type=email],
  .contact .email-form textarea {
    font-size: 13px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    background-color: #f9f9f9;
  }

  .contact .email-form input[type=text]:focus,
  .contact .email-form input[type=email]:focus,
  .contact .email-form textarea:focus {
    border-color: #6c63ff;
  }

  .contact .email-form input[type=text]::placeholder,
  .contact .email-form input[type=email]::placeholder,
  .contact .email-form textarea::placeholder {
    color: #999;
  }

  .contact .email-form button[type=submit] {
    color: #fff;
    background: #6c63ff;
    border: none;
    padding: 8px 25px;
    transition: background-color 0.3s ease;
    border-radius: 3px;
  }

  .contact .email-form button[type=submit]:hover {
    background: #6058e6;
  }
  .page-title-new {
    background-image: url('/path-to-your-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; /* Adjust the height as per your requirement */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
}

.section-tilte-team{
    text-align: center;
    margin-top: -56px;
    margin-bottom: 30px;
    position: relative;
}

/* Default styling for desktop */
.page-title-brand {
    height: 65vh; /* Responsive height based on viewport */
}

/* Adjustments for tablet screens */
@media (max-width: 1199px) {
    .page-title-brand {
        height: 45vh; /* Reduce height for smaller screens */
    }
}

@media (max-width: 768px) {
    .page-title-brand {
        height: 25vh; /* Reduce height for smaller screens */
    }
}

/* Adjustments for mobile screens */
@media (max-width: 480px) {
    .page-title-brand {
        height: 25vh; /* Reduce height further for mobile */
    }
}

/* Text color styling */
.white-text-color {
    color: #ffffff;
}

/* Background image slider styling */
#backgroundSlider {
    width: 100%;
    height: 65vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}



@media (max-width: 1199px) {
    #backgroundSlider {
        height: 45vh; /* Adjust to give more space vertically */
        background-size: cover; /* Keep cover to avoid empty space */
        background-position: center center; /* Adjust focus of image */
    }
}
@media (max-width: 768px) {
    #backgroundSlider {
        height: 20vh; /* Adjust to give more space vertically */
        background-size: cover; /* Keep cover to avoid empty space */
        background-position: center center; /* Adjust focus of image */
    }
}

@media (max-width: 480px) {
    #backgroundSlider {
        height: 20vh; /* Adjust to give more space vertically on very small screens */
        background-size: cover;
        background-position: center center;
    }
}



.events-section {
    margin-top: 50px;
    padding: 0 15px; /* Add padding for mobile edges */
}

.event-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px; /* Space between cards on smaller screens */
}

.event-card:hover {
    transform: scale(1.03);
}

.event-card-img img {
    border-radius: 5px 5px 0 0;
    width: 100%; /* Ensure images fill their container */
    height: auto; /* Maintain aspect ratio */
}

.event-card-body {
    padding: 15px;
}

.events-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0; /* Adds space above and below the banner */
}

.events-banner img {
    width: 100%; /* Makes the image take up the full width of the container */
    height: auto; /* Maintains the aspect ratio */
    object-fit: cover; /* Ensures the image scales nicely */
    border-radius: 10px; /* Optional rounded corners */
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .event-card {
        margin-bottom: 15px;
    }

    .event-card-body {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .events-banner img {
        margin-top: 15px;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .event-card {
        margin-bottom: 10px;
    }

    .event-card-body {
        padding: 8px;
    }

    .events-banner img {
        border-radius: 8px;
    }
}

.event-link {
    color: #010203 !important; /* Default link color (blue) */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth color change on hover */
}

.event-link:hover {
    color: #010203 !important; /* Darker blue on hover */
    text-decoration: none; /* Optional underline on hover */
}

.event-link:visited {
    color: #6c757d; /* Optional visited color (grayish) */
}
.form-check-input {
    background-color: white !important;
    border-color: #212529 !important;
}

/* Change checkmark color when checked */
.form-check-input:checked {
    background-color: #212529 !important; /* Blue background when checked */
    border-color: #212529 !important; /* Blue border when checked */
}

/* Optional: Make the checkmark color black instead of white */
.form-check-input:checked::before {
    color: black !important;
}


