/********** Template CSS **********/
:root {
    --primary: #aa2022;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0f63ac;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


 
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: 0px;
    transition: .5s;
    position: sticky;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel .carousel-item img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        height: 100%;
    }
}

@media (min-width: 769px) {
    #header-carousel .carousel-item {
        min-height: 600px; /* Adjust the height for desktop */
    }

    #header-carousel .carousel-item img {
        height: 600px; /* Ensure all images have a fixed height */
    }
}

/* .page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
} */

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9));
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}

.team-items {
    margin: -.75rem;
}

.team-item {
    height: auto;
    margin-bottom: 1rem;
}

.team-item .position-relative {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-item .img-fluid {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-item .bg-light {
    height: auto;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}




/* Mobile Specific Styles */
@media (max-width: 575.98px) {
    .team-item {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .team-item .position-relative,
    .team-item .img-fluid {
        height: 250px;
    }
    
    .team-item .bg-light {
        padding: 1rem;
    }
    
    .team-item h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .team-item span {
        font-size: 0.9rem;
    }
}

/* Tablet Styles */
@media (min-width: 576px) and (max-width: 767.98px) {
    .team-item {
        margin-bottom: 2rem;
    }
    
    .team-item .position-relative,
    .team-item .img-fluid {
        height: 275px;
    }
}

/* testimonial section*/
.testimonial-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    color: #0f63ac;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-title {
    color: #0a2647;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.testimonial-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    display: block;
}

.quote-mark {
    color: #0f63ac;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-name {
    color: #0a2647;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-profession {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border: 2px solid #0f63ac;
    border-radius: 0;
    background-color: transparent;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #0f63ac;
}

.carousel-item {
    transition: transform .6s ease-in-out;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .testimonial-img {
        width: 120px;
        height: 120px;
    }

    .testimonial-text {
        font-size: 1rem;
        padding: 0 15px;
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

/* footer icon color */
.container-fluid .btn-outline-light:hover {
    background-color: #aa2022 !important;
    border-color: #aa2022 !important;
}

.container-fluid .btn-outline-light:hover i {
    color: white !important;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Gallery Container */
.gallery {
    padding: 15px;
    width: 100%;
  }
  
  /* Gallery Grid */
  .gallery .row {
    margin: 0;
  }
  
  /* Gallery Item */
  .gallery-item {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Image Styles */
  .gallery-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-in-out;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  /* Download Icon */
  .download-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  
  .gallery-item:hover .download-icon {
    opacity: 1;
  }
  
  .download-icon:hover {
    background: rgba(41, 128, 185, 1);
  }
  
  /* Lightbox Styles */
  .glightbox {
    display: block;
    height: 100%;
  }
  
  .glightbox .gdesc {
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 1200px) {
    .col-lg-3 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
  }
  
  @media (max-width: 992px) {
    .col-lg-3 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    .col-md-4 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .gallery-item img {
      aspect-ratio: 4/3;
    }
  }
  
  /* Gallery Title */
  .gallery-title-container {
    margin-bottom: 2rem;
  }
  
  .gallery-title {
    font-size: 2rem;
    text-align: center;
    margin: 0;
    padding: 1rem 0;
  }

   /* Design for blog, notice and event in index page */

  .card {
    transition: transform 0.2s ease-in-out;
    }
    .card:hover {
        transform: translateY(-5px);
    }
    .notice-item:hover,
    .blog-item:hover,
    .event-item:hover {
        cursor: pointer;
    }
    .blog-item img {
        transition: transform 0.3s ease;
    }
    .blog-item:hover img {
        transform: scale(1.05);
    }