@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

//----------------- Global CSS
$color-black: #111;
$color-white: #fff;
$color-blue: #194bb2;
$color-lightblue: #d2dbef;
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow-x: hidden;
    position: relative;
    color: $color-black;
    &.nav-open::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(50,50,50,0.7);
        cursor: pointer;
        z-index: 9;
    }
    > nav,
    > section,
    > footer {
        overflow: hidden;
    }
}


div {
    &.px-10 {
        content: " ";
        display: block;
        margin: 10px 0 0;
        line-height: 10px;
    }
    &.px-20 {
        content: " ";
        display: block;
        margin: 20px 0 0;
        line-height: 20px;
    }
    &.px-30 {
        content: " ";
        display: block;
        margin: 30px 0 0;
        line-height: 30px;
    }
    &.px-40 {
        content: " ";
        display: block;
        margin: 40px 0 0;
        line-height: 40px;
    }
    &.px-50 {
        content: " ";
        display: block;
        margin: 50px 0 0;
        line-height: 50px;
    }
    &.px-60 {
        content: " ";
        display: block;
        margin: 60px 0 0;
        line-height: 60px;
    }
    &.px-70 {
        content: " ";
        display: block;
        margin: 70px 0 0;
        line-height: 70px;
    }
    &.px-80 {
        content: " ";
        display: block;
        margin: 80px 0 0;
        line-height: 80px;
    }
    &.px-90 {
        content: " ";
        display: block;
        margin: 90px 0 0;
        line-height: 90px;
    }
    &.px-100 {
        content: " ";
        display: block;
        margin: 100px 0 0;
        line-height: 100px;
    }
    &.px-10-minus {
        content: " ";
        display: block;
        margin: -10px 0 0;
        line-height: 0px;
    }
    &.px-20-minus {
        content: " ";
        display: block;
        margin: -20px 0 0;
        line-height: 0px;
    }
    &.px-30-minus {
        content: " ";
        display: block;
        margin: -30px 0 0;
        line-height: 0px;
    }
    &.px-40-minus {
        content: " ";
        display: block;
        margin: -40px 0 0;
        line-height: 0px;
    }
    &.px-50-minus {
        content: " ";
        display: block;
        margin: -50px 0 0;
        line-height: 0px;
    }
    &.px-60-minus {
        content: " ";
        display: block;
        margin: -60px 0 0;
        line-height: 0px;
    }
}


a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.container {
    max-width: 1250px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
}
.primary-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
    color: inherit;
}
.primary-desc {
    font-size: 15px;
    color: inherit;
    line-height: 1.6;
    font-weight: 500;
}
.txt-light {
    color: $color-white;
}
.txt-black {
    color: $color-black;
}
button {
    font-family: inherit;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Slightly moves navbar up */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Slides into place */
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .primary-title {
        font-size: 45px;
    }
}
@media (max-width: 480px) {
    .primary-title {
        font-size: 38px;
    }
}


//----------------- Navbar Styling
.menu-career-alumini-top-menu-container{
    visibility: hidden;
    opacity: 0;
}
.section-nav {
    width: 100%;
    z-index: 10;
    transition: 0.3s;
    position: absolute;
    &.fixed {
        position: fixed;
        background-color: $color-blue;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        animation: fadeIn 0.4s ease-in-out;
        .nav-container {
            padding: 15px 0;
            margin: 0;
        }
    }
    .nav-top-search {
        padding-top: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        hr.top-line {
            border: unset;
            height: 2px;
            background: #fff;
            width: calc(100% - 240px);
        }
        .nav-search {
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            color: $color-white;
            position: relative;
            border-bottom: 2px solid $color-white;
            width: 220px;
            &::before {
                content: '';
                background-color: #fff;
                position: absolute;
                top: -6px;
                left: 0px;
                width: 2px;
                height: 37px;
                transform: rotate(-35deg);
                transform-origin: bottom;
            }
            .input-group {
                display: flex;
                align-items: center;
                position: relative;
                width: 200px;
                height: 30px;
                input {
                    background-color: transparent;
                    border: unset;
                    padding: 0 20px;
                    height: 100%;
                    width: 100%;
                    position: absolute;
                    color: $color-white;
                    left: 0;
                    top: 0;
                    transform: translateY(-8px);
                    font-family: inherit;
                    &:focus-visible {
                        outline: none;
                    }
                }
                button {
                    position: absolute;
                    right: 0;
                    top: 0;
                    height: 100%;
                    border: unset;
                    opacity: 0;
                }
                ::placeholder {
                    font-family: 'Montserrat';
                    font-size: 13px;
                    letter-spacing: 1px;
                    font-weight: 500;
                    opacity: 0.9;
                    color: $color-white;
                    text-transform: uppercase;
                }
            }
            .account {
                color: #fff;
                padding: 0 10px;
                border-left: 2px solid #fff;
                line-height: 1;
            }
        }
        @media (max-width: 490px) {
            padding-top: 30px;
        }
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0 20px;
        transition: 0.3s;
        margin: 50px 0;
    }
    .logo {
        width: 340px;
        img {
            width: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
    }
    .nav-links {
        display: flex;
        align-items: center;
        z-index: 2;
        .nav-item {
            position: relative;
            .nav-link {
                color: $color-white;
                text-decoration: none;
                font-size: 15px;
                font-weight: 400;
                padding: 0 20px;
                line-height: 1;
                letter-spacing: 0.5px;
                transition: 0.3s;
                position: relative;
                text-transform: capitalize;
                display: flex;
                align-items: center;
                gap: 8px;
                &.active {
                    color: darken($color-white, 15%);
                    i {
                        transform: rotate(180deg);
                    }
                }
                i {
                    font-size: 12px;
                    transition: transform 0.3s;
                }
            }
            .submenu {
                position: absolute;
                top: 150%;
                left: 0;
                background: $color-white;
                min-width: 200px;
                border-radius: 4px;
                overflow: hidden;
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: all 0.3s ease;
                z-index: 100;
                display: flex;
                flex-direction: column;
                &.active {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0);
                }
                a {
                    display: block;
                    padding: 15px;
                    color: inherit;
                    font-weight: 500;
                    transition: 0.3s;
                    font-size: 13px;
                    border-bottom: 2px solid #eee;
                    line-height: 1.3;
                    &:hover {
                        background-color: $color-blue;
                        color: $color-white;
                    }
                    &:last-child {
                        border-bottom: unset;
                    }
                }
            }
            &.show-childmenu {
                .nav-link i {
                    transform: rotate(180deg);
                }
                .submenu {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0);
                }
            }
        }
    }
    .logo-mbl {
        display: none;
    }
    .hamburger {
        width: 30px;
        height: 22px;
        display: none;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
        margin-left: 30px;
        z-index: 1;
    }
    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: $color-white;
        border-radius: 5px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        display: block;
    }
    .hamburger:hover span:nth-child(1) {
        transform: translateY(-4px);
    }
    .hamburger:hover span:nth-child(2) {
        transform: scaleX(0.7); /* Shortens the middle bar */
    }
    .hamburger:hover span:nth-child(3) {
        transform: translateY(4px);
    }
}
@media (min-width: 1201px) {
    .section-nav {
        overflow: unset;
    }
}
@media (max-width: 1200px) {
    .section-nav {
        // position: relative;
        .hamburger {
            display: flex;
        }
        .nav-links {
            flex-direction: column;
            gap: 0;
            position: fixed;
            top: 0;
            right: 0;
            background: $color-white;
            padding: 0;
            height: 100vh;
            transform: translateX(100%);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease-out;
            &.active {
                transform: unset;
                opacity: 1;
                visibility: visible;
            }
            .nav-item {
                width: 100%;
                .nav-link {
                    padding: 20px 30px;
                    font-weight: 600;
                    font-size: 16px;
                    color: $color-black;
                    &:hover {
                        color: $color-blue;
                    }
                    &::after {
                        content: unset;
                    }
                }
                .submenu {
                    position: static;
                    border-radius: unset;
                    box-shadow: unset;
                    max-height: 0;
                    padding: 0 30px;
                    a {
                        padding: 10px;
                        border-bottom: unset;
                        font-size: 14px;
                        font-weight: 600;
                    }
                }
                &.show-childmenu {
                    .nav-link {
                        padding-bottom: 8px;
                    }
                    .submenu {
                        max-height: fit-content;
                    }
                }
            }
            .logo-mbl {
                display: block;
                margin: 20px auto;
                width: 130px;
            }
        }
        .contact-btn {
            margin-left: auto;
        }
        .nav-search {
            margin: 0;
            width: 90%;
            input {
                width: 100%;
            }
        }

    }
}
@media (max-width: 768px) {
    .section-nav {
        .nav-container {
            padding: 30px 0;
        }
        .nav-search {
            width: 90%;

            input {
                width: 100%;
            }
        }
    }
}
@media (max-width: 480px) {
    .section-nav {
        .logo {
            width: 150px;
        }
        .nav-container {
            padding: 20px 0;
        }
        .contact-btn {
            font-size: 13px;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-search {
            width: 90%;

            input {
                width: 100%;
            }
        }
    }
}

//----------------- Hero Styling
.section-hero {
    position: relative;
    background: url('../../img/career-alumni-demo/home-banner-bg.jpg') center/cover no-repeat;
    &.page-hero {
        background: url('../../img/career-alumni-demo/banner-inside.jpg') center/cover no-repeat;
        .container {
            margin: 0 auto;
            min-height: 450px;
            .hero-txts {
                flex-direction: row;
                justify-content: center;
                align-items: center;
                .hero-title {
                    margin-top: 232px;
                    margin-bottom: 0;
                    text-align: center;
                }
            }
        }
    }
    .container {
        display: flex;
        flex-wrap: wrap;
        margin-top: 179px;
        margin-bottom: 150px;
        > * {
            flex: 1;
        }
        .primary-title{
            font-size: 45px;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
            margin-top: 72px;
        }
        .swiper-hero{
            width: 100%;
            overflow: hidden;
            .swiper-wrapper{
                .swiper-slide{
                    overflow: hidden;
                }
                .img{
                    width: 100%;
                    height: 600px;
                    border-radius: 40px;
                    overflow: hidden;
                }
                .desc{
                    position: absolute;
                    z-index: 2;
                    bottom: 0px;
                    left: 20px;
                    width: calc(100% - 200px);
                }
                i{
                    width: 1520.8px;
                    height: 964.2px;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    &:after{
                        content: ' ';
                        position: absolute;
                        background: url(../../img/career-alumni-demo/home-banner-bg-overlay.png) center / cover no-repeat;
                        background-size: 100%;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        bottom: -150px;
                    }
                }
                h5{
                    font-weight: 400;
                    font-size: 35px;
                    margin-bottom: 24px;
                }
                .primary-btn {
                    background: linear-gradient(145deg, #d1d1d1, #ffffff);
                    border: none;
                    border-radius: 25px;
                    padding: 15px 45px;
                    display: flex ;
                    align-items: center;
                    gap: 8px;
                    font-family: inherit;
                    font-weight: bold;
                    font-size: 14px;
                    color: #111;
                    cursor: pointer;
                    transition: 0.3s;
                    display: inline-block;
                    &:hover {
                        background: linear-gradient(145deg, #ffffff, #d1d1d1);
                    }
                }
                .swiper-btns{
                    position: absolute;
                    right: 20px;
                    bottom: 30px;
                    .swiper-btn{
                        position: relative;
                        left: 0;
                        top: 0;
                        margin: 0;
                        margin-bottom: 6px;
                        width: 40px;
                        height: 40px;
                        border-radius: 100%;
                        &:after{
                            display: none;
                        }
                        &.swiper-button-prev{
                            background: #fff url(../../img/career-alumni-demo/banner-arrow-left.png) no-repeat center center;
                        }
                        &.swiper-button-next{
                            background: #fff url(../../img/career-alumni-demo/banner-arrow-right.png) no-repeat center center;
                        }
                        &:hover{
                            opacity: .8;
                        }
                    }
                }
            }
        }
    }
    &.news{
        .container {
            margin-bottom: 100px;
            .swiper-hero .swiper-wrapper{
                .img{
                    height: 400px;
                }
                .desc{
                    position: relative;
                    margin-top: 20px;
                    left: 0;
                }
                h5 {
                    font-weight: 600;
                    font-size: 30px;
                    margin-bottom: 24px;
                }
                .swiper-btns {
                    right: auto;
                    left: 187px;
                    bottom: 0;
                    .swiper-btn {
                        width: 48px;
                        height: 48px;
                        margin-bottom: 0;
                        display: inline-block;
                        top: auto;
                        bottom: -4px;
                    }
                }
            }
        }
    }
}

//----------------- Image Text Tabs Styling
.section-imgtxt {
    position: relative;
    z-index: 1;
    overflow: unset;
    .imgtxt {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        > * {
            flex: 1;
        }
        .img-wrap {
            overflow: hidden;
            &.overflow-top {
                margin-top: -100px;
            }
            img {
                border-radius: 20px;
                width: 100%;
                aspect-ratio: 14 / 9;
                object-fit: cover;
            }
            .img-title {
                margin: 20px 0;
            }
        }
        .txt-wrap {
            .author {
                font-weight: 800;
            }
            .desc-gap {
                display: block;
                font-weight: 700;
                margin: 10px 0;
            }
        }
    }
    &.home-about{
        padding-top: 30px;
    }
}
@media (max-width: 992px) {
    .section-imgtxt {
        padding: 30px 0;
        .imgtxt {
            flex-direction: column;
            gap: 30px;
            .img-wrap {
                &.overflow-top {
                    margin-top: 0;
                }
                img {
                    height: auto;
                }
            }
        }
        .tabs-wrap {
            flex-direction: column;
            gap: 30px;
            .left-panel {
                max-width: 100%;
            }
        }
    }
}
@media (max-width: 576px) {
    .section-imgtxt {
        .tabs-wrap {
            padding: 20px;
            .option {
                font-size: 18px;
            }
            .content-row {
                padding: 12px;
                font-size: 14px;
            }
        }
    }
}

//----------------- Dashboard Styling
.section-dashboard {
    .container {
        .dashboard-title {
            max-width: 510px;
            position: relative;
            z-index: 1;
        }
        .dashboard-img {
            position: relative;
            margin-top: -165px;
            .img-txt {
                color: $color-white;
                font-size: 28px;
                letter-spacing: -1px;
                line-height: 1;
                position: absolute;
                bottom: 50px;
                left: 50px;
            }
        }
        .card-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            .card {
                flex: 1 1 calc(25% - 1rem);
                min-width: 250px;
                background-color: #0f409d;
                padding: 50px 50px 40px 40px;
                border-radius: 10px;
                color: $color-white;
                transition: transform 0.2s ease;
                position: relative;
                cursor: pointer;
                &::before {
                    content: '';
                    position: absolute;
                    opacity: 0.1;
                    top: 25px;
                    right: 25px;
                    width: 80px;
                    height: 80px;
                    background: url(https://www.ku.ac.ae/wp-content/themes/khalifauniversity/assets/img/career-alumni-demo/icon-msg.png) center/contain no-repeat;
                }
                &.card-2 {
                    background-color: #0e3690;
                }
                &.card-3 {
                    background-color: #203461;
                }
                &.card-4 {
                    background-color: #0f1b43;
                }
                &.card-2::before {
                    background: url(https://www.ku.ac.ae/wp-content/themes/khalifauniversity/assets/img/career-alumni-demo/icon-pen.png) center/contain no-repeat;
                }
                &.card-3::before {
                    background: url(https://www.ku.ac.ae/wp-content/themes/khalifauniversity/assets/img/career-alumni-demo/icon-signup.png) center/contain no-repeat;
                }
                &.card-4::before {
                    background: url(https://www.ku.ac.ae/wp-content/themes/khalifauniversity/assets/img/career-alumni-demo/icon-search.png) center/contain no-repeat;
                }
                &:hover {
                    transform: translateY(-5px);
                }
                .card-icon {
                    width: 30px;
                    height: 30px;
                    margin-bottom: 20px;
                }
                .card-title {
                    font-size: 20px;
                    font-weight: 700;
                    margin-bottom: 15px;
                    line-height: 1;
                }
                .card-description {
                    font-size: 15px;
                    font-weight: 300;
                    line-height: 1.2;
                }
            }
            @media (max-width: 1024px) {
                .card {
                    flex: 1 1 calc(50% - 1rem);
                }
            }
            @media (max-width: 640px) {
                .card {
                    flex: 1 1 100%;
                }
            }
        }
    }
}

@media (max-width: 992px) {
    .section-dashboard {
        padding: 40px 0;
        .container {
            .dashboard-title {
                max-width: 350px;
                text-align: center;
                font-size: 26px;
            }
            .dashboard-img {
                margin-top: -120px;
                .img-txt {
                    font-size: 20px;
                    bottom: 30px;
                    left: 30px;
                }
            }
        }
        .card-wrap {
            margin-top: 20px;
            gap: 20px;
            .card {
                padding: 30px;
                min-width: calc(50% - 10px);
            }
        }
    }
}
@media (max-width: 850px) {
    .section-dashboard {
        .container {
            .dashboard-title {
                max-width: 100%;
            }
            .dashboard-img {
                margin-top: 30px;
                .img-txt {
                    font-size: 18px;
                    bottom: 20px;
                    left: 20px;
                }
            }
        }
    }
}
@media (max-width: 576px) {
    .section-dashboard {
        .card-wrap {
            .card {
                min-width: 100%;
            }
        }
    }
}

//----------------- News Styling
.section-news {
    .primary-title {
        margin-bottom: 30px;
        // padding: 0 50px;
    }
    .swiper-container {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        padding: 70px 70px;
        width: 100%;
        background: #f9f9f9;
        border-radius: 30px;
    }
    .swiper-slide {
        background: #fff;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 25px;
        padding-left: 0;
        &.swiper-slide-next {
            background: #ececec;
            border-radius: 8px;
            padding-left: 25px;
        }
    }
    .news-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
        height: 130px;
        background: transparent;
        box-shadow: none;

        .swiper-slide-active & {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
    }
    .news-image-link {
        flex: 0 0 120px;
        height: 120px;
        border-radius: 10px;
        overflow: hidden;
    }
    .news-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        &:hover {
            transform: scale(1.05);
        }
    }
    .news-content {
        flex: 1;
        padding: 5px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .news-title {
        margin-top: 20;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.3;
        color: $color-black;
        transition: color 0.2s ease;
        margin-bottom: 15px;
        overflow: hidden;
        &:hover {
            color: $color-blue;
        }
    }
    .read-more {
        color: $color-blue;
        font-size: 13px;
        font-weight: 500;
        margin-top: auto;
        transition: color 0.2s ease;
        &:hover {
            color: darken($color-blue, 10%);
        }
    }
    .swiper-button-next, .swiper-button-prev {
        top: 50%;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: 2px solid #000;
        &:after {
            font-size: 14px;
            font-weight: 900;
        }
        &:hover {
            background-color: #fff;
        }
        &.swiper-button-disabled {
            opacity: 0;
            cursor: default;
        }
    }
    .swiper-button-prev {
        left: 15px;
        z-index: 9;
    }
    .swiper-button-next {
        right: 15px;
        z-index: 9;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
        color: #333;
    }
    .newsletter-wrapper {
        background-color: #0f409d;
        padding: 60px 50px;
        border-radius: 30px;
        margin-top: 30px;
    }
    .newsletter-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;

        @media (max-width: 768px) {
            flex-direction: column;
            text-align: center;
        }
    }
    .text-content {
        .newsletter-title {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 2px;
            letter-spacing: -1px;
        }
        .newsletter-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 22px;
            font-weight: 400;
            letter-spacing: -0.5px;
        }
    }
    .newsletter-form {
        width: 50%;
        .input-group {
            position: relative;
            display: flex;
            align-items: center;
        }
        .primary-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(145deg, #d1d1d1, #ffffff);
            border: none;
            border-radius: 25px;
            padding: 20px 70px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: inherit;
            font-weight: bold;
            font-size: 14px;
            color: $color-black;
            cursor: pointer;
            transition: 0.3s;
            .arrow {
                display: flex;
                align-items: center;
                font-size: 12px;
                transition: transform 0.3s ease;
            }
            &:hover {
                background: linear-gradient(145deg, #ffffff, #d1d1d1);
                .arrow {
                    transform: translateX(3px);
                }
            }
        }

        @media (max-width: 480px) {
            input {
                padding-right: 140px;
            }
            .primary-btn {
                padding: 8px 20px;
                font-size: 13px;
            }
        }
    }
    @media (max-width: 992px) {
        padding: 40px 0;
        .swiper-container {
            margin: 0 -20px;
            padding: 0 20px;
            .swiper-slide {
                padding-left: 30px;
                &:first-child {
                    padding-left: 0;
                }
            }
        }
        .news-card {
            height: auto;
            gap: 15px;
        }
        .news-image-link {
            flex: 0 0 200px;
            height: 200px;
        }
        .newsletter-wrapper {
            padding: 40px 30px;
            margin-top: 20px;
            border-radius: 20px;
        }
        .newsletter-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
        .newsletter-form {
            width: 100%;
        }
    }
    @media (max-width: 768px) {
        .primary-title {
            padding: 0 10px;
        }
        .swiper-container {
            margin: 0 -40px;
            padding: 0 50px;
        }
        .news-image-link {
            flex: 0 0 120px;
            height: 120px;
        }
        .news-title {
            font-size: 18px;
        }
        .swiper-button-next {
            right: 50px;
        }
        .swiper-button-prev {
            left: 50px;
        }
    }
    @media (max-width: 576px) {
        .swiper-container {
            .swiper-slide {
                padding-left: 15px;
                &:first-child {
                    padding-left: 0;
                }
            }
        }
        .news-image-link {
            flex: 0 0 100px;
            height: 100px;
        }
        .news-title {
            font-size: 15px;
        }
        .swiper-button-next {
            right: 30px;
            width: 28px;
            height: 28px;
            &::after {
                font-size: 15px;
            }
        }
        .swiper-button-prev {
            left: 30px;
            width: 28px;
            height: 28px;
            &::after {
                font-size: 15px;
            }
        }
    }
}



//----------------- Spotlight Section Styling
.section-spotlight {
    .container {
        overflow: hidden;
        .swiper-container-spotlight .swiper-slide {
            display: flex;
            align-items: center;
        }
        .txt-wrapper {
            min-width: 60%;
            max-width: 60%;
            .title-wrap {
                display: flex;
                gap: 20px;
                line-height: 1;
                margin-bottom: 40px;
                .primary-title {
                    max-width: 200px;
                }
                img {
                    width: 60px;
                    height: 60px;
                    object-fit: contain;
                }
            }
            .desc-wrap {
                background-color: #0f409d;
                padding: 60px 50px;
                border-radius: 50px;
                color: $color-white;
                .primary-title {
                    max-width: 320px;
                    font-size: 34px;
                    font-weight: 600;
                    line-height: 1;
                    margin-bottom: 15px;
                }
                .primary-desc {
                    max-width: 250px;
                    font-size: 18px;
                    font-weight: 400;
                    line-height: 1.2;
                    margin-bottom: 10px;
                }
            }
        }
        .video-wrapper {
            min-width: calc(72% - 50px);
            max-width: calc(72% - 50px);
            margin-left: -28%;
            overflow: hidden;
            padding-top: 70px;
            position: relative;
            .video-wrap {
                position: relative;
                cursor: pointer;
                img, svg {
                    width: 100%;
                    display: block;
                }
                &::after {
                    content: '';
                    position: absolute;
                    left: 35px;
                    bottom: 35px;
                    width: 90px;
                    height: 90px;
                    background: url(https://www.ku.ac.ae/wp-content/themes/khalifauniversity/assets/img/career-alumni-demo/play-button.png) center/contain no-repeat;
                }
            }
        }
        .swiper-container-spotlight {
            position: relative;
        }
        .swiper-button-next,
        .swiper-button-prev {
            top: 30px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid #000;
            &.swiper-button-disabled {
                opacity: 0;
                cursor: default;
            }
        }
        .swiper-button-prev {
            left: unset;
            right: 60px;
            z-index: 9;
        }
        .swiper-button-next {
            left: unset;
            right: 10px;
            z-index: 9;
        }
        .swiper-button-next:after,
            .swiper-button-prev:after {
            font-size: 20px;
            color: #333;
            font-weight: 900;
        }
    }
}

@media (max-width: 1200px) {
    .section-spotlight {
        .container {
            .video-wrapper {
                .video-wrap {
                    &::after {
                        width: 75px;
                        height: 75px;
                        bottom: 30px;
                        left: 20px;
                    }
                }
            }
        }
    }
}
@media (max-width: 992px) {
    .section-spotlight {
        padding: 40px 0;
        .container {
            padding-bottom: 70px;
            .swiper-container-spotlight .swiper-slide {
                flex-direction: column;
                gap: 30px;
            }
            .txt-wrapper {
                min-width: 100%;
                max-width: 100%;
                .title-wrap {
                    .primary-title {
                        max-width: unset;
                    }
                }
                .desc-wrap {
                    padding: 40px 30px;
                    border-radius: 30px;
                    .primary-title {
                        font-size: 28px;
                    }
                    .primary-desc {
                        font-size: 16px;
                    }
                }
            }
            .video-wrapper {
                min-width: 100%;
                max-width: 100%;
                margin-left: 0;
                padding-top: 0;
                .swiper-button-next,
                .swiper-button-prev {
                    top: unset;
                    bottom: -50px;
                }
                .swiper-button-prev {
                    left: calc(50% - 50px);
                    right: unset;
                    z-index: 9;
                }
                .swiper-button-next {
                    right: calc(50% - 50px);
                    left: unset;
                    z-index: 9;
                }
            }
        }
    }
}
@media (max-width: 600px) {
    .section-spotlight {
        .container {
            .video-wrapper {
                .video-wrap {
                    &::after {
                        width: 65px;
                        height: 65px;
                        bottom: 20px;
                    }
                }
            }
        }
    }
}
@media (max-width: 480px) {
    .section-spotlight {
        .container {
            .txt-wrapper .title-wrap {
                .primary-title {
                    font-size: 30px;
                }
                img, svg {
                    max-width: 45px;
                    max-height: 45px;
                }
            }
            .video-wrapper {
                .video-wrap {
                    &::after {
                        width: 50px;
                        height: 50px;
                        bottom: 13px;
                    }
                }
            }
        }
    }
}

//----------------- Footer Styling
.section-footer {
    .footer-top-desc {
        color: $color-white;
        background-color: #0e3690;
        border-top-right-radius: 70px;
        border-bottom-right-radius: 70px;
        width: 70%;
        padding-left: calc((100% - 1250px) / 2);
        position: relative;
        .txt-wrap {
            padding: 60px 60px 60px 50px;
            font-size: 17px;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            width: 90%;
            border-radius: 30px;
            .txt-wrap {
                padding: 40px;
                font-size: 15px;
                line-height: 1.6;
            }
        }
        @media (max-width: 480px) {
            width: 95%;
            .txt-wrap {
                padding: 30px;
            }
        }
    }
    .footer-nav-wrap {
    }
    .footer-nav {
        display: grid  ;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
        justify-content: flex-end;
        width: 100%;
        background-color: #ececec;
        padding: 150px 41px 30px;
        border-radius: 70px;
        margin-top: -113px;
        @media (max-width: 768px) {
            flex-direction: column;
            gap: 40px;
            padding: 0;
        }
    }
    .footer-nav-column {
        .footer-title {
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 15px;
            color: $color-black;
            letter-spacing: -0.5px;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            li {
                margin-bottom: 15px;
                a {
                    text-decoration: none;
                    color: $color-black;
                    font-size: 15px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-weight: 600;
                    transition: 0.3s;
                    &:hover {
                        transform: translateY(-1px);
                    }
                    i {
                        font-size: 14px;
                    }
                }
            }
        }
        @media (max-width: 768px) {
            .footer-title {
                font-size: 20px;
                margin-bottom: 20px;
            }
            ul li {
                margin-bottom: 15px;
                a {
                    font-size: 15px;
                }
            }
        }
    }
    .footer-bottom-txt {
        font-size: 16px;
        letter-spacing: -0.3px;
        font-weight: 900;
        color: $color-black;
        padding: 30px 0 40px;
        text-align: center;
        @media (max-width: 768px) {
            font-size: 14px;
            padding: 35px 0;
            font-weight: 700;
            max-width: 90%;
        }
    }
}

@media (max-width: 1170px) {
    .section-footer {
        .footer-top-desc {
            width: 90%;
            margin: 0 auto;
            border-radius: 30px;
            .txt-wrap {
                padding: 30px;
                font-size: 15px;
                line-height: 1.6;
            }
        }
        .footer-nav-wrap {
            margin-top: -20px;
            width: 90%;
            padding: 60px 30px 40px;
            border-radius: 30px;
        }
        .footer-nav {
            gap: 30px;
            padding: 0;
            justify-content: space-between;
        }
        .footer-bottom-txt {
            font-size: 14px;
            padding: 30px 20px;
            text-align: center;
        }
    }
}
@media (max-width: 768px) {
    .section-footer {
        .footer-nav {
            flex-direction: column;
        }
    }
}

//----------------- Benefits Cards Styling
.section-benefits {
    background: #d9e2fc;
    padding: 60px 0 80px;

    .benefits-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px 25px;
        align-items: center;
        .benefit-card {
            flex: 0 0 calc(50% - 15px);
            min-height: 100px;
            &.benefits-header {
                flex: 0 0 calc(100% - 15px);
            }
        }
    }
    .benefits-header {
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: $color-black;
        align-self: start;
        .primary-title {
            margin-bottom: 0.5rem;
            color: inherit;
        }
        .primary-desc {
            color: inherit;
        }
    }
    .benefit-card:not(.benefits-header) {
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 40px;
        background: #1842bb;
        border-radius: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        &:nth-child(2) {
            background: #0e3590;
        }
        &:nth-child(3) {
            background: #1f3461;
        }
        &:nth-child(4) {
            background: #0f1b43;
        }
        &:nth-child(5) {
            background: #343c55;
        }
        &:nth-child(6) {
            background: #3b529a;
        }
        &:nth-child(7) {
            background: #1f3461;
        }
        &:nth-child(8) {
            background: #0e3590;
        }
        &:nth-child(9) {
            background: #2f5cc6;
        }
        &:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .benefit-icon {
            width: 35px;
            height: 35px;
            margin-right: 15px;
            object-fit: contain;
        }
        p {
            color: $color-white;
            margin: 0;
            font-size: 15px;
            line-height: 1.4;
        }
    }
    @media (max-width: 768px) {
        .benefits-grid {
            .benefit-card {
                flex: 0 0 100%;
            }
        }
    }
    @media (max-width: 480px) {
        padding: 30px 0;
        .benefit-card:not(.benefits-header) {
            padding: 1.25rem;
            .benefit-icon {
                width: 28px;
                height: 28px;
            }
            p {
                font-size: 14px;
            }
        }
        .benefits-header {
            padding: 20px;
        }
    }
}

//----------------- Mission & Vision Styling
.section-mission-vision {
    overflow: visible;
    .container {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 30px;
        flex-wrap: wrap;
    }
    .card {
        border-radius: 30px;
        padding: 50px;
        flex: 1;
        min-width: 300px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 25px;
        box-shadow: 0 0px 40px rgba(0, 0, 0, 0.15);
        .icon {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            object-fit: contain;
        }
        .text-content {
            flex: 1;
        }
        .primary-title {
            margin: 0 0 10px 0;
        }
        .primary-desc {
            line-height: 1.6;
            font-weight: 500;
        }
        &:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
    }
    @media (max-width: 1200px) {
        .card {
            min-width: 280px;
            padding: 35px;
            .icon {
                width: 50px;
                height: 50px;
            }
        }
    }
    @media (max-width: 992px) {
        .container {
            gap: 20px;
        }
        .card {
            padding: 30px;
        }
    }
    @media (max-width: 768px) {
        padding: 60px 0;
        .container {
            flex-direction: column;
        }
        .card {
            width: 100%;
            .icon {
                width: 45px;
                height: 45px;
            }
        }
    }
}

//----------------- Objectives Styling
.section-objective {
    .container {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    .primary-title {
        margin-bottom: 30px;
    }
    .objective-illustration {
        flex: 1;
        img {
            width: 100%;
            height: auto;
            border-radius: 25px;
        }
    }
    .objective-content {
        flex: 1;
        max-width: 500px;
        .objective-list {
            list-style: none;
            padding: 0;
            margin: 0;
            li.primary-desc {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                line-height: 1.6;
                margin-bottom: 25px;
                font-weight: 500;
                i {
                    color: #444;
                    font-size: 18px;
                    margin-top: 7px;
                    transition: 0.3s;
                }
                &:hover {
                    i {
                        transform: translateX(2px);
                    }
                }
            }
        }
    }
    @media (max-width: 1200px) {
        .container {
            gap: 40px;
        }
        .objective-illustration {
            .primary-title {
                font-size: 38px;
            }
        }
    }
    @media (max-width: 992px) {
        padding: 60px 0;
        .container {
            gap: 30px;
        }
        .objective-illustration {
            .primary-title {
                font-size: 34px;
                margin-bottom: 20px;
            }
        }
        .objective-content {
            .objective-list {
                li.primary-desc {
                    font-size: 15px;
                    margin-bottom: 20px;
                }
            }
        }
    }
    @media (max-width: 768px) {
        padding: 50px 0;
        .container {
            flex-direction: column;
            gap: 40px;
        }
        .objective-illustration {
            text-align: center;
            .primary-title {
                font-size: 32px;
            }
            img {
                max-width: 500px;
                margin: 0 auto;
            }
        }
    }
    @media (max-width: 480px) {
        .objective-illustration {
            .primary-title {
                font-size: 28px;
            }
        }
        .objective-content {
            .objective-list {
                li.primary-desc {
                    font-size: 14px;
                    margin-bottom: 15px;
                    gap: 12px;
                    i {
                        font-size: 16px;
                    }
                }
            }
        }
    }
}

//----------------- Staff Info Styling
.section-staffinfo {
    background-color: #fff;
    .staff-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px 25px;
        .staff-card {
            background-color: #ececec;
            border-radius: 20px;
            padding: 30px;
            width: 100%;
            @media (min-width: 768px) {
                width: calc(50% - 13px);
            }
            @media (min-width: 1024px) {
                width: calc(33.333% - 17px);
            }
            .staff-name {
                color: #0c3486;
                font-size: 25px;
                font-weight: 700;
                margin: 0;
            }
            .staff-title {
                color: #666;
                font-size: 14px;
                margin: 0 0 20px 0;
            }
            .staff-contact {
                display: flex;
                gap: 8px;
                margin-bottom: 12px;
                background-color: $color-white;
                border-radius: 12px;
                &:last-child {
                    margin-bottom: 0;
                }
                i {
                    color: $color-white;
                    width: 40px;
                    height: 38px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 12px;
                    font-size: 15px;
                    background-color: #003087;
                }
                span, a {
                    color: $color-black;
                    font-weight: 500;
                    font-size: 14px;
                    padding: 10px;
                    cursor: pointer;
                }
            }
        }
    }
}

//----------------- Video Popup Styling
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    &.active {
        opacity: 1;
        visibility: visible;
        .popup-content {
            transform: translate(-50%, -50%) scale(1);
        }
    }
    .popup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
    }
    .popup-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.7);
        width: 90%;
        max-width: 1000px;
        transition: all 0.3s ease;
    }
    .close-popup {
        position: absolute;
        top: -40px;
        right: -40px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        i {
            font-size: 20px;
        }
        &:hover {
            transform: rotate(90deg);
        }
    }
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;

        iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    }
    @media (max-width: 768px) {
        .close-popup {
            right: 0;
            top: -50px;
        }
    }
}

//----------------- About Us Page Styling
#pageAboutUs {
}

//----------------- Initiatives Cards Styling
.section-initiatives {

    .initiatives-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 70px 40px;
        .initiative-card {
            flex: 0 0 calc(50% - 20px);
            .img-wrap {
                position: relative;
                margin-bottom: 15px;
                border-radius: 40px;
                overflow: hidden;
                cursor: pointer;
                img {
                    width: 100%;
                    height: 300px;
                    object-fit: cover;
                    display: block;
                    transition: transform 0.3s ease;
                }
                .card-title {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    padding: 100px 10px;
                    padding-bottom: 40px;
                    margin: 0;
                    text-align: center;
                    font-size: 24px;
                    font-weight: 700;
                    color: $color-white;
                    background: linear-gradient(
                        to top,
                        rgba(15, 64, 157, 0.9) 0%,
                        rgba(15, 64, 157, 0.8) 30%,
                        rgba(15, 64, 157, 0.5) 70%,
                        rgba(15, 64, 157, 0.0) 100%
                        );
                    transition: 0.3s;
                }
            }
            .card-desc {
                font-size: 15px;
                line-height: 1.6;
                color: $color-black;
                font-weight: 500;
            }
            &:hover {
                .img-wrap {
                    img {
                        transform: scale(1.05);
                    }
                    .card-title {
                        padding-bottom: 45px;
                    }
                }
            }
        }
    }

    @media (max-width: 992px) {
        .initiatives-grid {
            .initiative-card {
                flex: 0 0 calc(50% - 15px);

                .img-wrap {
                    img {
                        height: 250px;
                    }

                    .card-title {
                        font-size: 20px;
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        padding: 50px 0;

        .initiatives-grid {
            gap: 20px;

            .initiative-card {
                flex: 0 0 100%;

                .img-wrap {
                    img {
                        height: 220px;
                    }

                    .card-title {
                        font-size: 18px;
                        padding: 15px;
                    }
                }

                .card-desc {
                    font-size: 14px;
                }
            }
        }
    }
    &.about-page{
        .initiatives-grid {
            gap: 40px;
            .initiative-card {
                .img-wrap{
                    margin-bottom: 0;
                }
            }
        }
    }
}

//----------------- Image Form Styling
.section-imgform {
    padding: 100px 0 150px;
    position: relative;
    z-index: 1;
    overflow: unset;
    .imgform {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        > * {
            flex: 1;
        }
        .img-wrap {
            overflow: hidden;
            &.overflow-top {
                margin-top: -100px;
            }
            img {
                border-radius: 40px;
                width: 100%;
                aspect-ratio: 14 / 9;
                object-fit: cover;
            }
        }
        .form-wrap {
            .contact-form {
                display: flex;
                flex-direction: column;
                gap: 15px;
                .input-group {
                    width: 100%;
                    input,
                    textarea {
                        width: 100%;
                        padding: 14px 22px;
                        border: unset;
                        border-radius: 10px;
                        font-family: inherit;
                        font-size: 15px;
                        font-weight: 500;
                        transition: 0.3s;
                        background-color: #ececec;
                        border: 2px solid transparent;
                        &:focus {
                            outline: none;
                            border-color: $color-blue;
                        }
                        &::placeholder {
                            color: #444;
                            font-size: 14px;
                            font-weight: 500;
                        }
                    }
                    textarea {
                        height: 150px;
                        resize: vertical;
                    }
                }
                .submit-btn {
                    background: linear-gradient(to right, #0080ff, #1a44c4);
                    color: $color-white;
                    border: none;
                    padding: 15px 30px;
                    border-radius: 10px;
                    font-family: inherit;
                    font-size: 15px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: 0.3s;
                    align-self: flex-start;
                    &:hover {
                        // background: linear-gradient(to right, #1a44c4, #0080ff);
                        transform: translateY(-2px);
                    }
                }
            }
        }
    }
    @media (max-width: 992px) {
        .imgform {
            flex-direction: column;
            gap: 30px;
            > * {
                width: 100%;
            }
            .img-wrap {
                margin-top: 0;
            }
        }
    }
    @media (max-width: 576px) {
        .imgform {
            .form-wrap {
                .contact-form {
                    gap: 15px;
                    .input-group {
                        input,
                        textarea {
                            padding: 12px;
                            font-size: 14px;
                        }
                    }
                    .submit-btn {
                        padding: 12px 25px;
                        font-size: 14px;
                        width: 100%;
                    }
                }
            }
        }
    }
}

//----------------- News Grid Styling
.section-news-grid {
    padding: 100px 0 100px;
    .news-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px 35px;
        .news-card {
            overflow: hidden;
            width: 100%;
            transition: transform 0.3s ease;
            @media (min-width: 768px) {
                width: calc(50% - 18px);
            }
            @media (min-width: 1024px) {
                width: calc(33.333% - 24px);
            }
            &:hover {
                .view-more i {
                    transform: translateX(5px);
                }
            }
            .news-img {
                width: 100%;
                display: block;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.3s ease;
                    aspect-ratio: 8 / 7;
                    border-radius: 30px;
                }
            }
            .news-content {
                .news-title {
                    color: $color-black;
                    font-size: 18px;
                    font-weight: 700;
                    margin: 10px 0 20px 0;
                    line-height: 1.4;
                    display: block;
                }
                .view-more {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: $color-black;
                    font-weight: 600;
                    font-size: 14px;
                    i {
                        transition: transform 0.3s ease;
                    }
                }
            }
        }
    }
    @media (max-width: 768px) {
        padding: 40px 0;
        .news-grid {
            gap: 25px;
            .news-card {
                .news-content {
                    padding: 20px 25px;
                    .news-title {
                        font-size: 16px;
                        margin-bottom: 15px;
                    }
                }
            }
        }
    }
}

//----------------- Alumni Platform Styling
.section-alumni-platform {
    .primary-title {
        margin-bottom: 15px;
    }
    .primary-desc {
        margin-bottom: 15px;
        list-style: none;
    }
    .list-title {
        margin-bottom: 15px;
        font-weight: 800;
    }
}

//----------------- Alumni Card Styling
.section-alumni-card {
    padding: 0 0 150px;
    .primary-desc {
        margin-bottom: 30px;
    }
    .objective-content {
        .objective-list {
            li.primary-desc {
                margin-bottom: 5px;
            }
        }
        .contact-wrap {
            margin-top: 20px;
            line-height: 1;
            font-size: 14px;
            background-color: #dcdcdc;
            border-radius: 7px;
            display: flex;
            justify-content: space-between;
            overflow: hidden;
            span {
                padding: 15px 20px;
                flex: 1;
            }
            a {
                border-radius: 7px;
                text-align: center;
                padding: 15px;
                flex: 1;
                background-color: #305ed1;
                color: #fff;
            }
        }
        .apply-btn {
            margin-top: 80px;
            display: flex;
            justify-content: space-between;
            background: linear-gradient(to right, #0080ff, #1a44c4);
            color: $color-white;
            border: none;
            padding: 18px 30px;
            border-radius: 100px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            align-self: flex-start;
            i {
                transition: 0.3s;
            }
            &:hover i {
                transform: translateX(-5px);
            }
        }
    }
}

//----------------- Request Certificate Styling
.section-request-certificate {
    .primary-desc {
        margin-bottom: 30px;
    }
    .objective-illustration {
        img {
            max-width: 500px;
            display: block;
            margin-left: auto;
            @media (max-width: 500px) {
                margin: 0 auto;
            }
        }
    }
    .objective-content {
        .objective-list {
            li.primary-desc {
                margin-bottom: 5px;
            }
        }
    }
    .apply-btn {
        margin-top: 30px;
        display: inline-block;
        justify-content: space-between;
        background: linear-gradient(to right, #0080ff, #1a44c4);
        color: #fff;
        border: none;
        padding: 18px 30px;
        /* width: 400px; */
        max-width: 90%;
        border-radius: 100px;
        font-family: inherit;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        align-self: flex-start;
        i {
            margin-left: 20px;
            transition: 0.3s;
        }
        &:hover i {
            transform: translateX(-5px);
        }
    }
}

//----------------- Career Advice Styling
.section-form-wrap { 
    background-color: $color-white;
    .primary-desc { 
        line-height: 2;
        margin: 0 auto 30px;
        max-width: 900px;
    }
    form {
        max-width: 800px;
        margin: 0 auto;
    }
    .form-group {
        margin-bottom: 25px;
        .primary-desc {
            text-align: left;
        }
    }
    .full-border-label {
        margin-bottom: 8px;
        display: block;
        font-weight: 500;
        font-size: 14px;
    }
    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="tel"],
    select {
        width: 100%;
        padding: 12px 0;
        border: unset;
        border-bottom: 1px solid #333;
        font-family: inherit;
        font-size: 15px;
        font-weight: 500;
        color: $color-black;
        background-color: $color-white;
        &:focus {
            outline: none;
            border-color: $color-blue;
        }
        &::placeholder {
            color: #444;
        }
        &.full-border {
            border: 1px solid #666;
            border-radius: 6px;
            padding: 12px 15px;
        }
    }
    select {
        appearance: none;
        background: {
            image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            repeat: no-repeat;
            position: right 12px center;
        }
        padding-right: 35px;
        &.gray {
            background-color: #dcdcdc;
            padding: 18px 35px 18px 25px;
            border-radius: 10px;
            border-bottom: unset;
        }
    }
    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        > * {
            flex: 1 1 calc(50% - 10px);
            min-width: 250px;
        }
        @media (max-width: 768px) {
            flex-direction: column;
            > * {
                flex: 1 1 100%;
            }
        }
    }
    .mobile-group {
        display: flex;
        gap: 10px;
    }
    .country-select {
        display: flex;
        align-items: center;
        gap: 5px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 0 10px;
        background: $color-white;
        select {
            border: none;
            padding: 12px 5px;
            width: 85px;
        }
        .flag {
            width: 20px;
            height: 15px;
        }
    }
    .engagement-section {
        margin: 30px 0;
        display: flex;
        gap: 100px;
        p {
            margin-bottom: 15px;
            color: $color-black;
        }
        @media (max-width: 900px) {
            display: block;
        }
    }
    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .custom-checkbox {
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        font-size: 16px;
        color: $color-black;
        input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
            &:checked ~ .checkmark {
                background-color: $color-blue;
            }
            &:checked ~ .checkmark:after {
                content: "";
                position: absolute;
                left: 4px;
                top: 1px;
                width: 4px;
                height: 8px;
                border: solid $color-white;
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }
        }
        .checkmark {
            position: absolute;
            left: 0;
            height: 18px;
            width: 18px;
            border: 2px solid $color-blue;
            border-radius: 6px;
        }
    }
    .upload-btns {
        margin: 40px 0 30px;
        display: flex;
        .upload-btn {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            &:first-child {
                border-right: 2px solid $color-blue;
                padding-right: 20px;
                margin-right: 20px;
            }
        }
        .btn-title {
            font-weight: 500;
            margin-bottom: 15px;
        }
        .btn {
            display: block;
            margin: 0 auto;
            background: linear-gradient(to right, #0080ff, #1a44c4);
            color: #fff;
            border: none;
            padding: 18px 30px;
            width: 100%;
            text-align: center;
            border-radius: 100px;
            font-family: inherit;
            font-size: 16px;
            font-weight: 400;
            transition: 0.2s;
            cursor: pointer;
            &:hover {
                transform: translateY(-3px);
            }
        }
    }
    .submit-btn {
        margin: 30px auto 0;
        width:100%;
        display: flex;
        justify-content: space-between;
        background: linear-gradient(to right, #0080ff, #1a44c4);
        color: $color-white;
        border: none;
        padding: 18px 50px;
        border-radius: 100px;
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        align-self: flex-start;
        &.fullwidth {
            width: 100%;
            justify-content: center;
        }
        &:hover {
            transform: translateY(-3px);
        }
    }
    .form-wrap {
        margin-bottom: 50px;
        .form-title {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        hr {
            flex-grow: 1;
            height: 2px;
            border: unset;
            background: $color-blue;
        }
        .title {
            font-size: 18px;
            font-weight: 900;
        }
    }
}

//----------------- Spotlight Page Form
.section-spotlight-form {
    .engagement-section {
        flex-direction: column;
        gap: 15px;
        margin-top: 0;
    }
}

//----------------- Lifetime Alumni Styling
.section-lifetime-alumni {
    padding: 100px 0 100px;
    .container {
        gap: 100px;
    }
    .objective-illustration {
        flex: 2;
    }
    .objective-content {
        flex: 3;
        max-width: unset;
        .primary-desc {
            line-height: 2.2;
        }
    }
    .btns-wrap {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-top: 80px;
        .btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background: linear-gradient(to right, #0080ff, #1a44c4);
            color: $color-white;
            border: none;
            padding: 18px 30px;
            width: 200px;
            border-radius: 100px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            align-self: flex-start;
            &:hover {
                transform: translateY(-2px);
            }
        }
    }
}

//----------------- Council Styling
.section-council {
    padding: 100px 0 100px;
    .primary-desc {
        line-height: 2;
        &.desc-top {
            margin: 20px 0 50px;
        }
    }
    .primary-title {
        margin-bottom: 10px;
        line-height: 1.1;
    }
    .objective-illustration {
        img {
            border-radius: 40px;
        }
    }
    .objective-content {
        max-width: unset;
        .objective-list {
            margin-top: 30px;
            li.primary-desc {
                cursor: pointer;
                margin-bottom: 10px;
            }
        }
    }
}

//----------------- Structure Styling
.section-structure {
    padding: 0 0 50px;
    .container {
        background-color: #1946c6;
        border-radius: 500px;
        padding: 60px 100px 90px;
        @media (max-width: 768px) {
            border-radius: 50px;
        }
    }
    .primary-title {
        color: $color-white;
        text-align: center;
        margin-bottom: 50px;
    }
    .structure-line {
        display: flex;
        justify-content: space-between;
        position: relative;
        &::before {
            content: '';
            position: absolute;
            left: 50px;
            right: 70px;
            height: 10px;
            background: rgba($color-white, 0.3);
            top: 13px;
        }
        @media (max-width: 768px) {
            flex-direction: column;
            gap: 2rem;
            padding: 0;
            &::before {
                width: 5px;
                height: calc(100% - 80px);
                left: 50%;
                top: 24px;
                transform: translateX(-50%);
            }
        }
    }
    .position {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        cursor: pointer;
        @media (max-width: 768px) {
            width: 100%;
            margin-bottom: 20px;
        }
        &:hover {
            .position-dot {
                transform: scale(1.3);
                box-shadow: 0 0 15px rgba($color-white, 0.5);
            }
            .position-title {
                transform: translateY(5px);
            }
        }
    }
    .position-dot {
        width: 35px;
        height: 35px;
        background: $color-blue;
        border: 12px solid $color-white;
        border-radius: 50%;
        margin-bottom: 1rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .position-title {
        color: $color-white;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        max-width: 150px;
        transition: 0.3s;
        @media (max-width: 768px) {
            max-width: 100%;
        }
    }
    @media (max-width: 768px) {
        padding: 20px;
    }
}

//----------------- Vertical Tabs Styling
.section-vertical-tabs {
    padding: 40px 0 40px;
    .tabs-container {
        display: flex;
        gap: 50px;
        flex-direction: column;
        align-items: start;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0px 0px 30px 0px rgba($color: #000000, $alpha: 0.15);
    }
    .tabs {
        display: flex;
        flex-direction: column;
        width: 290px;
        gap: 10px;
        @media (max-width: 768px) {
            width: auto;
            min-width: 280px;
        }
    }
    .tab-button {
        width: 100%;
        padding: 15px 20px;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #111;
        font-weight: 500;
        text-transform: uppercase;
        transition: padding-left 0.3s ease, border-radius 0.3s ease;
        position: relative;
        border-bottom: 2px solid $color-blue;
        &::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            border: 5px solid $color-white;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: 0.3s;
            border-radius: 100px;
        }
        &.active {
            color: $color-white;
            padding-left: 50px;
            border-bottom-color: transparent;
            border-radius: 150px;
            background: linear-gradient(to right, #0080ff, #1a44c4);
            &::before {
                // width: 8px;
                opacity: 1;
            }
        }
        &:last-child {
            border-bottom-color: transparent;
        }
        @media (max-width: 768px) {
            text-align: center;
            &.active {
                padding-left: 12px;
            }
        }
    }
    .tab-content {
        flex: 1;
        display: none;
        &.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
    }
    .content-list {
        list-style: none;
        li {
            margin-bottom: 15px;
            position: relative;
            line-height: 1.5;
            color: #111;
            font-weight: 500;
            display: flex;
            gap: 10px;
            i {
                padding-top: 3px;
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(10px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @media (min-width: 768px) {
        .tabs-container {
            flex-direction: row;
        }
    }
    &.initiatives{
        .tab-button {
            &:before{
                width: 32px;
                height: 32px;
                border: none;
                border-radius: none;
            }
            &.tab-1:before{
                background:  url(../../img/career-alumni-demo/office_initiative_1.png) no-repeat left center;
                background-size: 28px;
            }
            &.tab-2:before{
                background: url(../../img/career-alumni-demo/office_initiative_2.png) no-repeat left center;
                background-size: 28px;
            }
            &.tab-3:before{
                background: url(../../img/career-alumni-demo/office_initiative_3.png) no-repeat left center;
                background-size: 28px;
            }
            &.tab-4:before{
                background: url(../../img/career-alumni-demo/office_initiative_4.png) no-repeat left center;
                background-size: 28px;
            }
        }
    }
    &.alumni-services{
        .btn{
            margin: 30px auto 0;
            margin-right: 30px;
            display: inline-block;
            justify-content: space-between;
            background: linear-gradient(to right, #0080ff, #1a44c4);
            color: #fff;
            border: none;
            padding: 18px 52px;
            /* width: 400px; */
            max-width: 90%;
            border-radius: 100px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            align-self: flex-start;
            &:hover {
                transform: translateY(-2px);
            }
        }
    }
}
//---------- Vertical Tab Section ----------
.section-council-memebers {
    padding: 50px 0 100px;
    .primary-title{
        text-align: center;
    }

    .people{
        margin-top: 50px;
        display: grid;
        grid-template-columns: calc((100% /3) - (120px /3)) calc((100% /3) - (120px /3)) calc((100% /3) - (120px /3));
        gap : 60px;
        .blk{
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .img{
            width: 100%;
            height: 348px;
            padding: 29px;
            position: relative;
            margin-bottom: 20px;
            &:before{
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 94%;
                height: 94%;
                background: url(../../img/career-alumni-demo/people-overlay.png) no-repeat center center;
                background-size: 100%;
            }
            .inner{
                overflow: hidden;
                border-radius: 100%;
                img{
                    width: 100%;
                    min-height: 100%;
                }
            }
        }

        span{
            display: block;
            margin-bottom: 10px;
            &.name{
                font-weight: bold;
                font-size: 20px;
                text-transform: uppercase;
            }
        }
        a{
            margin-top: 10px;
            display: inline-block;
            padding: 12px 40px;
            background: #1946c6;
            color: #fff;
            text-transform: uppercase;
            border-radius: 20px;
            &:hover{
                opacity: .8;
            }
        }
    }
}

//----------------- Title Desc 2 column Grid Section
.section-title-w-desc-col {
    padding: 80px 0 50px;
    .container {
        align-items: flex-start;
        .objective-content {
            max-width: unset;
        }
        @media (max-width: 500px) {
            gap: 0;
        }
    }
    .primary-title {
        max-width: 450px;
        line-height: 1.1;
    }
    .primary-desc {
        line-height: 2;
    }
    .objective-content {
        .objective-list {
            li.primary-desc {
                margin-bottom: 5px;
            }
            a {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                line-height: 2;
                font-weight: 500;
                color: inherit;
            }
        }
    }
    @media (max-width: 500px) {
        padding: 50px 0;
    }
}

//----------------- Full Width Image Section
.section-full-w-img {
    padding: 0;
    img {
        border-radius: 50px;
        @media (max-width: 500px) {
            border-radius: 30px;
        }
    }
}

//----------------- FAQ Section
.section-faq {
    padding: 80px 0;
    background-color: $color-blue;
    .container {
        .primary-title {
            color: $color-white;
            margin-bottom: 30px;
        }
    }
    .faq-list {
        display: flex;
        flex-direction: column;
    }
    .faq-item {
        overflow: hidden;
        transition: 0.3s;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        &:hover {
            // background-color: rgba($color-white, 0.05);
        }
    }
    .faq-question {
        font-size: 18px;
        font-weight: 400;
        padding: 18px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: $color-white;
        transition: 0.15s;
        position: relative;
        &::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 18px;
            transition: 0.3s;
        }
        &.active {
            font-weight: 800;
            &::after {
                transform: rotate(180deg);
            }
        }
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: 0.5s ease;
        color: $color-white;
        ul {
            list-style: none;
            padding: 0 0 25px;
            li {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                line-height: 1.6;
                margin-bottom: 15px;
                font-weight: 400;
                i {
                    color: $color-white;
                    font-size: 16px;
                    margin-top: 7px;
                    transition: transform 0.3s ease;
                }
                &:hover {
                    i {
                        transform: translateX(3px);
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
        &.active {
            max-height: 1000px;
        }
    }
    @media (max-width: 768px) {
        padding: 50px 0;
        .faq-question {
            font-size: 16px;
            padding: 20px 25px;
        }
        .faq-answer {
            ul {
                padding: 0 25px 20px;
                li {
                    font-size: 14px;
                }
            }
        }
    }
}

//----------------- Nomination Section
.section-nomination {
    padding: 100px 0;
    background: #e2ecf8;
    .btn {
        display: block;
        margin-top: 30px;
        background: linear-gradient(to right, #0080ff, #1a44c4);
        color: #fff;
        border: none;
        padding: 18px 30px;
        max-width: 180px;
        text-align: center;
        border-radius: 100px;
        font-family: inherit;
        font-size: 15px;
        font-weight: 600;
        transition: 0.2s;
        &:hover {
            transform: translateY(-3px);
        }
    }
}

//----------------- Nomination Process Section
.section-nomination-process {
    padding: 120px 0 150px;
    .primary-title {
        text-align: center;
        margin-bottom: 15px;
    }
    .subtitle {
        font-size: 28px;
        color: #999;
        font-weight: 500;
        text-align: center;
    }
    .primary-desc {
        text-align: center;
        margin-bottom: 40px;
    }
    .tabs-container {
        align-items: flex-start;
        margin-bottom: 80px;
    }
    li {
        cursor: pointer;
    }
}

//----------------- Employers Section
.section-employers {
    padding: 120px 0 180px;
    .tab-container {
        display: flex;
        justify-content: center;
        background-color: #ececec;
        border-radius: 50px;
        // overflow: hidden;
        margin-bottom: 50px;
    }
    .tab {
        flex: 1;
        padding: 18px 20px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 100px;
        color: $color-black;
        &.active {
            background: linear-gradient(to right, #0080ff, #1a44c4);
            color: $color-white;
            box-shadow: 0 0 20px 0px rgba(0,0,0,0.4);
            .arrow {
                color: $color-white;
                opacity: 1;
                pointer-events: unset;
            }
        }
        &:first-child .arrow.left,
            &:last-child .arrow.right {
            opacity: 0;
            pointer-events: none;
        }
        .arrow {
            background: none;
            border: none;
            font-size: 12px;
            cursor: pointer;
            padding: 0 12px;
            color: inherit;
            transition: 0.3s;
            opacity: 0;
            pointer-events: none;
            &:hover {
                transform: scale(1.2);
            }
        }
    }
    .tab-content {
        display: none;
        animation: fadeContent 0.4s ease;
        &.active {
            display: block;
        }
        .tab-content-title {
            color: $color-blue;
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .primary-desc {
            line-height: 2;
            margin-bottom: 25px;
        }
        .full-width-img {
            margin: 50px 0;
            img {
                display: block;
                width: 100%;
                object-fit: cover;
                border-radius: 50px;
                @media (max-width: 500px) {
                    border-radius: 30px;
                }
            }
        }
        .btn {
            display: block;
            margin: 30px auto 0;
            background: linear-gradient(to right, #0080ff, #1a44c4);
            color: #fff;
            border: none;
            padding: 18px 30px;
            max-width: 450px;
            text-align: center;
            border-radius: 100px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            transition: 0.2s;
            &:hover {
                transform: translateY(-3px);
            }
        }
    }
    @keyframes fadeContent {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @media (max-width: 768px) {
        padding: 50px 0;
        .tab-container {
            flex-direction: column;
            background: none;
            gap: 10px;
        }
        .tab {
            background-color: #ececec;
            border-radius: 50px;
            justify-content: space-between;
        }
        .tab-content {
            .tab-content-title {
                font-size: 18px;
            }
        }
    }
}

//----------------- Whole page vertical tab section
.section-vertical-tab-wholepage {
    padding: 100px 0 150px;
    .tabs-container {
        padding: 0;
        box-shadow: unset;
        border-radius: unset;
        align-items: flex-start;
        @media (max-width: 991px) {
            flex-direction: column;
            align-items: center;
        }
        .tabs {
            gap: 5px;
            @media (min-width: 768px) and (max-width: 991px) {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
                gap: 20px;
                .tab-button {
                    width: 180px;
                    text-align: center;
                    padding: 5px 0;
                }
            }
            @media (max-width: 450px) {
                min-width: unset;
            }
        }
        .tab-content {
            max-width: 100%;
        }
        .tab-button {
            padding: 15px 0;
            font-size: 16px;
            text-transform: unset;
            font-weight: 500;
            border-bottom-color: #94a9e4;
            &.active {
                border-radius: 10px;
                padding: 15px 20px;
            }
            &::before {
                content: unset;
            }
        }
        .content-title {
            font-size: 22px;
            color: $color-blue;
            margin-bottom: 10px;
        }
        .content-desc {
            line-height: 2;
            margin-bottom: 20px;
        }
        .full-width-img img {
            border-radius: 50px;
            display: block;
            margin: 20px 0;
            @media (max-width: 500px) {
                border-radius: 30px;
            }
        }
        .content-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            .btn {
                flex: 1;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                background: linear-gradient(to right, #0080ff, #1a44c4);
                color: $color-white;
                border: none;
                padding: 18px 30px;
                width: 200px;
                border-radius: 100px;
                font-family: inherit;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
                transition: 0.3s;
                align-self: flex-start;
                min-width: 350px;
                &:hover {
                    transform: translateY(-2px);
                }
                @media (max-width: 400px) {
                    min-width: 250px;
                    font-size: 14px;
                    padding: 15px;
                }
            }
        }
        .content-list {
            margin-top: 40px;
            p {
                font-weight: 600;
                font-size: 18px;
                margin-bottom: 15px;
            }
            a {
                color: inherit;
                transition: 0.3s;
                &:hover {
                    transform: translateX(2px);
                }
            }
        }
        .img-txt-overlap {
            margin-top: 50px;
            display: flex;
            align-items: center;
            .txt-wrapper {
                background: linear-gradient(to right, #0080ff, #1a44c4);
                padding: 60px 50px;
                border-radius: 50px;
                color: $color-white;
                min-width: 60%;
                max-width: 60%;
                @media (max-width: 620px) {
                    padding: 30px;
                }
                .primary-title {
                    max-width: 320px;
                    font-size: 34px;
                    font-weight: 600;
                    line-height: 1;
                    margin-bottom: 30px;
                    @media (max-width: 620px) {
                        font-size: 25px;
                        margin-bottom: 10px;
                    }
                    @media (max-width: 450px) {
                        font-size: 20px;
                        margin-bottom: 5px;
                    }
                }
                .book-btn {
                    display: flex;
                    gap: 10px;
                    color: inherit;
                    align-items: center;
                    font-size: 16px;
                    padding: 10px 0;
                    transition: 0.3s;
                    max-width: fit-content;
                    border-radius: 100px;
                    &:hover {
                        padding: 10px 30px;
                        background: rgba($color: #ffffff, $alpha: 0.1);
                    }
                    @media (max-width: 450px) {
                        font-size: 14px;
                    }
                }
            }
            .img-wrapper {
                min-width: 70%;
                max-width: 70%;
                margin-left: -30%;
                img {
                    display: block;
                }
            }
        }
    }
}