:root {
    --college-blue: #1a4b7a;
    --hover-yellow: #ffc107;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.nav-link:focus,
.dropdown-item:focus,
.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.custom-navbar {
    background-color: var(--college-blue);
    min-height: 82px;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-circle {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--hover-yellow);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-brand {
    margin-right: 1.8rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 8px 14px !important;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--hover-yellow) !important;
}

.dropdown-menu {
    margin-top: 15px !important;
    border-radius: 8px;
    background-color: white !important;
}

.dropdown-item {
    color: #333333 !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    background-color: var(--college-blue) !important;
    color: white !important;
}

@media (min-width: 1200px) {
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu .custom-sub {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        margin-top: -5px !important;
        margin-left: 5px;
    }

    .dropdown-submenu:hover>.custom-sub {
        display: block;
    }
}

@media (max-width: 1199px) {
    .custom-navbar {
        padding: 10px 0;
    }

    .logo-circle {
        width: 68px;
        height: 68px;
    }

    .navbar-collapse {
        background-color: var(--college-blue);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;

        max-height: 70vh;
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 6px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .navbar-collapse::--webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }

    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px 0 !important;
        width: 100%;
    }

    .dropdown-menu {
        margin-top: 5px !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        border: none !important;
        width: 100% !important;
        position: static !important;
        float: none !important;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 10px 15px !important;
    }

    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2) !important;
        color: var(--hover-yellow) !important;
    }

    .dropdown-submenu .custom-sub {
        display: none;
        padding-left: 20px;
        background-color: rgba(0, 0, 0, 0.15) !important;
    }

    .dropdown-submenu .custom-sub.show {
        display: block !important;
    }


}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -2px;
}




.hero-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 82px);
    margin-top: 82px;
    overflow: hidden;
    background-color: #000;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 75, 122, 0.45), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.hero-buttons-group,
.hero-buttons-group a {
    pointer-events: auto;
}

#heroSlider {
    width: 100%;
    height: 100%;
}

#heroSlider .carousel-inner,
#heroSlider .carousel-item {
    height: 100%;
}

#heroSlider .carousel-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out !important;
}

.slide-title {
    font-size: 3.5rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-buttons-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-hero-apply {
    display: inline-flex;
    align-items: center;
    background-color: #f1cc49 !important;
    color: #212529 !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-apply:hover {
    background-color: #dfba3c !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 204, 73, 0.5);
}

.btn-hero-more {
    display: inline-flex;
    align-items: center;
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none !important;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-more:hover {
    background-color: #ffffff !important;
    color: #1a4b7a !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 15;
}

@media (max-width: 1199px) {
    .hero-wrapper {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 767.98px) {
    .hero-wrapper {
        height: 540px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 35px !important;
    }

    .hero-buttons-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn-hero-apply,
    .btn-hero-more {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 1rem;
    }
}




.features-section {
    background-color: #f8f9fa;
}

.section-main-title {
    color: var(--college-blue);
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    position: relative;
}

.title-underline {
    width: 200px;
    height: 4px;
    background-color: var(--hover-yellow);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(26, 75, 122, 0.12);
    border-color: rgba(26, 75, 122, 0.1);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 75, 122, 0.08);
    color: var(--college-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background-color: var(--college-blue);
    color: var(--hover-yellow);
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-main-title {
        font-size: 1.7rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-text {
        font-size: 1rem;
    }
}




.stats-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-container {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

.stat-counter-card {
    background-color: var(--college-blue);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(26, 75, 122, 0.15);
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    color: #ffffff;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.stat-counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 75, 122, 0.25);
    background-color: #164069;
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-desc {
        font-size: 0.85rem;
    }
}




.student-life-section {
    background-color: #f8f9fa !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 75, 122, 0.85), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .gallery-grid .col-md-4 .gallery-item {
        height: 100%;
    }
}

@media (max-width: 767.98px) {
    .gallery-item {
        height: 220px;
    }

    .gallery-text {
        font-size: 0.95rem;
    }
}




.partners-section {
    overflow: hidden;
    background-color: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.logos-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.logos-marquee-track {
    display: table;
    width: max-content;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

.partner-logo-item {
    display: inline-block;
    vertical-align: middle;
    width: 180px;
    margin: 0 40px;
    text-align: center;
}

.partner-logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logos-marquee-wrapper:hover .logos-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .partner-logo-item {
        width: 130px;
        margin: 0 25px;
    }

    .partner-logo-item img {
        max-height: 50px;
    }
}




.contact-map-section {
    background-color: #f8f9fa !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-box {
    background-color: var(--college-blue);
    color: #ffffff;
}

.contact-icon-mini {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--hover-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-container {
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100% !important;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
}

@media (min-width: 992px) {
    .contact-map-section .row {
        display: flex;
        align-items: stretch;
    }
}




.main-footer {
    background-color: #113252;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-title {
    color: var(--hover-yellow);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--hover-yellow);
    transform: translateX(5px);
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list i {
    font-size: 1.1rem;
    color: var(--hover-yellow) !important;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: var(--hover-yellow);
    color: #113252;
    transform: translateY(-3px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 767.98px) {
    .main-footer .col-6 {
        margin-bottom: 20px;
    }
}




.line-height-lg p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.director-photo-wrapper {
    border: 5px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.director-photo-wrapper:hover {
    transform: translateY(-5px);
}

.info-icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(17, 50, 82, 0.08);
    color: #113252;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.custom-director-list span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4) !important;
}



.history-text p {
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
    margin-bottom: 20px;
}

.history-text .lead-text {
    font-size: 1.15rem;
    color: #113252;
}

.stat-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.transition-hover {
    transition: all 0.25s ease;
}

.transition-hover:hover {
    background-color: #e9ecef !important;
    transform: translateX(3px);
}



.custom-vorak-list .transition-hover {
    transition: all 0.2s ease-in-out;
    border-left: 3px solid transparent;
}

.custom-vorak-list .transition-hover:hover {
    background-color: #f0f4f8 !important;
    border-left: 3px solid #113252;
    transform: translateX(5px);
}


.custom-career-list .transition-hover {
    transition: all 0.2s ease-in-out;
    border-left: 3px solid transparent;
}

.custom-career-list .transition-hover:hover {
    background-color: #f0f4f8 !important;
    border-left: 3px solid #113252;
    transform: translateX(5px);
}


.custom-praktika-list .transition-hover {
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.custom-praktika-list .transition-hover:hover {
    background-color: #e8f5e9 !important;
    border-bottom: 2px solid #2e7d32;
    transform: translateY(-3px);
}

.carousel-item img {
    filter: brightness(0.9);
}

.carousel-caption h5 {
    color: rgba(255, 255, 255, 0.637);
    font-weight: bold;
}



.btn-facebook-custom {
    background-color: #1877F2 !important;
    border-color: #1877F2 !important;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-facebook-custom:hover {
    background-color: #145dbf !important;
    border-color: #145dbf !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-facebook-custom:active,
.btn-facebook-custom:focus,
.btn-facebook-custom:focus-visible {
    background-color: #0e3f82 !important;
    border-color: #0e3f82 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(24, 119, 242, 0.4) !important;
}



.chair-card {
    transition: all 0.3s ease;
    border-left: 4px solid #1A5490 !important;
}

.chair-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    border-left-color: #F4D03F !important;
}

.chair-icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    background-color: rgba(26, 84, 144, 0.1);
    color: #1A5490;
}



.contact-icon-box {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    background-color: rgba(26, 84, 144, 0.1);
    color: #1A5490;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-box {
    background-color: #1A5490;
    color: #ffffff;
    transform: scale(1.1);
}

.form-control:focus {
    border-color: #1A5490;
    box-shadow: 0 0 0 0.25rem rgba(26, 84, 144, 0.15);
}

.btn-submit {
    background-color: #1A5490;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #144373;
    color: #F4D03F;
    transform: translateY(-2px);
}



.partnership-section {
    background-color: #f8f9fa;
    padding-top: 120px !important;
}

.partnership-section .section-title {
    color: #1a4b7a;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.partnership-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.partner-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 75, 122, 0.15);
}

.partner-logo-wrapper {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.partner-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
}

.partner-name {
    font-size: 0.95rem;
    color: #495057;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.section-divider {
    border-top: 2px dashed rgba(26, 75, 122, 0.15);
}

.agreement-box {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    height: 100%;
    border-left: 4px solid #1a4b7a;
}

.col-md-6:first-child .agreement-box {
    border-left-color: #ffc107;
}

.agreement-header {
    display: flex;
    align-items: center;
}

.agreement-header h4 {
    color: #1a4b7a;
}

.header-icon {
    font-size: 1.6rem;
    margin-right: 12px;
}

.agreement-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.agreement-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #5a626a;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.agreement-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    top: -2px;
    color: #ffc107;
    font-size: 1.6rem;
    line-height: 1;
}

.contract-dots li::before {
    color: #1a4b7a;
}

.agreement-list li:hover {
    color: #1a4b7a;
    transition: color 0.2s ease;
}



.applicant-section {
    background-color: #f4f6f9;
}

.applicant-section .applicant-title {
    color: #1a4b7a;
    position: relative;
    padding-bottom: 15px;
}

.applicant-section .applicant-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.applicant-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.docs-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.docs-list li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
}

.docs-list li:last-child {
    border-bottom: none;
}

.docs-list li .icon-blue {
    font-size: 1.4rem;
    color: #1a4b7a;
    background-color: #eef4fa;
    padding: 8px 12px;
    border-radius: 10px;
    margin-right: 20px;
    display: inline-block;
    flex-shrink: 0;
}

.payment-alert {
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    border-radius: 12px;
}

.bank-account-box {
    background-color: #ffffff;
    border: 2px dashed #1a4b7a;
    border-radius: 8px;
    display: inline-block;
    padding: 10px 25px !important;
}

.letter-spacing-1 {
    letter-spacing: 1.5px;
}

.btn-apply-now {
    background-color: #1a4b7a;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.btn-apply-now:hover {
    background-color: #ffc107;
    color: #1a4b7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3) !important;
}

.btn-apply-now:active {
    transform: translateY(-1px);
}

.docs-list li .icon-blue {
    font-size: 1.4rem;
    color: #1a4b7a;
    background-color: #eef4fa;
    padding: 8px 12px;
    border-radius: 10px;
    margin-right: 20px;
    display: inline-block;
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
}



.events-section {
    background-color: #f8f9fa;
    padding-top: 110px !important;
}

.events-section .events-page-title {
    color: #1a4b7a;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.events-section .events-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.event-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 75, 122, 0.15);
}

.event-image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #1a4b7a;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #ffc107;
}

.event-date-badge .day {
    font-size: 1.35rem;
    font-weight: 700;
}

.event-date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-card-title {
    color: #1a4b7a;
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.event-card:hover .event-card-title {
    color: #1a4b7a;
}

.event-card-text {
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-read-more {
    color: #1a4b7a;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    padding-top: 10px;
    border-top: 1px solid #f1f1f1;
    width: 100%;
}

.btn-read-more i {
    transition: transform 0.2s ease;
}

.btn-read-more:hover {
    color: #ffc107;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}



#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #113252;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

.creative-loader {
    width: 250px;
    text-align: center;
}

.loader-logo {
    color: #ffffff;
    font-size: 3rem;
    letter-spacing: 3px;
    font-family: sans-serif;
    animation: fadeInDown 0.8s ease-out forwards;
}

.loader-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress-line {
    width: 100%;
    height: 100%;
    background: #ffc107;
    position: absolute;
    left: -100%;
    animation: loadingBar 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-status-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: blinkText 1.5s infinite ease-in-out;
}

@keyframes loadingBar {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blinkText {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}