/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #000;
}

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
    margin: 0 auto;
}

.slider-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(6, 16, 48, .88) 0%,
            rgba(8, 22, 60, .70) 22%,
            rgba(11, 31, 109, .35) 48%,
            rgba(11, 31, 109, .10) 70%,
            rgba(0, 0, 0, .35) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .25) 0%,
            transparent 20%,
            transparent 70%,
            rgba(0, 0, 0, .55) 100%);
}

.slice:nth-child(1) {
    z-index: 1;
}

.slice:nth-child(2) {
    z-index: 1;
}

.slice:nth-child(3) {
    z-index: 1;
}

.slice:nth-child(4) {
    z-index: 1;
}

.slice:nth-child(5) {
    z-index: 1;
}

@media (min-width:769px) {

    .slider-container {
        height: 100vh;
        max-width: 1920px;
    }

}

/* Mobile */

@media (max-width:768px) {

    .slider-container {
        aspect-ratio: 16 / 9;
        width: 100%;
    }

}

/* ===========================
   SLICES
=========================== */

.slice {

    position: absolute;

    top: -100%;

    height: 100%;

    background-repeat: no-repeat;

    background-position: center;

    background-size: 500% 100%;

    opacity: 0;

    z-index: 1;

    transform: translateZ(0);

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;

    will-change: transform, top;

}

/* Active Animation */

.slice.active {

    animation: fall 1.5s ease-out forwards;

}

/* ===========================
   DESKTOP (5 SLICES)
=========================== */

@media (min-width:769px) {

    .slice {

        width: calc(100% / 5);

    }

    .slice:nth-child(1) {

        left: 0;
        background-position: 0% 0%;
        animation-delay: 0s;
        margin-left: 0;
        z-index: 1;

    }

    .slice:nth-child(2) {

        left: calc(100% / 5);
        background-position: 25% 0%;
        animation-delay: .15s;
        margin-left: -.5px;
        z-index: 2;

    }

    .slice:nth-child(3) {

        left: calc((100% / 5) * 2);
        background-position: 50% 0%;
        animation-delay: .30s;
        margin-left: -.5px;
        z-index: 3;

    }

    .slice:nth-child(4) {

        left: calc((100% / 5) * 3);
        background-position: 75% 0%;
        animation-delay: .45s;
        margin-left: -.5px;
        z-index: 4;

    }

    .slice:nth-child(5) {

        left: calc((100% / 5) * 4);
        background-position: 100% 0%;
        animation-delay: .60s;
        margin-left: -.5px;
        z-index: 5;

    }

}

/* ===========================
   MOBILE (3 SLICES)
=========================== */

@media (max-width:768px) {

    .slice {

        width: calc(100% / 3);

    }

    .slice:nth-child(1) {

        left: 0;
        background-position: 0% 0%;
        animation-delay: 0s;
        margin-left: 0;
        z-index: 1;

    }

    .slice:nth-child(2) {

        left: calc(100% / 3);
        background-position: 50% 0%;
        animation-delay: .20s;
        margin-left: -.5px;
        z-index: 2;

    }

    .slice:nth-child(3) {

        left: calc((100% / 3) * 2);
        width: calc((100% / 3) + 2.5px);
        background-position: 100% 0%;
        animation-delay: .40s;
        margin-left: -2px;
        z-index: 3;

    }

    .slice:nth-child(4),
    .slice:nth-child(5) {

        display: none;

    }

}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes fall {

    0% {

        top: -100%;
        opacity: 0;

    }

    10% {

        opacity: 1;

    }

    100% {

        top: 0;
        opacity: 1;

    }

}

@keyframes fadeInUp {

    0% {

        opacity: 0;
        transform: translate(-50%, -40%);

    }

    100% {

        opacity: 1;
        transform: translate(-50%, -50%);

    }

}


.content-overlay {

    position: absolute;

    top: 50%;
    left: 25%;

    transform: translateY(-50%);

    width: 42%;

    max-width: 650px;

    text-align: left;

    color: #fff;

    z-index: 20;

    opacity: 0;

    padding: 20px;
}

.content-overlay.show {

    animation: fadeInUp 1s ease-out forwards;

}

/* ===========================
   TEXT
=========================== */

.content-overlay h1 {

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1px;

    margin-bottom: 20px;

    text-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.content-overlay h2 {

    font-size: clamp(1.3rem, 2vw, 2rem);

    font-weight: 500;

    color: #E5E7EB;

    margin-bottom: 18px;

    text-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}

.content-overlay p {

    font-size: 1.05rem;

    line-height: 1.8;

    color: #F3F4F6;

    max-width: 550px;

    margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px) {

    .content-overlay {
        left: 50%;
        width: 90%;
        padding: 15px;

    }

    .content-overlay h1 {
        font-size: 1.7rem;
        margin-bottom: 12px;

    }

    .content-overlay h2 {

        margin-bottom: 10px;

    }

    .slider-dots span {
        width: 8px;
        height: 8px;
    }

    .neo-content h5 {
        font-size: 16px;
    }

    .neo-arrow i {
        font-size: 1.4rem !important;
    }
}

@media (max-width:480px) {

    a,
    i,
    p,
    span {
        font-size: 1rem !important;
    }

    .content-overlay {

        width: 95%;
        left: 50%;

    }

    .content-overlay h1 {

        font-size: 2rem;

    }

    .content-overlay h2 {

        font-size: 1.3rem;

    }

    .content-overlay p {

        font-size: .85rem;
        line-height: 1.6;

    }

    .slider-dots span {
        width: 8px;
        height: 8px;
    }

}

/* ===========================
   CONTROLS
=========================== */

.slider-controls {

    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 20px;

    z-index: 100;
}

.nav-btn {

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, .18);

    backdrop-filter: blur(15px);

    color: #fff;

    font-size: 22px;

    cursor: pointer;

    transition: .35s;
}

.nav-btn:hover {

    background: #fff;
    color: #000;
    transform: scale(1.08);

}

.slider-dots {

    display: flex;
    gap: 12px;

}

.slider-dots span {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .45);

    cursor: pointer;

    transition: .3s;

}

.slider-dots span.active {

    width: 36px;

    border-radius: 30px;

    background: #fff;

}

@media(max-width:768px) {

    .slider-controls {

        bottom: 15px;

    }

    .nav-btn {

        width: 45px;
        height: 45px;

        font-size: 18px;

    }

}

.program-card {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 22px;
    overflow: visible;
    box-shadow: none;
    transition: .4s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */

.program-image {
    position: relative;
    height: 200px;
    border-radius: 22px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.program-card:hover .program-image img {
    transform: scale(1.06);
}

.program-card:hover .program-image img {

    transform: scale(1.06);

}

/* CATEGORY */

.program-category {
    background: #fff;

    color: #C63D8F;

    border: 1px solid rgba(198, 61, 143, .25);

    border-radius: 30px;

    padding: 6px 14px;

    font-size: 12px;

    font-weight: 600;

    z-index: 5;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(198, 61, 143, .15);

}

/* UNIVERSITY LOGO */

.program-logo {
    width: 60px;

    height: 60px;

    background: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 3px solid #fff;

    box-shadow: 0 10px 25px rgba(11, 31, 109, .15);

    z-index: 5;
    margin-top: -40px;

}

.program-logo img {

    width: 42px;

    height: 42px;

    object-fit: contain;

}

/* BODY */

.program-body {

    position: relative;

    margin: -30px 18px 0;

    background: #fff;

    border: 1px solid rgba(11, 31, 109, .08);
    min-height: 140px;
    border-radius: 20px;

    padding: 10px 22px;

    z-index: 5;

    box-shadow:
        0 10px 30px rgba(11, 31, 109, .08),
        0 2px 10px rgba(11, 31, 109, .05);

    transition: .35s ease;

}

/* TITLE */

.program-body h4 {

    font-size: 1rem;

    font-weight: 700;

    color: #0B1F6D;

    line-height: 1.45;

    margin-bottom: 4px;

    /* min-height:72px; */

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

/* TAGLINE */

.program-body p {

    color: #64748B;

    line-height: 1.7;

    margin-bottom: 18px;

    font-size: 15px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

/* DIVIDER */

.program-divider {

    width: 100%;

    height: 1.5px;

    border-radius: 20px;

    background: linear-gradient(90deg,
            #C63D8F,
            #6D4CFF,
            rgba(109, 76, 255, .08));

    margin: 10px 0;

}

/* FOOTER */

.program-footer {

    display: flex;

    justify-content: space-between;
    margin-bottom: .5rem;
    align-items: center;

}

.program-duration {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 15px;

    color: #475569;

    font-weight: 600;

}

.program-duration i {

    color: #C63D8F;

}

/* BUTTON */

.program-btn {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #0B1F6D,
            #6D4CFF);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: .35s ease;

}

.program-btn:hover {

    background: linear-gradient(135deg,
            #C63D8F,
            #6D4CFF);

    color: #fff;

    transform: translateX(3px);

}

/* MOBILE */

@media (max-width:1400px) {

    .program-image {
        height: 220px;
    }

    .program-body {
        margin: -28px 16px 0;
        padding: 22px;
        min-height: 165px;
    }

    .program-body h4 {
        font-size: 1.15rem;
    }

    .program-body p {
        font-size: .95rem;
    }

}

@media (max-width:1200px) {

    .program-image {
        height: 210px;
    }

    .program-body {
        margin: -25px 15px 0;
        padding: 20px;
        min-height: 215px;
    }

    .program-body h4 {
        font-size: 1.05rem;
    }

    .program-body p {
        font-size: .92rem;
        margin-bottom: 15px;
    }

    .program-logo {
        width: 58px;
        height: 58px;
        margin-top: -36px;
    }

    .program-logo img {
        width: 38px;
        height: 38px;
    }

}

@media (max-width:991px) {

    .program-card {
        margin-bottom: 30px;
    }

    .program-image {
        height: 240px;
    }

    .program-body {
        margin: -30px 18px 0;
        padding: 22px;
        min-height: 220px;
    }

    .program-body h4 {
        font-size: 1.2rem;
        -webkit-line-clamp: 2;
    }

    .program-body p {
        font-size: .95rem;
        -webkit-line-clamp: 3;
    }

    .program-footer {
        gap: 15px;
    }

}

@media (max-width:768px) {

    .program-card {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .program-image {
        height: 220px;
    }

    .program-logo {
        width: 55px;
        height: 55px;
        margin-top: -34px;
    }

    .program-logo img {
        width: 36px;
        height: 36px;
    }

    .program-body {
        margin: -24px 15px 0;
        padding: 20px;
        border-radius: 18px;
    }

    .program-category {
        font-size: 11px;
        padding: 5px 12px;
    }

    .program-body h4 {
        font-size: 1.08rem;
        margin-bottom: 8px;
    }

    .program-body p {
        font-size: .9rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .program-divider {
        margin: 12px 0;
    }

    .program-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .program-duration {
        font-size: .88rem;
    }

    .program-btn {
        width: 40px;
        height: 40px;
    }

}

@media (max-width:576px) {

    .program-card {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .program-image {
        height: 200px;
        border-radius: 18px;
    }

    .program-logo {
        width: 52px;
        height: 52px;
        margin-top: -32px;
    }

    .program-logo img {
        width: 32px;
        height: 32px;
    }

    .program-body {
        margin: -22px 12px 0;
        padding: 18px;
    }

    .program-category {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: .8rem;
    }

    .program-body h4 {
        font-size: 1rem;
    }

    .program-body p {
        font-size: .85rem;
        line-height: 1.55;
    }

    .program-duration {
        font-size: .82rem;
        gap: 6px;
    }

    .program-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .slider-dots span {
        width: 8px;
        height: 8px;
    }
}

@media (max-width:430px) {
    .slider-dots span {
        width: 8px;
        height: 8px;
    }

    .program-image {
        height: 185px;
    }

    .program-body {
        margin: -20px 10px 0;
        padding: 16px;
    }

    .program-logo {
        width: 48px;
        height: 48px;
        margin-top: -28px;
    }

    .program-logo img {
        width: 30px;
        height: 30px;
    }

    .program-body h4 {
        font-size: .95rem;
    }

    .program-body p {
        font-size: .82rem;
    }

    .program-footer {
        gap: 10px;
    }

    .program-duration {
        font-size: .78rem;
    }

    .program-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

}

@media (max-width:360px) {
    .slider-dots span {
        width: 8px;
        height: 8px;
    }

    .program-image {
        height: 170px;
    }

    .program-body {
        padding: 15px;
        min-height: 120px;
    }

    .program-category {
        font-size: 9px;
    }

    .program-body h4 {
        font-size: .9rem;
    }

    .program-body p {
        font-size: .8rem;
    }

    .program-duration {
        font-size: .75rem;
    }

    .program-btn {
        width: 34px;
        height: 34px;
    }

}

@media (min-width:769px) {

    .slice {
        background-size: 500% 100%;
    }

    .slice:nth-child(1) {
        left: 0;
        width: 20%;
        background-position: 0 0;
    }

    .slice:nth-child(2) {
        left: 20%;
        width: 20%;
        background-position: 25% 0;
    }

    .slice:nth-child(3) {
        left: 40%;
        width: 20%;
        background-position: 50% 0;
    }

    .slice:nth-child(4) {
        left: 60%;
        width: 20%;
        background-position: 75% 0;
    }

    .slice:nth-child(5) {
        left: 80%;
        width: 20%;
        background-position: 100% 0;
    }

}

@media (max-width:768px) {

    .slice {
        background-size: 300% 100%;
    }

    .slice:nth-child(1) {
        width: 33.3333%;
        left: 0;
        background-position: 0 0;
    }

    .slice:nth-child(2) {
        width: 33.3333%;
        left: 33.3333%;
        background-position: 50% 0;
    }

    .slice:nth-child(3) {
        width: 33.3334%;
        left: 66.6666%;
        background-position: 100% 0;
    }

    .slice:nth-child(4),
    .slice:nth-child(5) {
        display: none;
    }

}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container,
.container-fluid {
    width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.program-card,
.program-image,
.program-body,
.content-overlay,
.slider-controls,
.nav-btn,
.slider-dots,
.program-logo {
    transition: .35s ease;
}

.program-image img {
    object-fit: cover;
    object-position: center;
}

.program-logo img {
    object-fit: contain;
}

.program-btn {
    flex-shrink: 0;
}

.program-duration {
    white-space: nowrap;
}

.slider-controls {
    flex-wrap: nowrap;
}

.slider-dots {
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width:991px) {
 

    .blog-title {
        font-size: 3rem !important;
    }

    .slider-controls {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 20px;
    }

    .slider-dots {
        max-width: 65%;
    }

    @supports (height:100dvh) {

        .slider-container {
            height: 100dvh;
        }

    }

    .blog-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

}

@media (max-width:768px) {

    .slider-controls {
        gap: 10px;
        padding: 0 15px;
    }

    .slider-dots {
        gap: 8px;
    }

    @supports (height:100dvh) {

        .slider-container {
            height: 90dvh;
        }
    }
}

@media (max-width:576px) {

    .slider-controls {
        justify-content: center;
    }

    .slider-dots {
        max-width: 180px;
    }

    @supports (height:100dvh) {

        .slider-container {
            height: 70dvh;
        }

        @supports (height:100svh) {

            .slider-container {
                height: 75svh;
            }

        }

        @media (hover:hover) {

            .program-card:hover {
                transform: translateY(-8px);
            }

            .program-card:hover .program-image img {
                transform: scale(1.06);
            }

            .program-btn:hover {
                transform: translateX(4px);
            }

        }

        @media (hover:none) {

            .program-card:hover,
            .program-card:hover .program-image img,
            .program-btn:hover {
                transform: none;
            }

        }

    }



}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion:reduce) {

    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

}
.global-presence{
    padding:80px 0;
    background:#f7f9ff url("../images/cubes.png");
    background-size:cover;
    background-position:center;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

/* ===========================
   HEADER
=========================== */

.presence-header{
    max-width:520px;
    margin-bottom:50px;
}

.presence-header span{
    color:#C63D8F;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.presence-header h2{
    font-size:48px;
    color:#0B1F6D;
    line-height:1.2;
    margin:18px 0;
    font-weight:800;
}

.presence-header h2 span{
    color:#C63D8F;
}

.presence-header p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* ===========================
   GRID
=========================== */

.office-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* ===========================
   CARD
=========================== */

.office-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    border:1px solid #edf0ff;
    box-shadow:0 15px 40px rgba(11,31,109,.08);
    position:relative;
    overflow:hidden;
    transition:.35s;
    width:100%;
}

.office-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#C63D8F,#6D4CFF,#0B1F6D);
}

.office-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(11,31,109,.15);
}

/* ===========================
   OFFICE HEAD
=========================== */

.office-head{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.office-head img{
    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:10px;
}

.office-head h3{
    color:#0B1F6D;
    font-size:24px;
    margin-bottom:5px;
}

.office-head small{
    color:#888;
    font-size:14px;
}

/* ===========================
   INFO
=========================== */

.office-info{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-top:25px;
}

.office-info .icon{
    width:52px;
    height:52px;
    flex-shrink:0;
    border-radius:14px;
    background:linear-gradient(135deg,#C63D8F,#6D4CFF);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.office-info span{
    display:block;
    color:#999;
    font-size:13px;
    margin-bottom:5px;
}

.office-info a{
    color:#0B1F6D;
    text-decoration:none;
    font-size:19px;
    font-weight:700;
    word-break:break-word;
}

.office-info p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

/* ===========================
   LARGE TABLETS
=========================== */

@media (max-width:991px){

.global-presence{
    padding:70px 0;
}

.presence-header{
    max-width:100%;
    text-align:center;
    margin:0 auto 40px;
}

.presence-header h2{
    font-size:38px;
}

.office-wrapper{
    grid-template-columns:1fr;
}

}

/* ===========================
   TABLETS
=========================== */

@media (max-width:768px){

.global-presence{
    padding:60px 0;
}

.presence-header h2{
    font-size:34px;
}

.office-card{
    padding:28px;
}

.office-head h3{
    font-size:22px;
}

.office-info a{
    font-size:18px;
}

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:576px){

.global-presence{
    padding:50px 0;
}

.container{
    padding:0 16px;
}

.presence-header{
    margin-bottom:30px;
    text-align:center;
}

.presence-header h2{
    font-size:28px;
}

.presence-header p{
    font-size:15px;
}

.office-card{
    padding:22px;
    border-radius:18px;
}

.office-head{
    flex-direction:column;
    text-align:center;
    gap:12px;
}

.office-head img{
    width:50px;
    height:50px;
}

.office-head h3{
    font-size:20px;
}

.office-info{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
    margin-top:20px;
}

.office-info .icon{
    width:48px;
    height:48px;
}

.office-info a{
    font-size:17px;
}

.office-info p{
    font-size:15px;
}

}

/* ===========================
   SMALL DEVICES
=========================== */

@media (max-width:360px){

.presence-header h2{
    font-size:24px;
}

.office-card{
    padding:18px;
}

.office-head h3{
    font-size:18px;
}

.office-info a{
    font-size:16px;
}

.office-info p{
    font-size:14px;
}

}