@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-main: "Jost";
    --bg-main: #29235c;
    --debi-red: #c50227;
}

body {
    font-family: var(--font-main), sans-serif;
}

/*GENERAL*/

.section-padding {
    padding: 100px 0;
}

/*HEADER*/

header {
    position: absolute;
    z-index: 990;
    left: 0;
    right: 0;
    top: 0;
}

.header-top {
    background-color: var(--bg-main);
    color: #fff;
    padding: 1rem 2.25rem;
}

.header-top .header-social ul, .header-top .header-contact ul {
    display: flex;
    gap: 1.5rem;
}

.navbar-menu ul:not(.dropdown-menu) {
    display: flex;
    gap: 2rem;
}

.navbar {
    padding: 1rem 2.25rem;
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
}

.navbar .logo img {
    width: 220px;
}

.dropdown-menu {
    display: none; /* MUST be here */
}

.navbar-menu li a {
    font-size: 16px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    min-width: 200px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;

    padding: 10px 0;

    display: none;
    z-index: 50;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #fff;
    transition: background 0.25s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}


/*FOOTER*/

footer {
    background-color: #181818;
    color: #8d8d8d;
}

.footer-top {
    padding: 60px 0;
}

.footer-bottom {
    background-color: #202020;
    padding: 30px 0;
}

.footer-social ul {
    display: flex;
    gap: 1.5rem;
    color: var(--debi-red);
}

footer .logo {
    margin-bottom: 20px;
}

.footer-top .logo img {
    width: 200px;
}

.footer-top ul li {
    margin-bottom: .5rem;
}

.footer-bottom a {
    color: #fff;
}

footer .red-line {
    height: 2px;
    background-color: var(--debi-red);
    margin: 15px 0;
}

.footer-menu h3 {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.footer-menu ul li {
    margin-bottom: .5rem;
}

/*PAGE BANNER*/

.page-banner {
    position: relative;
    height: 700px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.25) 15%,
            rgba(0, 0, 0, 0.1) 50%
    ),
    linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.35) 20%,
            rgba(0, 0, 0, 0.1) 45%
    );
}


.page-banner-meta {
    position: relative;
    color: #fff;
    z-index: 2;
    padding-bottom: 40px;
}

.page-banner-meta h4 {
    font-size: 24px;
    margin-bottom: .35rem;
    line-height: 1;
}

.page-banner-meta h1 {
    font-size: 30px;
    font-weight: 700;
}

/*HERO*/

section.hero {

}

section.hero .swiper-slide {
    height: 100vh;
    position: relative;
    margin-top: 50px;
}

.hero-swiper video, .hero-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.overlay-0 {
    background: rgba(0, 0, 0, 0);
}

.overlay-1 {
    background: rgba(0, 0, 0, 0.1);
}

.overlay-2 {
    background: rgba(0, 0, 0, 0.2);
}

.overlay-3 {
    background: rgba(0, 0, 0, 0.3);
}

.overlay-4 {
    background: rgba(0, 0, 0, 0.4);
}

.overlay-5 {
    background: rgba(0, 0, 0, 0.5);
}

.overlay-6 {
    background: rgba(0, 0, 0, 0.6);
}

.overlay-7 {
    background: rgba(0, 0, 0, 0.7);
}

.overlay-8 {
    background: rgba(0, 0, 0, 0.8);
}

.overlay-9 {
    background: rgba(0, 0, 0, 0.9);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 999px; /* pill shape */

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.35);

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-decoration: none;
    cursor: pointer;

    transition: background 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease,
    color 0.3s ease;
}

.hero-btn:hover,
.hero-btn:focus {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-meta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-meta h1 {
    font-size: 35px;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-swiper .swiper-pagination {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: center;
}

.hero-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 255, 255, 0.4);

    opacity: 1;
    transition: background 0.3s ease,
    transform 0.25s ease,
    border-color 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-swiper .swiper-pagination-bullet {
    width: 28px;
    height: 6px;
    border-radius: 999px;
}

/*HOMEPAGE*/

.edu-item .edu-meta {
    padding: 30px;
    color: #fff;
}

.edu-meta h2 {
    font-weight: 700;
    font-size: 22px;
}

.edu-meta:nth-of-type(1) {
    background-color: #c50227;
}

.edu-meta:nth-of-type(2) {
    background-color: #980a25;
}

.edu-meta:nth-of-type(3) {
    background-color: #78091e;
}

.edu-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.edu-meta i {
    line-height: 1;
    font-size: 40px;
}

.education-levels {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.edu-cover {
    display: block;
    overflow: hidden;
    height: 280px;
}

.edu-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}

.edu-cover:hover img {
    transform: scale(1.05);
}

.education-detail p {
    margin-bottom: 1rem;
}


.education-detail p:last-of-type {
    margin-bottom: 0;
}

.education-detail h1 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 1.25rem;
}

.education-detail ul, .education-detail ol {
    padding-left: 2.25rem;
    margin-bottom: 1rem;
}

.education-detail ul li {
    list-style: disc;
}

.education-detail ol li {
    list-style: decimal;
}


.education-detail .gallery {
    padding-top: 40px;
}

.education-detail .gallery .gallery-item {
    padding: .25rem;
}

.education-detail .gallery-item {
    overflow: hidden;
}

.education-detail .gallery-item a {
    display: block;
    overflow: hidden;
}

.education-detail .gallery-item img {
    transition: .4s ease-in-out;
}

.education-detail .gallery-item:hover img {
    filter: brightness(.75);
    transform: scale(1.05);
}


.intro-video iframe {
    width: 100%;
    height: 700px;
}

/*CONTACT*/

.contact-info {
    background-color: #161616;
    padding: 100px 0;
    color: #fff;
}

.contact-box {
    width: 33%;
    padding-inline: 10px;
}

.contact-box .icon {
    margin-bottom: 25px;
}

.contact-box .icon i {
    font-size: 40px;
    line-height: 1;
}

.contact-box h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-box p {
    font-size: 16px;
    margin-bottom: 25px;
}

.contact-box a {
    color: var(--debi-red);
    display: block;
}


.contact-form {
    background-color: #f3f3f3;
    padding: 100px 0;
    text-align: center;
}

.contact-form h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.contact-form h5 {
    font-size: 20px;
    color: #6b6b6b;
    margin-bottom: 3.25rem;
}

.contact-form form {
    margin: 0 auto;
    width: 40%;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group input, .form-group textarea {
    background-color: #fff;
    padding: 1rem;
    width: 100%;
}

.form-group textarea {
    resize: none;
    height: 130px;
}

.contact-form .submit-btn {
    background-color: var(--debi-red);
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: .85rem;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
}

.contact-map {
    height: 550px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.map-links {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.map-links a {
    padding: 10px 16px;
    backdrop-filter: blur(10px);
    background: rgb(20 20 20 / 85%);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.map-links a:hover {
    background: rgba(255, 255, 255, 1);
    color: #333;
}

.contact-social {
    padding: 80px 0;
    background-color: #fff;
}

.contact-social ul {
    display: flex;
    gap: 2.35rem;
    justify-content: center;
}

.contact-social li {
    font-size: 21px;
}
