@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/tt_firs_neue/TT Firs Neue Trial Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/tt_firs_neue/TT Firs Neue Trial Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/tt_firs_neue/TT Firs Neue Trial Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('../fonts/tt_firs_neue/TT Firs Neue Trial Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    background-color: white;
    font-family: 'TT Firs Neue', sans-serif;
    color: white;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.tedris-section {
    margin-top: -150px;
    position: relative;
    padding-top: 50px;
    background: #F6F6F6;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 50% 10%;
    border-top-right-radius: 50% 10%;
}

.tedris-title {
    font-size: 48px;
    background: #7900FB;
    background: linear-gradient(to right, #6a00db 25%, #480192 45%, #020003 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.card {
    background: rgb(25, 1, 49);
    background: linear-gradient(143deg, rgba(25, 1, 49, 1) 0%, rgba(185, 125, 248, 1) 53%, rgba(25, 1, 49, 1) 100%);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: visible;
    border-radius: 16px;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .tedris-section {
        border-top-left-radius: 50% 8%;
        border-top-right-radius: 50% 8%;
        margin-top: -120px;
        padding-top: 80px;
    }
}

@media (max-width: 1024px) {
    .tedris-section {
        border-top-left-radius: 50% 6%;
        border-top-right-radius: 50% 6%;
        margin-top: -100px;
        padding-top: 70px;
    }

    .tedris-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .card {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .tedris-section {
        border-top-left-radius: 50% 4%;
        border-top-right-radius: 50% 4%;
        margin-top: -80px;
        padding-top: 60px;
    }

    .tedris-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .tedris-section {
        border-top-left-radius: 50% 3%;
        border-top-right-radius: 50% 3%;
        margin-top: -60px;
        padding-top: 50px;
    }

    .tedris-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .card {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .tedris-section {
        border-top-left-radius: 50% 2%;
        border-top-right-radius: 50% 2%;
        margin-top: -150px;
        padding-top: 40px;
    }
}

/* Hide scrollbar but keep functionality */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* Scholarship Slider Styles */
.scholarshipSwiper {
    width: 100%;
    margin: 0 auto;
}

.scholarshipSwiper .swiper-slide {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.scholarshipSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.scholarshipSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D1D5DB;
    opacity: 1;
}

.scholarshipSwiper .swiper-pagination-bullet-active {
    background: #7B2CBF;
}

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

    .scholarshipSwiper .swiper-slide {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .scholarshipSwiper {
        padding: 0;
    }
}

/* Graduates Slider Styles */
.graduates-section {
    background: #F6F6F6;
    padding: 80px 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.graduatesSwiper {
    padding: 40px 0 100px 0;
    position: relative;
    margin-bottom: 60px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.graduatesSwiper .swiper-slide {
    width: 450px;
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.graduatesSwiper .swiper-slide-active {
    transform: translateY(-30px) !important;
    z-index: 2;
}

.graduatesSwiper .swiper-button-next,
.graduatesSwiper .swiper-button-prev {
    color: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 2px solid black;
    top: auto;
    bottom: 0;
    z-index: 10;
    position: relative;
    margin: 0;
    left: auto;
    right: auto;
}

.graduatesSwiper .swiper-button-next:after,
.graduatesSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Container for navigation buttons */
.graduates-navigation {
    display: flex;
    color: black !important;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    position: relative;
    z-index: 20;
}

.graduate-card {
    background: #1E0B32;
    border-radius: 24px;
    padding: 32px;
    margin-top: 30px;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.graduate-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote-icon {
    color: #7B2CBF;
}

.graduate-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid white;
}

.graduate-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.graduate-details h3 {
    font-weight: 500;
    margin-bottom: 4px;
    color: white;
}

.graduate-details p {
    color: #B97DF8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .graduatesSwiper .swiper-slide {
        width: 300px;
    }
}

.tech {
    height: 90vh;
    background-image: url(../images/tech.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}