:root {
    --transition: all 0.3s ease-in-out;
    --main-color: #5896f9;
    --black-color: black;
    --sec-color: #ff6952;
    --bg-color: #f9f9f9;
    --white-color: #fff;    
    --President-primary-color: #4e44d3;
    --President-secondary-color: #7c65f0;
    --President-dark-color: #333;
    --President-light-color: #f8f9fa;

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: serif;
}

main {
    margin-top: 80px;
}

section.padd {
    padding: 4rem 0;
}

p a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

p {
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
}

.padd-100 {
    padding-top: 100px;
}

/* main title */

.main-section-title {
    position: relative;
    overflow: hidden;
}

.sub-title h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--sec-color);
    font-weight: 600;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.main-section-title h2,
.main-section-title h1 {
    font-size: 2.2rem;
    margin: 0;
    color: var(--sec-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.main-section-title p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black-color);
    max-width: 800px;
    margin: 10px 5px 20px;
}

.main-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    color: var(--black-color);
    border: 1px solid var(--sec-color);
    margin: 0px 0px 20px 0;
    transition: 0.3s ease-in-out all;
}

.main-btn:hover {
    background-color: var(--sec-color);
    color: var(--white-color);
}

/* Eng Global Styles */
/* Header */
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    position: fixed;
    display: flex;
    text-align: center;
    align-items: center;
    left: 0;
    top: 0px;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo img {
    padding: 0;
    max-height: 70px;
    max-width: 100%;
}

#header.header-scrolled a,
#header.header-pages a {
    color: var(--black-color);
}

#header.header-scrolled,
#header.header-pages {
    height: 70px;
    padding: 15px 0;
    background-color: var(--main-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled #topbar,
#header.header-pages #topbar {
    display: none;
}

.logo {
    float: right;
}

nav.main-nav {
    float: left;
    flex-direction: row-reverse;
}

/* Navigation */
.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav>ul {
    margin-top: 11px !important;
}

.main-nav>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.main-nav a {
    display: block;
    position: relative;
    color: var(--black-color);
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
    color: var(--sec-color) !important;
    text-decoration: none;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    border-radius: 8px;
    transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    overflow: hidden;
    visibility: visible;
}

.main-nav .drop-down li:hover a {
    color: var(--main-color);
}

.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}

.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    color: var(--white-color);
}

.main-nav .drop-down>a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down>a {
    padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}

.dropdown-menu {
    background-color: var(--sec-color);
    color: var(--white-color) !important;
    transition: var(--main-transition);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-menu a:hover {
    background-color: var(--white-color);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(40, 38, 70, 0.8);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--white-color);
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--sec-color);
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\f077";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: left;
    left: 24px;
}

.mobile-nav-toggle i {
    margin: 32px 24px 0 0;
    color: var(--sec-color);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 38, 70, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i.fa-times {
    position: fixed;
    right: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.nav-item.dropdown .dropdown-menu {
    min-width: 150px;
}

/* Landig Page & Background Video */
.landing {
    width: 100%;
    height: 100vh;
}

.landing video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* About  */
.about {
    background: var(--bg-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

    padding: 50px;
}

.about .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: AboutfadeIn 1s forwards;
}

.about .image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
}

.about .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.about .image-wrapper img:hover {
    transform: scale(1.05);
}

.about .image-wrapper::before,
.about .image-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.2);
    z-index: -1;
}

.about .image-wrapper::before {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
}

.about .image-wrapper::after {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
    background: rgba(33, 150, 243, 0.2);
}

.about .text-wrapper {
    max-width: 600px;
    text-align: left;
    opacity: 1;
}

.student-life .life-info h2,
.about .text-wrapper h1 {
    font-size: 2.5em;
    color: var(--sec-color);
    position: relative;
    display: inline-block;
}

.student-life .life-info h2::after,
.about .text-wrapper h1::after {
    content: "";
    width: 100px;
    height: 4px;
    background: var(--sec-color);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}

.student-life .life-info h2::before,
.about .text-wrapper h1::before {
    content: "";
    width: 50px;
    height: 4px;
    background: var(--sec-color);
    position: absolute;
    left: 0;
    bottom: -20px;
    border-radius: 2px;
}

.student-life .life-info p,
.about .text-wrapper p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
}

@keyframes AboutfadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.presd-word {
    background-color: var(--white-color);
}

.presd-word h2 {
    font-size: 2.5rem;
    color: var(--sec-color);
    margin-bottom: 1rem;
}

.presd-word p {
    font-size: 1.1rem;
    color: #777;
    font-weight: 400;
    line-height: 1.8;
}

html:lang(en) {
    .profs {
        direction: ltr;
    }
    .apply .select-selected:after {
        right: 20px !important;
        left: unset !important;
    }
}

.profs {
    direction: rtl;
    background-color: var(--bg-color);
}

.profs .swiper {
    width: 100%;
    display: flex;
    padding: 20px;
}

.profs .text-content {
    flex: 1;
    padding: 20px 20px 20px 60px;
}

.profs .text-content h2 {
    color: var(--sec-color);
}

.profs .text-content p {
    line-height: 1.8;
}

.profs .image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.profs .image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.profs .swiper-button-next,
.profs .swiper-button-prev {
    color: var(--sec-color);
    border: 1px solid var(--sec-color);
    border-radius: 50%;
    width: 50px;
    transition: 0.3s ease-in-out all;
    height: 50px;
}

.profs .swiper-button-next:hover,
.profs .swiper-button-prev:hover {
    color: var(--white-color);
    background-color: var(--sec-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.cards {
    background-color: var(--white-color);
}

.cards .container {
    display: flex;
    align-items: center;
    padding-left: 220px;
    padding-right: 220px;
    gap: 20px;
    justify-content: space-around;
}

.cards .single-card {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    font-size: 1.6rem;
    color: var(--black-color);
    border: 3px solid var(--sec-color);
    transition: 0.3s ease-in-out all;
}

.cards .single-card:hover {
    background-color: var(--sec-color);
    box-shadow: 0 8px 16px rgba(255, 105, 82, 0.5);
    color: var(--white-color);
}

.cards .single-card.one {
    border-radius: 20px 20px 90px 20px;
}

.cards .single-card.two {
    border-radius: 20px;
}

.cards .single-card.there {
    border-radius: 90px 20px 20px 20px;
}

/* Campus  */
.campus {
    height: 60vh;
    width: 100%;
    background-position: center;
    background-image: url("/assets/imgs/title-bg-pattern-1.png");
}

.campus h1 {
    color: var(--sec-color);
    font-size: 2.8em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
}

.campus-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
    background: var(--white-color);
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

.campus-video video {
    width: 100%;
    max-height: 550px;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.campus-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
    opacity: 1;
}

.campus-video .play-button.pulsing {
    animation: Playpulse 1.5s infinite;
}

@keyframes Playpulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

.campus-video .play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.campus-video .video-wrapper:hover .play-button {
    opacity: 1 !important;
    pointer-events: auto;
}

.campus-video .play-button i {
    font-size: 30px;
    color: #1e3c72;
    transition: color 0.3s;
}

.campus-video .play-button:hover i {
    color: #2a5298;
}

.campus-gallary {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.campus-gallary .container {
    max-width: 1200px;
    margin: 0 auto;
}

.campus-gallary .info {
    text-align: center;
    margin-bottom: 3rem;
}

.campus-gallary h2 {
    font-size: 2.5rem;
    color: #002244;
    margin-bottom: 1rem;
}

.campus-gallary p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    line-height: 1.8;
}

.campus-gallary .swiper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.campus-gallary .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-gallary .swiper-slide:hover {
    border-radius: 20px;
    overflow: hidden;
}

.campus-gallary .swiper-slide img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campus-gallary .swiper-slide:hover img {
    transform: scale(1.1);
}

.campus-gallary .swiper-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.campus-gallary .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campus-gallary .swiper-slide:hover::after {
    opacity: 1;
}

.swiper-pagination-bullet-active::before {
    color: var(--sec-color);
}

.campus-gallary .swiper-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .landing {
        height: 50vh !important;
    }

    .landing video {
        height: 50vh !important;
    }

    .campus-gallary h2 {
        font-size: 2rem;
    }

    .campus-gallary p {
        font-size: 1rem;
    }

    .campus-gallary .swiper {
        height: 150px;
    }

    .campus-gallary .swiper-slide {
        width: 100%;
    }
}

.facilities-section {
    padding-bottom: 4rem
}

.facilities-section .sub-title h2 {
    margin: 40px 0;
}

.facilities-section {
    background: white;
}

.facilities-section .facility-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.facilities-section .facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s ease-in-out all;
}

.facilities-section .facility-card:hover .facility-image {
    transform: scale(1.1);
}

.facilities-section .facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.facilities-section .facility-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallary .swiper-button-next,
.gallary .swiper-button-prev,
.facilities-section .swiper-button-next,
.facilities-section .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: 40px !important;
    height: 40px !important;
    border: 1px solid var(--sec-color);
    border-radius: 50%;
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    color: var(--sec-color);
    transition: all ease-in-out .3s;
}

.gallary .swiper-button-next:hover,
.gallary .swiper-button-prev:hover,
.facilities-section .swiper-button-next:hover,
.facilities-section .swiper-button-prev:hover {
    background-color: var(--sec-color);
    color: var(--white-color)
}

.landing-camp {
    position: relative;
    background-color: var(--bg-color);
}

.landing-camp .camp-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.landing-camp .camp-img img {
    height: 100%;
    width: 100% !important;
    border-radius: 20px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
    display: block;
}

.landing-camp .camp-img:hover img {
    transform: scale(1.05);
}

.landing-camp .title {
    font-size: 2.2rem;
    margin: 0;
    color: var(--sec-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.landing-camp p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black-color);
    max-width: 800px;
    margin: 10px 5px 20px;
}

.landing-camp .campus-video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    overflow: hidden !important;
    padding: 0 !important;
    text-align: center;
    border-radius: 20px;
    background: transparent;
}

.camp-img,
.landing-camp .video-wrapper {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    height: 300px;
    object-fit: cover;
}

.landing-camp .campus-video video {
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    padding: 0 !important;
}

.landing-camp .campus-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
    opacity: 1;
}

.landing-camp .campus-video .play-button.pulsing {
    animation: Playpulse 1.5s infinite;
}

.landing-camp .campus-video .play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.landing-camp .campus-video .video-wrapper:hover .play-button {
    opacity: 1 !important;
    pointer-events: auto;
}

.landing-camp .campus-video .play-button i {
    font-size: 30px;
    color: #1e3c72;
    transition: color 0.3s;
}

.landing-camp .campus-video .play-button:hover i {
    color: #2a5298;
}

@media (max-width: 768px) {
    .landing-camp .campus-video .play-button {
        width: 60px;
        height: 60px;
    }

    .landing-camp .campus-video .play-button i {
        font-size: 24px;
    }
}

.contact .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact .container .map,
.contact .container .contact-info {
    width: 100%;
}

.contact .container .map iframe {
    border-radius: 20px;
    max-width: 100%;
}

.contact .container .contact-info h3 {
    max-width: 95%;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--sec-color);
    font-weight: 600;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.contact .container .contact-info h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black-color);
    font-weight: 500;
}

.contact .container .contact-info p {
    max-width: 95%;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--black-color);
    font-weight: 500;
}

.contact .icons {
    display: flex;
}

.contact .icons .icon {
    margin-left: 10px;
    background-color: var(--bg-color);
    box-shadow: inset 0 0 0 0 var(--sec-color);
    transition: .3s ease-in-out all;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.contact .icons .icon i {
    color: var(--sec-color);
    transition: .3s ease-in-out all;
}

.contact .icons .icon:hover {
    background-color: var(--sec-color);
}

.contact .icons .icon:hover i {
    color: var(--white-color);
}

@media (max-width: 768px) {
    .campus-video .play-button {
        width: 60px;
        height: 60px;
    }

    .campus-video .play-button i {
        font-size: 24px;
    }

    .contact .container {
        flex-direction: column-reverse;
    }
}

.student-life {
    background-color: var(--bg-color);
}

.student-life-two {
    background-color: var(--white-color);
}

.student-life-two .container {
    flex-direction: row-reverse;
}

.student-life .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.student-life .container .life-img,
.student-life .container .life-info {
    width: 100%;
}

.student-life-two .container .life-img img {
    border-radius: 20px 70% 20px 20px !important;
}

.student-life-two .container .life-info {
    text-align: right;
}

.student-life .container .life-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
    border-radius: 70% 20px 20px 20px;
}

.student-life .life-img {
    animation: studentLifeFloat 3s ease-in-out infinite;
    overflow: hidden;
    border-radius: 10px;
}

@keyframes studentLifeFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.student-life-two .life-info h2::after,
.student-life-two .life-info h2::before {
    right: 0;
    left: unset;
}

/* Programs  */
.programs {
    position: relative;
    background-color: var(--white-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.program-item {
    position: relative;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.program-item:hover::before {
    transform: translateX(100%);
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.program-img {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.program-img img {
    width: 100%;
    height: 100%;
}

.program-content {
    padding: 0 15px;
}

.program-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sec-color);
}

.program-description {
    color: #000;
    margin-bottom: 25px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

.single-programs .container {
    margin: 0 auto;
    padding: 20px;
}

.single-program {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.single-program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
}

.single-program:hover .single-program-img {
    transform: scale(1.05);
}

.single-program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 2rem;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--sec-color);
}

.single-program-meta {
    display: flex;
    align-items: center;
    color: var(--black-color);
    font-size: 0.9rem;
    margin-top: 30px;
}

.single-program-meta .category {
    background-color: var(--sec-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    margin-right: 1rem;
}

.single-program-meta .date {
    margin-right: 1rem;
}

.single-programs .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.single-programs p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .single-programs h1 {
        font-size: 2rem;
    }

    .single-program {
        height: 300px;
    }
}

/* Materails  */
.material h3.level {
    margin: 15px 0;
    color: var(--sec-color);
}

.material h5.semester {
    margin-bottom: 15px 0;
    color: var(--black-color);
}

.edu-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 220px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

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

.edu-card:nth-child(1) {
    background: linear-gradient(45deg, #ff9a8b, #ff6a88);
}

.edu-card:nth-child(2) {
    background: linear-gradient(45deg, #90f7ec, #32ccbc);
}

.edu-card:nth-child(3) {
    background: linear-gradient(45deg, #81fbb8, #28c76f);
}

.edu-card:nth-child(4) {
    background: linear-gradient(45deg, #fcbc51, #ff9f0c);
}

.edu-card:nth-child(5) {
    background: linear-gradient(45deg, #a9c9ff, #6fb1fc);
}

.edu-card:nth-child(6) {
    background: linear-gradient(45deg, #fdd6bd, #f794a4);
}

.edu-card .card-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.edu-card .card-bg-icon {
    position: absolute;
    font-size: 140px;
    bottom: -20px;
    right: -10px;
    opacity: 0.15;
    color: #fff;
    z-index: 1;
}

.edu-card .card-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.edu-card .card-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
}

.edu-card .card-link:hover {
    background-color: white;
    color: #222;
    transform: scale(1.05);
}

.edu-card .card-link i {
    margin-left: 10px;
}

.edu-card .shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.edu-card .shape-1 {
    top: -75px;
    left: -75px;
}

.edu-card .shape-2 {
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
}

.no-materials {
    color: var(--sec-color);
    font-size: 2rem;
    font-weight: 700;
}

.apply .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    direction: ltr;
}

.apply .form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.apply .form-header h1 {
    color: var(--black-color);
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.apply .form-header h1::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 5px;
    bottom: -15px;
    right: 20%;
    background: linear-gradient(90deg, #40a0b5, #6c63ff);
    border-radius: 10px;
}

.apply .form-header h1::before {
    content: "";
    position: absolute;
    width: 30%;
    height: 5px;
    bottom: -30px;
    right: 35%;
    background: linear-gradient(90deg, #40a0b5, #6c63ff);
    border-radius: 10px;
}

.apply .form-header p {
    color: #5a6a7a;
    max-width: 600px;
    margin: 40px auto;
    line-height: 1.6;
}

.apply .form-container {
    position: relative;
    z-index: 1;
}

.apply .form-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
}

@keyframes applyFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.apply .float-animation {
    animation: applyFloat 6s ease-in-out infinite;
}

.apply .float-delay-1 {
    animation: applyFloat 6s ease-in-out 1s infinite;
}

.apply .float-delay-2 {
    animation: applyFloat 6s ease-in-out 2s infinite;
}

.apply .float-delay-3 {
    animation: applyFloat 6s ease-in-out 3s infinite;
}

.apply .bg-element {
    position: absolute;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}

.apply .bg-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #6366f1;
    top: 10%;
    left: 5%;
}

.apply .bg-square {
    width: 200px;
    height: 200px;
    background: #ec4899;
    transform: rotate(45deg);
    top: 40%;
    right: 10%;
}

.apply .bg-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 250px solid #8b5cf6;
    bottom: 10%;
    left: 15%;
}

.apply .card-header {
    background: linear-gradient(135deg, #40a0b5 0%, #6c63ff 100%);
    padding: 25px 40px;
    color: white;
}

.apply .card-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.apply .card-header h2 svg {
    margin-right: 15px;
}

.apply .card-body {
    padding: 40px;
}

.apply .input-group {
    margin-bottom: 30px;
    position: relative;
}

.apply .floating-label {
    position: relative;
    margin-bottom: 20px;
}

.apply .floating-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #dde1e7;
    background-color: transparent;
    transition: all 0.3s ease;
}

.apply .floating-input:focus {
    outline: none;
    border-color: #6c63ff;
}

.apply .floating-label label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #99a1b2;
    pointer-events: none;
    transition: all 0.3s ease;
}

.apply .floating-input:focus~label,
.apply .floating-input:not(:placeholder-shown)~label {
    top: -10px;
    left: 0;
    color: #6c63ff;
    font-size: 12px;
    font-weight: 600;
}

.apply .floating-input:focus~.highlight,
.apply .floating-input:not(:placeholder-shown)~.highlight {
    width: 100%;
}

.apply .highlight {
    position: absolute;
    height: 60%;
    width: 0;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.apply .custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.apply .custom-select select {
    display: none;
}

.apply .select-selected {
    background-color: white;
    border-bottom: 2px solid #dde1e7;
    text-align: left;
}

.apply .select-selected:after {
    position: absolute;
    content: "";
    top: 20px;
    width: 10px;
    height: 10px;
    border: 2px solid #99a1b2;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.apply .select-selected.select-arrow-active:after {
    transform: rotate(-135deg);
    top: 25px;
}

.apply .select-items div,
.select-selected {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply .select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

.apply .select-hide {
    display: none;
}

.apply .select-items div:hover {
    background-color: rgba(108, 99, 255, 0.1);
}

.apply .select-items div.same-as-selected {
    background-color: rgba(108, 99, 255, 0.2);
}

.conditional-field {
    margin-top: 20px;
}

.apply .submit-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.apply .submit-button {
    background: linear-gradient(135deg, #40a0b5 0%, #6c63ff 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apply .submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6c63ff 0%, #40a0b5 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: -1;
}

.apply .submit-button:hover::before {
    opacity: 1;
}

.apply .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
}

@media (max-width: 768px) {
    .apply .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .apply .card-body {
        padding: 30px 20px;
    }

    .apply .radio-cards {
        flex-direction: column;
    }

    .apply .radio-card {
        width: 100%;
    }

    .apply .card-header {
        padding: 25px 10px;
    }

    .apply .form-header h1 {
        font-size: 2.2rem;
    }

    .apply .floating-label label {
        left: 5px;
    }
}

.apply .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Footer */
footer {
    padding: 0px 0px 0 0px;
    color: var(--black-color);
    background-image: url("/assets/imgs/title-bg-pattern-1.png");
}

.footer .container .footer-logo {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px 10px 10px;
    border-radius: 0 0 50px 50px;
}

.footer .container .footer-logo img {
    width: 100%;
}

footer a {
    color: var(--black-color);
}

.ul-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 60px !important;
}

footer ul {
    margin-top: 30px;
}

.footer .social a i {
    font-size: 22px;
}

.footer .social a:hover {
    transition: var(--main-transition);
    color: var(--sec-color);
}

.footer .social a {
    margin: 0 20px;
}

footer ul li a {
    position: relative;
}

footer ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

footer ul li:hover,
footer ul li:hover a {
    transition: var(--main-transition);
    color: var(--sec-color);
}

footer ul li i {
    margin-right: 10px;
}

.footer .angles li::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f101";
}

footer .angles li a {
    margin-left: 30px;
}

.ul,
footer ul span,
footer ul li a {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}

.copyright {
    margin: 0px !important;
    padding: 0px 0 !important;
    background-color: var(--black-color);
    width: 100% !important;
}

.copyright .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright p.copyright-content,
.copyright p a {
    text-align: center;
    transform: translate(10px, 10px);
}

.copyright p {
    text-align: center;
    color: var(--white-color);
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}

.login {
    background-image: url('../imgs/ship4.avif');
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 450px;
    text-align: center;
}

.login-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--sec-color);
}

.login-form {
    margin-top: 1.5rem;
}

.login .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.login .form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--sec-color);
}

.login .form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.login .form-group input:focus {
    border-color: var(--sec-color);
}

.login-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--sec-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.forgot-password {
    margin-top: 1rem;
}

.forgot-password a {
    color: var(--sec-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.signup-link {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.signup-link a {
    color: var(--sec-color);
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* RTL */
html:lang(ar) {
    body {
        direction: rtl !important;
    }

    .logo {
        float: left;
    }

    nav.main-nav {
        float: right !important;
    }

    nav.main-nav ul {
        flex-direction: row !important;
    }

    .mobile-nav-active .mobile-nav-toggle i.fa-times {
        position: fixed;
        left: 24px !important;
        right: unset !important;
    }

    .mobile-nav {
        direction: rtl !important;
        right: -260px !important;
        left: unset !important;
    }

    .mobile-nav .drop-down>a:after {
        padding-right: 10px;
        left: 15px;
    }

    .mobile-nav .drop-down>a {
        padding-left: 35px;
    }

    .mobile-nav .drop-down li {
        padding-right: 20px !important;
    }

    .mobile-nav-toggle {
        position: fixed;
        right: 0 !important;
        top: 0;
        z-index: 9998;
        border: 0;
        background: none;
        font-size: 24px;
        transition: all 0.4s;
        outline: none !important;
        line-height: 1;
        cursor: pointer;
        text-align: right;
        left: 24px;
    }

    .mobile-nav-toggle i {
        margin: 24px 24px 0 0;
    }

    .mobile-nav-overly {
        width: 100%;
        height: 100%;
        z-index: 9997;
        top: 0;
        right: 0 !important;
        position: fixed;
        background: rgba(40, 38, 70, 0.8);
        overflow: hidden;
        display: none;
    }

    .mobile-nav-active .mobile-nav {
        right: 0 !important;
    }

    .products {
        direction: rtl;
    }

    footer {
        text-align: right;
        direction: rtl;
    }

    .ul-title {
        text-align: right;
        margin-bottom: 60px !important;
    }

    footer ul {
        padding-right: 20px;
    }

    footer ul li i {
        margin-left: 10px;
    }

    .footer .angles li::before {
        content: "\f100";
    }

    footer .angles li a {
        text-align: right;
        margin-right: 30px;
    }

    .copyright .social a:not(:last-child) {
        padding-left: 40px;
        padding-right: 0px;
        border-right: none;
        border-left: 1px solid var(--main-color);
        margin: 0 15px;
    }

    .mobile-nav-toggle {
        left: unset !important;
    }

    .logo {
        float: left !important;
    }

    .main-nav>ul {
        display: flex;
        flex-direction: row-reverse;
    }

    nav.main-nav {
        float: right !important;
    }

    .about {
        direction: rtl;
    }

    .about .text-wrapper {
        text-align: right;
    }

    .about .text-wrapper h1::after {
        right: 0;
    }

    .about .text-wrapper h1::before {
        right: 0;
    }

    .profs .text-content {
        flex: 1;
        padding: 20px 60px 20px 20px;
    }

    .pagination li:last-child .page-link {
        border-radius: 12px 0 0 12px;
    }

    .pagination li:first-child .page-link {
        border-radius: 0px 12px 12px 0;
    }

    .apply .container {
        direction: rtl !important;
    }

    .apply .card-header h2 svg {
        margin-left: 15px;
    }

    .apply .floating-label label {
        right: 20px;
    }

    .apply .floating-input:focus~label,
    .apply .floating-input:not(:placeholder-shown)~label {
        right: 0;
    }

    .apply .highlight {
        right: 0;
    }

    .apply .select-selected {
        text-align: right;
        left: 0;
    }

    .apply .select-items {
        text-align: right;
    }

    .apply .radio-card input:checked+label::before {
        left: 10px;
    }

    .apply .submit-button::before {
        left: 0;
    }

    .apply .select-selected:after {
        left: 20px !important;
        right: unset !important;
    }

    .student-life-two .container .life-img img {
        border-radius: 20px 20px 20px 70% !important;
    }

    .student-life-two .container .life-info {
        text-align: right;
        margin-right: 30px;
    }

    .student-life .container .life-info {
        width: 95%;
    }

    .student-life .container .life-img img {
        border-radius: 20px 70% 20px 20px;
    }

    .student-life .life-info h2::after,
    .student-life .life-info h2::before {
        right: 0;
        left: unset;
    }

    .cards .single-card.one {
        border-radius: 90px 20px 20px 20px;
    }

    .cards .single-card.there {
        border-radius: 20px 20px 90px 20px;
    }

    .login .form-group {
        text-align: right;
    }

    .edu-card .card-bg-icon {
        left: -10px;
        right: unset;
    }

    .edu-card .card-link i {
        margin-right: 10px;
    }
    .President-slide-title::after ,
    .student-life-page .section-title::after {
        right: 0;
        left: unset;
    }
}

@media (max-width: 768px) {
    .President-swiper {
        height: 750px;
    }
}

.President-swiper-slide {
    background: linear-gradient(135deg, #fcfcff 0%, #f0f4ff 100%);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .President-swiper-slide {
        flex-direction: row;
    }
}

/*  Responsive  */
@media (max-width: 991px) {
    #header {
        padding: 15px 0;
    }
}

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

    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about .text-wrapper {
        text-align: center;
        width: 100%;
        transform: translateY(50px);
    }

    .about .image-wrapper {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        display: flex;
        flex-direction: column;
    }

    .profs .text-content {
        flex: 1;
        padding: 20px 20px 20px 60px;
    }

    .profs .swiper {
        padding: 0 !important;
    }

    .profs .image-content {
        order: -1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .profs .swiper-slide.swiper-slide-next {
        opacity: 0;
        display: none;
    }

    .profs .text-content {
        padding: 0 31px 0 44px !important;
        width: 100%;
    }

    .cards .container {
        flex-direction: column;
    }

    .cards .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .cards .container a:not(:last-child) {
        margin-bottom: 20px;
    }

    .student-life .container {
        flex-direction: column;
    }

    .login-container {
        width: 350px;
    }
}

section.profs {
    padding: 40px 0 !important;
}

.vision {
    background-color: var(--bg-color);
    box-shadow: 0 10px 20px rgba(1, 0, 13, 0);
    padding: 20px 40px;
    border-radius: 12px;
}

.vision h3 {
    color: var(--sec-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.vision p {
    color: var(--black-color);
    font-weight: 400;
}
.President-elegant-slider {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.President-swiper {
    width: 100%;
    height: 600px;
}

@media (max-width: 768px) {
    .President-swiper {
        height: 750px;
    }
}

.President-swiper-slide {
    background: linear-gradient(135deg, #fcfcff 0%, #f0f4ff 100%);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .President-swiper-slide {
        flex-direction: row;
    }
}

.President-slide-content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
}

.President-slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--President-dark-color);
    margin-bottom: 15px;
    position: relative;
}

.President-slide-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(to left, var(--President-primary-color), var(--President-secondary-color));
    border-radius: 2px;
}

.President-slide-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.President-slide-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--President-primary-color) 0%, var(--President-secondary-color) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(78, 68, 211, 0.3);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.President-slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 68, 211, 0.4);
    color: white;
}

.President-slide-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .President-slide-image {
        height: 300px !important;
        order: -1;
    }
}

.President-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.President-slide-image:hover img {
    transform: scale(1.05);
}

.President-slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.President-swiper-button-next,
.President-swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--President-primary-color) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.President-swiper-button-next:hover,
.President-swiper-button-prev:hover {
    background-color: white;
    transform: scale(1.1);
}

.President-swiper-button-next::after,
.President-swiper-button-prev::after {
    font-size: 20px !important;
}

.President-swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(78, 68, 211, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .President-swiper {
        height: 750px !important;
    }
}

.President-swiper-slide {
    background: linear-gradient(135deg, #fcfcff 0%, #f0f4ff 100%);
    display: flex !important;
    flex-direction: column !important;
}

@media (min-width: 768px) {
    .President-swiper-slide {
        flex-direction: row !important;
    }
}


.President-swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--President-primary-color);
}

.students-swiper {
    background: #f7f9fc;
    padding: 60px 0;
}

.students-swiper .swiper-wrapper {
    overflow: visible;
}

.students-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.students-swiper .student-item {
    width: 250px;
    height: 350px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.students-swiper .student-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.students-swiper .name-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.students-swiper .student-item:hover .name-overlay {
    transform: translateY(0);
}

.students-swiper .mySwiper .swiper-button-next,
.students-swiper .mySwiper .swiper-button-prev {
    color: #333;
}

.students-swiper .student-subtitle {
    text-align: center;
    margin: 0 auto 30px;
    max-width: 800px;
    color: #555;
    font-size: 1.1rem;
}


/* student life page */
.student-life-page body {
    background-color: var(--bg-color);
    color: var(--black-color);
    line-height: 1.6;
}
.student-life-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}
.student-life-page .section {
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}
.student-life-page .section-title {
    color: var(--main-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.student-life-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--sec-color);
    border-radius: 2px;
}
.student-life-page .section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.student-life-page .btn {
    background-color: var(--main-color);
    color: var(--white-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.student-life-page .btn:hover {
    background-color: var(--sec-color);
    box-shadow: 0 5px 15px rgba(255, 105, 82, 0.3);
}
.student-life-page .content-with-image {
    display: flex;
    align-items: center;
    padding: 0;
}
.student-life-page .content-part {
    flex: 1;
    padding: 40px;
}
.student-life-page .image-part {
    flex: 1;
    height: 400px;
    overflow: hidden;
}
.student-life-page .image-part img {
    max-width: 100%;
    transition: transform 0.5s ease;
}
.student-life-page .image-part:hover img {
    transform: scale(1.05);
}

.student-life-page .gallery-container {
    padding: 40px;
}

.student-life-page .gallery-controls {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.student-life-page .gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--President-primary-color);
    border: none;
    color: var(--bg-color);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.student-life-page .swiper {
    width: 100%;
    height: 300px;
}

.student-life-page .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.student-life-page .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-life-page .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.student-life-page .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--gray-color);
    opacity: 1;
}

.student-life-page .swiper-pagination-bullet-active {
    background-color: var(--main-color);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 1200px) {
    .student-life-page .content-part {
        padding: 30px;
    }
    
    .student-life-page .image-part {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .student-life-page .section-title {
        font-size: 1.8rem;
    }
    
    .student-life-page .swiper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .student-life-page .content-with-image {
        flex-direction: column;
    }
    
    .student-life-page .image-part {
        width: 100%;
        order: -1;
    }
    
    .student-life-page .gallery-controls {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .student-life-page .section-title {
        font-size: 1.5rem;
    }
    
    .student-life-page .content-part, 
    .student-life-page .gallery-container {
        padding: 20px;
    }
    
    .student-life-page .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .student-life-page .swiper {
        height: 250px;
    }
    
    .student-life-page .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}