@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    border-radius: 100%;
}

::-webkit-scrollbar-track {
    background: #FFF;
}

::-webkit-scrollbar-thumb {
    background: #3D4785;
}

html,
body {
    height: 100%;
    width: 100%;
}

#preLoader {
    background: #fff url(img/Hourglass.gif) no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: #3D4785;
    padding: 12px 36px;
}

.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: white;
    transition: 0.15s ease-in-out;
    position: relative;
    font-size: 16px !important;
    text-transform: uppercase;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    /* background-color: #B85042; */
    transition: 0.15s ease-in-out;
}

.menu a:before {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 50px;
    transform: scaleX(0);
    transition: transform 0.2s linear;
}

.menu a:hover:before {
    transform: scaleX(1);
}

.close-menu i,
.open-menu i {
    color: white;
}

.menu li a:hover:after {
    width: 100%;
}

.open-menu,
.close-menu {
    position: absolute;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}

@media(max-width: 1200px) {
    .menu {
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
        width: 80vw;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        backdrop-filter: blur(200px);
        transition: all 0.2s ease-in-out;
    }

    .menu li {
        margin-top: 40px;
    }

    .menu li a {
        padding: 10px;
    }

    .open-menu,
    .close-menu {
        display: block;
    }

    #check:checked~.menu {
        right: 0;
    }
}

.logo-main {
    display: flex;
    gap: 12px;
}

.logo {
    font-size: 30px;
    font-weight: 600;
    height: 56px;
    display: flex;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    color: #FC3314;
}

/* Add this to your existing CSS */
.front-logo {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
}

.front-logo video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.25;
}

.front-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.logo-side {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-side img {
    position: relative;
    /* Changed from absolute to relative */
    border-radius: 20px;
    max-width: 80%;
    transition: transform 0.3s ease;
}

.carousel-side {
    width: 70%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: auto;
}

/* Swiper styles for front carousel */
.frontSwiper {
    width: 80%;
    height: 70%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.frontSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.frontSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Navigation button styles */
.swiper-button-prev,
.swiper-button-next {
    color: #3D4785;
    background-color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination styles */
.swiper-pagination-bullet {
    background: #3D4785;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #3D4785;
    opacity: 1;
}

/* Play/Pause button styles */
.swiper-autoplay-control {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-autoplay-control:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.swiper-autoplay-control i {
    color: #3D4785;
    font-size: 14px;
}

/* Responsive adjustments */
@media only screen and (max-width: 900px) {
    .front-content {
        flex-direction: column;
    }

    .logo-side,
    .carousel-side {
        width: 100%;
        /* height: 50%; */
    }

    .frontSwiper {
        width: 90%;
        height: 80%;
    }

    .logo-side img {
        max-width: 70%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 32px;
        height: 32px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }
}


/* Added Section end */

video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.25;
}

.news-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 500;
    left: 0;
    /* height: auto; */
    font-size: 14px;
    background: #D3D3D3;
    color: #000;
    font-family: 'Poppins', sans-serif;
    padding: 8px 32px;
    display: flex;
    box-shadow: 0 4px 40px -8px rgb(0, 51, 98);
    overflow: hidden;
}

.news-container::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    /* background: linear-gradient(transparent, #003262); */
}

.news-container .news-heading {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    padding-right: 20px;
    margin-right: 20px;
    color: #3D4785;
    border-right: 1px solid #fff;
}

.news-container .news {
    position: relative;
    width: 100%;
}

.news-container .news-single {
    color: #000;
    text-decoration: none;
    font-weight: normal;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-8px);
    transition: all 400ms ease;
    pointer-events: none;
}

.news-container .news-single.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mentor {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 10vw;
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 128px;
}

.mentor-left img {
    border-radius: 100%;
    background-color: #3D4785;
    padding: 15px;
    width: 350px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mentor-right h1 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    /* padding-top: 64px; */
    padding-bottom: 32px;
}

.mentor-right li {
    list-style: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: black;
    margin-top: 10px;
    text-align: justify;
}

.mentor-right .social-links-prof i {
    font-size: 32px;
    margin: 24px 3px;
    cursor: pointer;
    color: #3D4785;
    transition: all .4s;
}

.mentor-right .social-links-prof i:hover {
    color: #3d4785a9;
}

.mentor-right {
    width: 100%;
    height: auto;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    padding-top: 32px;
    padding-bottom: 32px;
    /* margin: 4% 10vw; */
    border-radius: 10px;
}

.scrolling-info {
    height: 300px;
    /* fixed height */
    overflow-y: hidden;
    /* hide vertical scrollbar */
    padding: 10px;
}

#notice-container,
#achieve-container {
    height: 100%;
    /* take full height of parent */
    overflow-y: scroll;
    /* enable vertical scrolling */
    overflow-y: hidden;
    /* hide vertical scrollbar */
}

.info-item,
.notice-item {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.info-date,
.notice-date {
    font-size: 14px;
    color: #337ab7;
    text-decoration: none;
}

.about {
    width: 100%;
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
}

.about h1 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    padding-top: 32px;
    /* padding-bottom: 64px; */
    text-align: center;
}

.about p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: black;
    margin-top: 32px;
    text-align: justify;
    padding: 0 10vw;
}

.about-do {
    width: 100%;
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
}

.about-do h1 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    padding-top: 32px;
    /* padding-bottom: 64px; */
    text-align: center;
}

.about-do p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: black;
    margin-top: 32px;
    text-align: justify;
    padding: 0 10vw;
}

.about-main {
    display: flex;
    padding: 0 10vw;
    padding-top: 32px;
    padding-bottom: 32px;
    justify-content: space-between;
    align-items: center;
    gap: 128px
}

.about-main-left h1,
.about-main-right h1 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    padding-top: 32px;
    padding-bottom: 32px;
    /* text-align: center; */
}

.about-main-right,
.about-main-left {
    width: 100%;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: black;
    text-align: justify;
}

.underline {
    height: 5px;
    width: 10px !important;
    border-radius: 20px;
    margin-top: 10px !important;
    background-color: #3D4785;
    margin: auto;
    text-align: center;
    padding: 0 10vw;
    /* margin-bottom: 64px; */
}

.highlight-gallery {
    width: 100%;
    padding: 0 10vw;
    height: 300px;
    overflow: hidden;
}

.home-highlight {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.home-highlight a {
    margin: 10px;
    display: block;
    height: 100%;
    width: 100%;
}

.home-highlight a img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    transition: transform 1s ease;
    /* Add a smooth zoom transition */
    cursor: pointer;
}

.home-highlight a img:hover {
    opacity: 0.5;
    /* transform: scale(1.2); */
    /* overflow: hidden; */
    /* transition: opacity 0.5s; */
}

.home-highlight a img:hover::after {
    content: attr(data-description);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.home-highlight a img:hover::after:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.article {
    width: 100%;
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
}

.article h1 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    padding-top: 32px;
    /* padding-bottom: 32px; */
    text-align: center;
}

.article h3 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 27px;
    /* padding-top: 24px; */
    /* padding-bottom: 32px; */
    text-align: center;
}

.awards {
    width: 100%;
    height: auto;
    background-image: url("/img/about-back.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 24px 0px;
}

.awards h1 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    padding-top: 32px;
    /* padding-bottom: 64px; */
    text-align: center;
}

.work-slide {
    width: 840px;
}

.slide {
    font-size: 16px;
    display: flex;
    text-align: center;
    /* flex-direction: column; */
    /* align-items: center; */
    justify-content: space-evenly;
    font-family: 'Poppins', sans-serif;
    width: 420px;
    height: auto;
}

.slide-event {
    color: #3D4785;
}

.slide-testi {
    color: #1F1F1F;
}

.slideBar {
    display: flex;
    align-items: center;
    margin-top: 48px;
    justify-content: center;
}

.slide h3 {
    margin: 4px 0px;
}

.slideBar p,
.slideBar img,
.slideBar h4 {
    margin: 24px 8px;
}

.slide p {
    text-align: center;
}

.contact {
    width: 100%;
    height: auto;
    /* background-color: #3C4DC2; */
    display: flex;
    padding: 0 10vw;
    justify-content: space-between;
}

.contactLeft h1 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    padding-top: 128px;
    padding-bottom: 32px;
}

.contactLeft p {
    font-size: 16px;
    color: #3D4785;
    font-family: 'Poppins', sans-serif;
}

.contactDet {
    display: flex;
    margin: 32px 0;
}

.contactDet img {
    margin-right: 24px;
    width: 24px;
    height: 24px;
}

.contactRight {
    width: 100%;
    padding-top: 128px;
    padding-bottom: 32px;
}

.iconLink {
    display: flex;
    /* margin-top: 96px; */
}

.iconLink i {
    margin-right: 24px;
    transition-delay: 0.1s;
    transition-duration: 0.1s;
}

.iconLink i:hover {
    opacity: 0.5;
}

.contactLeft {
    width: 100%;
}

.contactRight {
    width: 100%;
    padding-left: 24px;
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
}

.footer {
    width: 100%;
    height: 120px;
    background-color: #3D4785;
    display: flex;
    margin-top: 2px;
    align-items: center;
    justify-content: space-evenly;
}

.footer a li {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-weight: 500;
    list-style: none;
}

.footer a li:hover {
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}

.to-top {
    background: white;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1f1f1f;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

.logo a {
    display: flex;
    gap: 12px;
}

.logo img {
    font-size: 30px;
    font-weight: 600;
    display: flex;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    color: #FC3314;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.see-all {
    font-size: 16px;
    color: #3D4785;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
    padding-top: 32px;
    padding-bottom: 32px;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 40px -8px rgb(0, 51, 98);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    margin: 0;
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
}

.close-modal {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #3D4785;
}

.close-modal:hover {
    color: #3d4785a9;
}

/* Styles specific to content inside modal */
.modal-content .news-item,
.modal-content .achievement-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-content .news-item:last-child,
.modal-content .achievement-item:last-child {
    border-bottom: none;
}

.modal-content h3 {
    color: #3D4785;
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.modal-content .date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Make the modal scrollable with your custom scrollbar */
.modal-content::-webkit-scrollbar {
    width: 10px;
    border-radius: 100%;
}

.modal-content::-webkit-scrollbar-track {
    background: #FFF;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #3D4785;
}

/* Override the scrolling-info class inside modals */
.modal-content .scrolling-info {
    height: auto;
    max-height: 60vh;
    overflow-y: auto;
    padding: 0;
}

/* Media Queries for Mobile View */
/* @media only screen and (max-width:900px){

} */
/* Media Queries for IPad View */
@media only screen and (min-width:0) and (max-width:900px) {
    .nav {
        display: flex;
        /* position: fixed; */
        justify-content: space-evenly;
        align-items: center;
        background-color: #3D4785;
        padding: 40px 0px;
        height: 4725px;
        width: 100%;
    }

    .logo-main {
        display: flex;
        gap: 24px;
    }

    .logo {
        font-size: 24px;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        letter-spacing: -1px;
        color: #3D4785;
    }

    .navLinks {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 80vw;
    }

    .navLinks a {
        text-decoration: none;
        color: white;
        font-size: 12px;
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
    }

    .logo {
        height: 40px;
        margin-left: -15px;
        font-family: 'Inter', sans-serif;
    }

    .front-logo {
        width: 100%;
        height: 90vh;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .front-logo img {
        position: absolute;
        border-radius: 20px;
        /* backdrop-filter: blur(10px); */
        /* width: 80vw; */
        /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
        height: 150px;
    }

    video {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        pointer-events: none;
        right: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0.25;
    }

    .news-container {
        height: 72px;
    }

    .article {
        width: 100%;
        height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .article h1 {
        color: #3D4785;
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        padding-top: 32px;
        /* padding-bottom: 32px; */
        text-align: center;
    }

    .article h3 {
        color: #3D4785;
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        /* padding-top: 24px; */
        /* padding-bottom: 32px; */
        text-align: center;
    }

    .about {
        width: 100%;
        height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .about h1 {
        color: #3D4785;
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        padding-top: 32px;
        /* padding-bottom: 64px; */
        text-align: center;
    }

    .about p {
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        color: black;
        margin-top: 32px;
        text-align: justify;
        padding: 0 10vw;
    }

    .about-do {
        width: 100%;
        height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .about-do h1 {
        color: #3D4785;
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        padding-top: 32px;
        /* padding-bottom: 64px; */
        text-align: center;
    }

    .about-do p {
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        color: black;
        margin-top: 32px;
        text-align: justify;
        padding: 0 10vw;
    }

    .mentor {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 0px;
    }

    .mentor-left img {
        padding: 15px;
    }

    .mentor-right h1 {
        font-size: 24px;
        /* padding-top: 64px; */
    }

    .mentor-right li {
        font-size: 14px;
        margin-top: 10px;
    }

    .mentor-right .social-links-prof i {
        font-size: 24px;
        margin: 24px 3px;
    }

    .scrolling-info {
        height: 450px;
        /* fixed height */
        overflow-y: hidden;
        /* hide vertical scrollbar */
        padding: 10px;
    }

    .about-main {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 0px;
    }

    .about-main h1 {
        font-size: 24px;
        padding-bottom: 16px;
    }

    .about-main {
        font-size: 14px;
    }

    .about-main-right,
    .about-main-left {
        font-size: 14px;
    }

    .awards {
        width: 100%;
        height: auto;
        background-image: url("/img/about-back.png");
        background-position: left;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 24px 0px;
    }

    .awards h1 {
        color: #3D4785;
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        padding-top: 32px;
        /* padding-bottom: 64px; */
        text-align: center;
    }

    .work-slide {
        width: 100vw;
    }

    .slide {
        font-size: 14px;
        display: flex;
        text-align: center;
        /* flex-direction: column; */
        /* align-items: center; */
        justify-content: space-evenly;
        font-family: 'Poppins', sans-serif;
        width: 50vw;
        height: auto;
    }

    .slide-event {
        color: #3D4785;
    }

    .slide-testi {
        color: #1F1F1F;
    }

    .slideBar img {
        width: 100vw;
    }

    .slideBar {
        display: flex;
        align-items: center;
        margin-top: 48px;
        justify-content: center;
    }

    .slide h3 {
        margin: 4px 0px;
    }

    .slideBar p,
    .slideBar img,
    .slideBar h4 {
        margin: 5% 0;
    }

    .slide p {
        text-align: center;
    }

    .contact {
        width: 100vw;
        height: auto;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .contactLeft h1 {
        color: #3D4785;
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .contactLeft p {
        font-size: 14px;
        color: #3D4785;
        font-family: 'Poppins', sans-serif;
    }

    .contactDet {
        display: flex;
        margin: 32px 0;
    }

    .contactDet img {
        margin-right: 24px;
        height: 24px;
        width: 24px;
    }

    .iconLink {
        display: flex;
        /* margin-top: 64px; */
    }

    .iconLink i {
        margin-right: 24px;
        transition-delay: 0.1s;
        transition-duration: 0.1s;
    }

    .iconLink i:hover {
        opacity: 0.5;
    }

    .contactLeft {
        width: 80vw;
        margin-bottom: 20px;
    }

    .contactRight {
        width: 80vw;
        padding-left: 0;
    }

    .footer {
        width: 100vw;
        height: 180px;
        background-color: #3D4785;
        display: flex;
        flex-direction: column;
    }

    .footer img {
        width: 150px;
    }

    .footer {
        font-size: 14px;
        /* margin: 24px 0; */
        font-family: 'Inter', sans-serif;
        font-family: 'Montserrat', sans-serif;
        color: white;
        list-style: none;
    }

    .logo a {
        display: flex;
        gap: 24px;
    }

    .logo img {
        font-size: 24px;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        letter-spacing: -1px;
        color: #3D4785;
    }
}

/* Slider container styles */
.front-logo {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 80vh;
}

/* Swiper container */
.swiper.frontSlider {
    width: 100%;
    height: 100%;
}

/* Slide styles */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Image styles */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation arrows styling */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: rgba(61, 71, 133, 0.5);
    /* Using the site's blue color with transparency */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Pagination bullets */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: #3D4785;
    /* Using the site's blue color */
    opacity: 1;
}

/* Overlay logo styling if needed */
.overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.overlay-logo img {
    max-width: 200px;
    height: auto;
}

/* Media queries for different screen sizes */
@media (max-width: 1200px) {
    .front-logo {
        max-height: 70vh;
    }
}

@media (max-width: 992px) {
    .front-logo {
        max-height: 60vh;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .front-logo {
        max-height: 50vh;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }

    .overlay-logo img {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .front-logo {
        max-height: 40vh;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 28px;
        height: 28px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    .overlay-logo img {
        max-width: 120px;
    }
}