:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
.logo{
    height:50px;
}

pre {
    font-family: "Poppins", sans-serif;
    color: #333; /* Dark text for better contrast */
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
}

.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.nav-item .active{
  color: var(--primary-color) !important;
}
.video-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.video-caption{
    margin-top:100px;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.why-choose-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.department-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.department-img {
    height: 200px;
    object-fit: cover;
}

.facility-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-img {
    height: 200px;
    object-fit: cover;
}

.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    
    .section-title {
        margin-bottom: 30px;
    }
}

.section-padding{
    padding: 50px 0;
}

.vision-mission-card{
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-social .btn {
    width: 35px;
    height: 35px;
    padding: 6px;
    transition: all 0.3s ease;
}

.profile-social .btn:hover {
    background: #0d6efd;
    color: var(--primary-color);
}

.main-event {
    transition: transform 0.5s ease;
}

.main-event:hover {
    transform: translateY(-5px);
    box-shadow: 3px 5px 8px rgba(0,0,0,0.1);
}

.main-event .card-img-top {
    height: 35vh;
    object-fit: cover;
}

.date-tag {
    top: 0;
    left: 0;
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.date-tag i {
    margin-right: 4px; /* Adjust the spacing between the icon and the date */
}

.event-card {
    position: relative;
    width: 100%;
}
.event-image {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.event-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tag {
    background: var(--primary-color);
    /*background: rgba(0, 0, 0, 0.7);*/
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight:bold;
}

/* Info box container */
.contact-details-wrapper {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.contact-detail-content h5 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-detail-content pre {
    margin: 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark-color);
    white-space: pre-wrap;
}

/* Form container */
.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper .form-control {
    border: 1px solid var(--secondary-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease-in-out;
    color: var(--dark-color);
    background-color: var(--white);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.contact-form-wrapper .btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.contact-form-wrapper .btn-submit:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

textarea{
    resize:none;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-img-lg {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-img-sm {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.stars {
    color: #ffc107;
}

.stars-outline {
    color: #e4e5e9;
}
/* Design 3 - Border Left Accent */
.testimonial-3 {
    background: #fff;
    border-left: 5px solid #007bff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.container-padding{
    margin-top:150px; 
    margin-bottom: 50px;
}

/*Parallax */
.parallax-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(100, 0, 150, 0.3));
  z-index: 1;
}

.floating-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  color: white;
}

.floating-card h1 {
  font-size: 3rem;
  font-weight: 700;
}

.floating-card p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.floating-card .btn {
  font-size: 1rem;
  padding: 10px 30px;
}

@media (max-width: 768px) {
  .floating-card {
    padding: 40px 20px;
  }

  .floating-card h1 {
    font-size: 2rem;
  }

  .floating-card p {
    font-size: 1rem;
  }
}