:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-898adce *//* =====================================================
   PREMIUM NAVY CAMPUS HERO
===================================================== */

.campus-hero {

    width: 100%;
    height: 720px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #010817 0%,
            #03132d 38%,
            #061b3d 68%,
            #020b1d 100%
        );

    font-family:
        "Poppins",
        "Segoe UI",
        Arial,
        sans-serif;

    color: white;
}


/* =====================================================
   SLIDER
===================================================== */

.hero-slider {

    width: 100%;
    height: 100%;

    position: relative;

    overflow: hidden;
}


/* =====================================================
   SLIDES
===================================================== */

.hero-slide {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1.15s ease,
        visibility 1.15s ease;
}


.hero-slide.active {

    opacity: 1;

    visibility: visible;

}


/* =====================================================
   IMAGE
===================================================== */

.hero-photo {

    position: absolute;

    top: 0;
    right: 0;

    width: 72%;
    height: 100%;

    overflow: hidden;

}


/* IMAGE */

.hero-photo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.10);

    filter:
        brightness(.70)
        contrast(1.02)
        saturate(.88);

    transition:
        transform 7s cubic-bezier(.2,.7,.2,1);

}


.hero-slide.active .hero-photo img {

    transform: scale(1);

}


/* =====================================================
   IMAGE NAVY GRADIENT
===================================================== */

.hero-photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            #020b1d 0%,
            rgba(2,11,29,.98) 8%,
            rgba(2,11,29,.88) 20%,
            rgba(2,11,29,.48) 45%,
            rgba(2,11,29,.12) 75%,
            rgba(2,11,29,.42) 100%
        );

}


/* Bottom dark fade */

.hero-photo::before {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 190px;

    z-index: 2;

    background:
        linear-gradient(
            transparent,
            #020b1d
        );

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: absolute;

    z-index: 5;

    left: 9%;

    top: 50%;

    transform:
        translateY(-46%);

    width: 620px;

}


/* =====================================================
   WELCOME
===================================================== */

.welcome {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: white;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

}


.welcome-dot {

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: #168cff;

    box-shadow:
        0 0 8px #168cff,
        0 0 20px rgba(22,140,255,.8);

    animation:
        dotPulse 2s infinite;
}


@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.45);
    }

}


/* =====================================================
   HEADING
===================================================== */

.hero-content h1 {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(55px, 6vw, 84px);

    line-height: .97;

    font-weight: 800;

    letter-spacing: -3px;

}


.hero-content h1 span {

    display: inline-block;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #9bcfff 35%,
            #168cff 72%,
            #0875e8 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-content p {

    width: 500px;

    margin:
        24px 0 28px;

    color:
        rgba(255,255,255,.70);

    font-size: 14px;

    line-height: 1.75;

}


/* =====================================================
   BUTTON AREA
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

}


/* =====================================================
   EXPLORE BUTTON
===================================================== */

.explore-btn {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    min-width: 190px;

    padding:
        13px 13px 13px 20px;

    box-sizing: border-box;

    border-radius: 6px;

    /* IMPORTANT */
    text-decoration: none !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #087cf0,
            #1265d7
        );

    border:
        1px solid
        rgba(255,255,255,.10);

    box-shadow:
        0 8px 25px
        rgba(0,91,220,.22);

    position: relative;

    overflow: hidden;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


/* Remove any underline */

.explore-btn,
.explore-btn span,
.explore-btn b {

    text-decoration: none !important;

}


/* Glossy sweep */

.explore-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left .65s ease;

}


/* YELLOW HOVER */

.explore-btn:hover {

    background:
        linear-gradient(
            135deg,
            #ffd43b,
            #ffb800
        );

    color: #06152e !important;

    border-color:
        #ffd43b;

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 35px
        rgba(255,193,7,.38);

}


.explore-btn:hover::before {

    left: 140%;

}


/* Button text */

.explore-btn span {

    color: inherit !important;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .4px;

    white-space: nowrap;

}


/* =====================================================
   ARROW INSIDE BUTTON
===================================================== */

.explore-btn b {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.16);

    color: inherit;

    font-size: 17px;

    font-weight: 500;

    line-height: 1;

    /* IMPORTANT */
    text-decoration: none !important;

    transition:
        transform .3s ease,
        background .3s ease;

}


.explore-btn:hover b {

    background:
        rgba(0,0,0,.10);

    transform:
        translateX(5px);

}


/* =====================================================
   DISCOVER BUTTON
===================================================== */

.discover-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        13px 22px;

    border-radius: 6px;

    text-decoration: none !important;

    color:
        rgba(255,255,255,.88) !important;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid
        rgba(255,255,255,.18);

    backdrop-filter:
        blur(10px);

    font-size: 11px;

    font-weight: 600;

    transition:
        all .35s ease;

}


/* Yellow hover */

.discover-btn:hover {

    background:
        linear-gradient(
            135deg,
            #ffd43b,
            #ffb800
        );

    color:
        #06152e !important;

    border-color:
        #ffd43b;

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 35px
        rgba(255,193,7,.28);

}


/* =====================================================
   GLOSSY BLUE BACKGROUND EFFECT
===================================================== */

.navy-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;

    filter: blur(70px);

}


.glow-1 {

    width: 360px;
    height: 360px;

    right: 5%;
    top: 10%;

    background:
        rgba(0,92,255,.20);

    animation:
        glowFloat 7s ease-in-out infinite;

}


.glow-2 {

    width: 280px;
    height: 280px;

    left: 32%;
    bottom: -120px;

    background:
        rgba(0,64,220,.20);

    animation:
        glowFloat 9s ease-in-out infinite reverse;

}


@keyframes glowFloat {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(1);

    }

    50% {

        transform:
            translate(-30px,20px)
            scale(1.18);

    }

}


/* Subtle glossy blue light */

.navy-shine {

    position: absolute;

    z-index: 2;

    width: 500px;
    height: 100%;

    top: 0;
    left: 35%;

    pointer-events: none;

    background:
        linear-gradient(
            105deg,
            transparent 20%,
            rgba(0,105,255,.04) 45%,
            rgba(42,145,255,.10) 50%,
            transparent 75%
        );

    transform:
        skewX(-15deg);

    animation:
        shineMove 8s ease-in-out infinite;

}


@keyframes shineMove {

    0% {
        transform:
            translateX(-180px)
            skewX(-15deg);
    }

    50% {
        transform:
            translateX(180px)
            skewX(-15deg);
    }

    100% {
        transform:
            translateX(-180px)
            skewX(-15deg);
    }

}


/* =====================================================
   PERFECT CIRCULAR LEFT / RIGHT BUTTONS
===================================================== */

.slider-arrow {

    position: absolute;

    z-index: 20;

    top: 50%;

    width: 48px;
    height: 48px;

    padding: 0;

    margin: 0;

    /* PERFECT CIRCLE */

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.30);

    background:
        rgba(3,17,40,.62);

    backdrop-filter:
        blur(12px);

    color: #ffffff;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translateY(-50%);

    box-sizing: border-box;

    transition:
        all .3s ease;

}


/* Remove browser button line / decoration */

.slider-arrow,
.slider-arrow:hover,
.slider-arrow:focus,
.slider-arrow:active {

    outline: none;

    text-decoration: none;

}


/* LEFT */

.prev-arrow {

    left: 25px;

}


/* RIGHT */

.next-arrow {

    right: 25px;

}


/* Arrow character */

.slider-arrow span {

    display: block;

    font-family:
        Arial,
        sans-serif;

    font-size: 28px;

    font-weight: 300;

    line-height: 1;

    color: #ffffff;

    text-decoration: none !important;

    border: none;

    transition:
        transform .3s ease;

}


/* Arrow hover */

.slider-arrow:hover {

    background:
        linear-gradient(
            135deg,
            #0b67dc,
            #083e91
        );

    border-color:
        rgba(255,255,255,.65);

    box-shadow:
        0 0 25px
        rgba(0,117,255,.45);

    transform:
        translateY(-50%)
        scale(1.10);

}


.prev-arrow:hover span {

    transform:
        translateX(-3px);

}


.next-arrow:hover span {

    transform:
        translateX(3px);

}


/* =====================================================
   BOTTOM SECTION
===================================================== */

.hero-bottom {

    position: absolute;

    z-index: 20;

    left: 9%;
    right: 9%;

    bottom: 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   SCROLL TO EXPLORE
===================================================== */

.scroll-explore {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

}


.scroll-line {

    width: 30px;

    height: 1px;

    background:
        #168cff;

}


/* =====================================================
   SLIDE COUNTER
===================================================== */

.slide-counter {

    display: flex;

    align-items: center;

    gap: 12px;

}


.slide-counter strong {

    color: white;

    font-size: 14px;

}


.slide-counter small {

    color:
        rgba(255,255,255,.38);

    font-size: 10px;

}


.counter-line {

    width: 42px;

    height: 1px;

    background:
        #168cff;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .campus-hero {

        height: 650px;

    }

    .hero-photo {

        width: 100%;

    }

    .hero-photo::after {

        background:
            linear-gradient(
                90deg,
                #020b1d 0%,
                rgba(2,11,29,.90) 35%,
                rgba(2,11,29,.40) 100%
            );

    }

    .hero-content {

        left: 7%;

        width: 80%;

    }

    .hero-content h1 {

        font-size: 58px;

    }

}


@media (max-width: 600px) {

    .campus-hero {

        height: 620px;

    }

    .hero-content {

        left: 7%;

        width: 86%;

    }

    .hero-content h1 {

        font-size: 43px;

        letter-spacing: -2px;

    }

    .hero-content p {

        width: 100%;

        font-size: 13px;

    }

    .hero-buttons {

        flex-wrap: wrap;

    }

    .slider-arrow {

        width: 40px;
        height: 40px;

    }

    .prev-arrow {

        left: 10px;

    }

    .next-arrow {

        right: 10px;

    }

    .hero-bottom {

        left: 7%;
        right: 7%;

    }

    .scroll-explore {

        display: none;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3456a76 *//* =========================================
   GLOBAL RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #020b1c;
}


/* =========================================
   ABOUT CAMPUS
========================================= */

.about-campus {
    width: 100%;
    padding: 75px 30px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(28, 108, 190, 0.28),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(0, 68, 150, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #020b1c 0%,
            #061a35 48%,
            #031126 100%
        );

    color: #ffffff;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.about-wrapper {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(0, 1fr)
        minmax(150px, 0.35fr);

    gap: 35px;

    align-items: center;
}


/* =========================================
   IMAGE CONTAINER
========================================= */

.campus-image-box {
    position: relative;

    width: 100%;

    /*

    */

    height: auto;

    border-radius: 18px;

    overflow: visible;
}


/* =========================================
   CAMPUS IMAGE
========================================= */

.campus-image-box img {

    display: block;

    width: 100%;

    /*
       IMAGE FULL SHOW
    */

    height: auto;

    min-height: 0;

    max-height: none;

    object-fit: contain;

    object-position: center;

    border-radius: 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    background: #061a35;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.40);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


/* =========================================
   IMAGE HOVER
========================================= */

.campus-image-box:hover img {

    transform: scale(1.015);

    box-shadow:
        0 25px 60px
        rgba(0, 120, 255, 0.22);
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.experience-badge {

    position: absolute;

    right: -1px;

    bottom: 18px;

    width: 96px;

    height: 106px;

    border-radius:
        18px
        0
        0
        18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #168cff,
            #0755ae
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.38);

    z-index: 5;
}


/* BIG 14+ */

.experience-badge strong {

    font-size: 30px;

    line-height: 1;

    font-weight: 700;
}


/* BADGE TEXT */

.experience-badge span {

    margin-top: 7px;

    font-size: 11px;

    line-height: 1.35;

    text-align: center;

    color:
        rgba(255, 255, 255, 0.90);
}


/* =========================================
   CONTENT
========================================= */

.about-content {

    width: 100%;

    max-width: 700px;
}


/* =========================================
   ABOUT TAG
========================================= */

.section-tag {

    display: inline-block;

    padding:
        7px
        14px;

    margin-bottom: 12px;

    border-radius: 20px;

    background:
        rgba(42, 153, 255, 0.12);

    border:
        1px solid
        rgba(42, 153, 255, 0.20);

    color: #55b5ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   TITLE
========================================= */

.about-content h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(32px, 3vw, 46px);

    line-height: 1.12;

    font-weight: 700;

    color: #ffffff;

    letter-spacing: -0.5px;
}


/* BLUE WORD */

.about-content h2 span {

    color: #42aaff;
}


/* =========================================
   TITLE LINE
========================================= */

.heading-line {

    width: 55px;

    height: 3px;

    margin:
        15px
        0
        18px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #168cff,
            #57bcff
        );

    box-shadow:
        0 0 15px
        rgba(22, 140, 255, 0.5);
}


/* =========================================
   DESCRIPTION
========================================= */

.about-description {

    margin:
        0
        0
        20px;

    color:
        rgba(220, 235, 255, 0.72);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   FEATURES
========================================= */

.about-feature {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 14px;
}


/* =========================================
   FEATURE ICON
========================================= */

.feature-icon {

    flex:
        0 0
        42px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(22, 140, 255, 0.12);

    border:
        1px solid
        rgba(42, 153, 255, 0.18);

    color: #42aaff;

    font-size: 18px;
}


/* =========================================
   FEATURE TITLE
========================================= */

.about-feature h4 {

    margin:
        0
        0
        3px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


/* =========================================
   FEATURE TEXT
========================================= */

.about-feature p {

    margin: 0;

    color:
        rgba(190, 210, 235, 0.65);

    font-size: 11.5px;

    line-height: 1.4;
}


/* =========================================
   KNOW MORE BUTTON
========================================= */

.know-more-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 14px;

    padding:
        13px
        20px
        13px
        25px;

    min-width: 145px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0755bd
        );

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 700;

    border:
        1px solid
        rgba(100, 190, 255, 0.35);

    box-shadow:
        0 8px 25px
        rgba(0, 100, 255, 0.25);

    overflow: hidden;

    isolation: isolate;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* =========================================
   BUTTON SHINE
========================================= */

.know-more-btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.6s ease;

    pointer-events: none;
}


/* =========================================
   BUTTON TEXT
========================================= */

.know-more-btn .button-text {

    position: relative;

    z-index: 2;

    display: inline-block;

    color: #ffffff !important;

    text-decoration: none !important;
}


/* =========================================
   BUTTON ARROW
========================================= */

.know-more-btn .button-arrow {

    position: relative;

    z-index: 2;

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.15);

    color: #ffffff !important;

    font-size: 17px;

    line-height: 1;

    text-decoration: none !important;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* =========================================
   BUTTON HOVER
========================================= */

.know-more-btn:hover {

    color: #ffffff !important;

    text-decoration: none !important;

    background:
        linear-gradient(
            135deg,
            #2099ff,
            #0864d8
        );

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(0, 120, 255, 0.40);
}


.know-more-btn:hover::before {

    left: 140%;
}


.know-more-btn:hover .button-arrow {

    transform:
        translateX(5px);

    background:
        rgba(255, 255, 255, 0.25);
}


.know-more-btn:active {

    transform:
        translateY(-1px);
}


/* REMOVE UNDERLINE */

.know-more-btn,
.know-more-btn:hover,
.know-more-btn:focus,
.know-more-btn:active,
.know-more-btn:visited {

    text-decoration:
        none !important;

    color:
        #ffffff !important;
}


/* =========================================
   RIGHT SIDE BLANK
========================================= */

.about-empty-space {

    min-height: 300px;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .about-campus {

        padding:
            80px
            35px;

    }


    .about-wrapper {

        grid-template-columns:

            minmax(600px, 1.15fr)

            minmax(500px, 1fr)

            minmax(160px, 0.30fr);

        gap: 40px;

    }


    .campus-image-box img {

        width: 100%;

        height: auto;

    }

}


/* =========================================
   NORMAL DESKTOP
========================================= */

@media (min-width: 1101px)
       and
       (max-width: 1399px) {

    .about-wrapper {

        grid-template-columns:

            minmax(560px, 1.12fr)

            minmax(440px, 1fr)

            minmax(120px, 0.25fr);

        gap: 30px;

    }


    .campus-image-box img {

        width: 100%;

        height: auto;

    }

}


/* =========================================
   TABLET
========================================= */

@media (min-width: 769px)
       and
       (max-width: 1100px) {

    .about-campus {

        padding:
            60px
            30px;

    }


    .about-wrapper {

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 30px;

        align-items: center;

    }


    .campus-image-box {

        width: 100%;

        height: auto;

    }


    .campus-image-box img {

        display: block;

        width: 100%;

        height: auto;

        object-fit: contain;

    }


    .about-empty-space {

        display: none;

    }


    .about-content h2 {

        font-size: 36px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .about-campus {

        padding:
            50px
            18px;

    }


    .about-wrapper {

        display: flex;

        flex-direction: column;

        gap: 35px;

        align-items: stretch;

    }


    /*
       MOBILE IMAGE
       FULL IMAGE — NO CROP
    */

    .campus-image-box {

        width: 100%;

        height: auto;

    }


    .campus-image-box img {

        display: block;

        width: 100%;

        height: auto;

        min-height: 0;

        max-height: none;

        object-fit: contain;

        object-position: center;

        border-radius: 16px;

    }


    .about-content {

        width: 100%;

        max-width: none;

    }


    .about-content h2 {

        font-size: 34px;

    }


    .about-description {

        font-size: 13px;

    }


    .about-empty-space {

        display: none;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-campus {

        padding:
            40px
            15px;

    }


    .campus-image-box {

        width: 100%;

        height: auto;

    }


    .campus-image-box img {

        width: 100%;

        height: auto;

        object-fit: contain;

        border-radius: 14px;

    }


    .experience-badge {

        width: 78px;

        height: 90px;

        bottom: 12px;

    }


    .experience-badge strong {

        font-size: 24px;

    }


    .experience-badge span {

        font-size: 10px;

    }


    .about-content h2 {

        font-size: 30px;

    }


    .about-description {

        font-size: 12.5px;

    }


    .about-feature p {

        font-size: 11px;

    }


    .know-more-btn {

        padding:
            12px
            18px
            12px
            22px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5eed2e5 *//* =========================================================
   COLLEGE INFORMATION SECTION
========================================================= */

.college-info {

    --navy-950: #020817;
    --navy-900: #041126;
    --navy-800: #071a38;
    --navy-700: #0a2852;

    --blue: #168cff;
    --cyan: #54c7ff;

    position: relative;
    width: 100%;

    padding: 90px 30px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 25%,
            rgba(22,140,255,.18),
            transparent 30%
        ),

        radial-gradient(
            circle at 95% 75%,
            rgba(0,90,190,.18),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #020817 0%,
            #061a35 50%,
            #020b1c 100%
        );

    color: #fff;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.college-info::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -350px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(30,140,255,.14);

    filter: blur(110px);

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.college-heading {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin:
        0 auto
        48px;

    text-align: center;
}


/* KICKER */

.heading-kicker {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        7px 15px;

    border-radius: 30px;

    background:
        rgba(22,140,255,.10);

    border:
        1px solid
        rgba(84,199,255,.22);

    color: #54c7ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* HEADING */

.college-heading h2 {

    margin:
        14px 0 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.1;

    color: #fff;
}


/* HEADING BLUE PART */

.college-heading h2 span {

    background:
        linear-gradient(
            90deg,
            #48b8ff,
            #168cff,
            #74d8ff
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* DESCRIPTION */

.college-heading p {

    margin: 0;

    color:
        rgba(210,230,250,.62);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   MAIN GRID
========================================================= */

.college-info-grid {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(420px,.9fr)
        minmax(500px,1.35fr);

    gap: 35px;

    align-items: stretch;
}


/* =========================================================
   NOTICE CARD
========================================================= */

.notice-card {

    position: relative;

    min-width: 0;

    height: 455px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(15,54,96,.94),
            rgba(4,24,52,.98)
        );

    border:
        1px solid
        rgba(80,170,255,.18);

    box-shadow:

        0 25px 70px
        rgba(0,0,0,.35),

        inset 0 1px 0
        rgba(255,255,255,.06);

    backdrop-filter:
        blur(18px);
}


/* NOTICE GLOW */

.notice-card::before {

    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    top: -130px;
    left: -100px;

    border-radius: 50%;

    background:
        rgba(0,151,255,.25);

    filter: blur(70px);

    pointer-events: none;
}


/* =========================================================
   NOTICE HEADER
========================================================= */

.notice-header {

    position: relative;

    z-index: 2;

    min-height: 86px;

    padding:
        18px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    background:
        linear-gradient(
            90deg,
            rgba(8,38,76,.95),
            rgba(8,31,61,.88)
        );
}


.notice-title-wrap {

    display: flex;

    align-items: center;

    gap: 13px;
}


/* NOTICE ICON */

.notice-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #168cff,
            #0755bd
        );

    font-size: 20px;

    box-shadow:
        0 8px 25px
        rgba(0,120,255,.28);
}


.small-label {

    display: block;

    margin-bottom: 3px;

    color: #54c7ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.notice-header h3 {

    margin: 0;

    color: #fff;

    font-size: 21px;
}


.notice-count {

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 10px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(220,235,255,.70);

    font-size: 10px;

    white-space: nowrap;
}


.live-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #3dff9a;

    box-shadow:
        0 0 10px
        #3dff9a;

    animation:
        livePulse 1.8s infinite;
}


@keyframes livePulse {

    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.75);
    }
}


/* =========================================================
   NOTICE SCROLL
========================================================= */

.notice-window {

    position: relative;

    flex: 1;

    overflow: hidden;

    padding:
        12px 16px;
}


.notice-window::before {

    content: "";

    position: absolute;

    z-index: 4;

    top: 0;
    left: 0;
    right: 0;

    height: 35px;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            #071a35,
            transparent
        );
}


.notice-window::after {

    content: "";

    position: absolute;

    z-index: 4;

    bottom: 0;
    left: 0;
    right: 0;

    height: 45px;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            #071a35,
            transparent
        );
}


.notice-track {

    display: flex;

    flex-direction: column;

    gap: 8px;

    animation:
        noticeScroll
        18s
        linear
        infinite;
}


.notice-window:hover .notice-track {

    animation-play-state: paused;
}


@keyframes noticeScroll {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}


/* =========================================================
   NOTICE ITEM
========================================================= */

.notice-item {

    position: relative;

    flex-shrink: 0;

    min-height: 64px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        10px 12px;

    border-radius: 13px;

    background:
        linear-gradient(
            110deg,
            rgba(17,57,99,.72),
            rgba(8,35,69,.65)
        );

    border:
        1px solid
        rgba(90,170,230,.10);

    color: #fff;

    text-decoration: none;

    transition:
        .3s ease;
}


.notice-item:hover {

    transform:
        translateX(5px);

    border-color:
        rgba(70,180,255,.40);

    background:
        linear-gradient(
            110deg,
            rgba(18,75,130,.85),
            rgba(8,43,82,.80)
        );
}


.notice-number {

    width: 32px;

    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(22,140,255,.12);

    color: #54c7ff;

    font-size: 10px;

    font-weight: 800;
}


.notice-item-content {

    min-width: 0;

    flex: 1;
}


.notice-item h4 {

    margin: 0;

    color:
        rgba(240,248,255,.92);

    font-size: 11.5px;

    line-height: 1.4;
}


.notice-meta {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 4px;

    color:
        rgba(180,210,240,.48);

    font-size: 9px;
}


.notice-meta b {

    padding:
        2px 6px;

    border-radius: 8px;

    background:
        rgba(61,255,154,.12);

    color: #5dffa8;

    font-size: 7px;
}


.notice-meta b.pdf {

    background:
        rgba(255,90,90,.12);

    color: #ff8c8c;
}


.notice-arrow {

    width: 28px;

    height: 28px;

    flex: 0 0 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    color: #54c7ff;

    transition:
        .3s ease;
}


.notice-item:hover .notice-arrow {

    transform:
        translateX(4px);

    background:
        rgba(22,140,255,.18);
}


/* =========================================================
   NOTICE FOOTER
========================================================= */

.notice-footer {

    position: relative;

    z-index: 5;

    min-height: 55px;

    padding:
        0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(3,18,39,.82);

    color:
        rgba(190,215,240,.48);

    font-size: 9px;
}


.notice-footer a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #54c7ff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;
}


.notice-footer a span {

    font-size: 15px;

    transition:
        .3s ease;
}


.notice-footer a:hover span {

    transform:
        translate(3px,-3px);
}


/* =========================================================
   MISSION + VISION WRAPPER
========================================================= */

.mission-vision {

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* =========================================================
   COMMON INFO CARD
========================================================= */

.info-card {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    padding:
        27px 30px;

    border:
        1px solid
        rgba(255,255,255,.18);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.25);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.info-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.35);
}


/* =========================================================
   VISION CARD
========================================================= */

.vision-card {

    min-height: 190px;

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(0,190,145,.25),
            transparent 35%
        ),

        linear-gradient(
            120deg,
            #c5f8e4,
            #9ce9d0,
            #d6faec
        );

    color: #071a35;
}


/* =========================================================
   MISSION CARD
========================================================= */

.mission-card {

    min-height: 260px;

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(255,160,0,.25),
            transparent 35%
        ),

        linear-gradient(
            120deg,
            #fff0ad,
            #ffd86b,
            #fff4c7
        );

    color: #071a35;
}


/* =========================================================
   CARD GLOW
========================================================= */

.card-glow {

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.35);

    filter:
        blur(25px);

    pointer-events: none;
}


/* =========================================================
   INFO TOP
========================================================= */

.info-top {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}


/* =========================================================
   ⭐ FIXED ICON SYSTEM
========================================================= */

.info-icon {

    position: relative;

    width: 48px;

    height: 48px;

    min-width: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    overflow: visible;

    font-size: 0 !important;

    line-height: 1;

    z-index: 10;

    visibility: visible !important;

    opacity: 1 !important;
}


/* =========================================================
   VISION ICON
   CSS GENERATED — NO FONT DEPENDENCY
========================================================= */

.vision-icon {

    background:
        linear-gradient(
            145deg,
            #071f49,
            #0b3974
        );

    border:
        1px solid
        rgba(255,255,255,.22);

    box-shadow:
        0 8px 20px
        rgba(3,28,65,.30);
}


/* Vision eye/circle */

.vision-icon::before {

    content: "◉";

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);

    display: block;

    width: 100%;

    text-align: center;

    color: #ffffff;

    font-family:
        Arial,
        sans-serif;

    font-size: 25px;

    font-weight: 700;

    line-height: 1;

    visibility: visible;

    opacity: 1;
}


/* Small center */

.vision-icon::after {

    content: "";

    position: absolute;

    width: 6px;

    height: 6px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background: #54c7ff;

    box-shadow:
        0 0 8px
        #54c7ff;

}


/* =========================================================
   MISSION ICON
   CSS GENERATED
========================================================= */

.mission-icon {

    background:
        linear-gradient(
            145deg,
            #ffbd25,
            #e28c00
        );

    border:
        1px solid
        rgba(255,255,255,.35);

    box-shadow:
        0 8px 20px
        rgba(180,110,0,.30);
}


/* Lightning */

.mission-icon::before {

    content: "ϟ";

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-52%);

    display: block;

    color: #071a35;

    font-family:
        Arial,
        sans-serif;

    font-size: 30px;

    font-weight: 900;

    line-height: 1;

    visibility: visible;

    opacity: 1;
}


/* =========================================================
   INFO LABEL
========================================================= */

.info-label {

    display: block;

    margin-bottom: 2px;

    color:
        rgba(7,26,53,.48);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   INFO TITLE
========================================================= */

.info-top h3 {

    margin: 0;

    color: #071a35;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.2;
}


/* =========================================================
   VISION CONTENT
========================================================= */

.info-content {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: flex-start;

    gap: 10px;
}


.bullet {

    flex-shrink: 0;

    color: #0755bd;

    font-size: 16px;

    line-height: 1.5;
}


.info-content p {

    margin: 0;

    color:
        rgba(7,26,53,.75);

    font-size: 13px;

    line-height: 1.65;

    font-weight: 500;
}


/* =========================================================
   MISSION LIST
========================================================= */

.mission-list {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 13px;
}


.mission-point {

    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.mission-point > span {

    width: 25px;

    height: 25px;

    min-width: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        rgba(245,173,19,.30);

    color:
        #8b5a00;

    font-size: 8px;

    font-weight: 900;
}


.mission-point p {

    margin: 0;

    color:
        rgba(7,26,53,.75);

    font-size: 12.5px;

    line-height: 1.55;

    font-weight: 500;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.card-bottom-line {

    position: absolute;

    left: 30px;

    bottom: 0;

    width: 70px;

    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #0755bd,
            transparent
        );

    transition:
        width .4s ease;
}


.info-card:hover .card-bottom-line {

    width: 150px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .college-info {

        padding:
            70px 25px;
    }


    .college-info-grid {

        grid-template-columns: 1fr;

        max-width: 850px;
    }


    .notice-card {

        height: 430px;
    }


    .mission-vision {

        display: grid;

        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .college-info {

        padding:
            60px 16px;
    }


    .college-heading {

        margin-bottom: 35px;
    }


    .college-heading h2 {

        font-size: 34px;
    }


    .college-heading p {

        font-size: 12px;
    }


    .college-info-grid {

        grid-template-columns: 1fr;

        gap: 22px;
    }


    /* Notice */

    .notice-card {

        height: 420px;

        border-radius: 19px;
    }


    .notice-header {

        min-height: 75px;

        padding: 15px;
    }


    .notice-icon {

        width: 40px;

        height: 40px;

        min-width: 40px;

        flex-basis: 40px;
    }


    .notice-header h3 {

        font-size: 18px;
    }


    .notice-count {

        font-size: 8px;

        padding:
            6px 8px;
    }


    .notice-item {

        min-height: 62px;

        padding: 9px;
    }


    .notice-number {

        width: 28px;

        height: 28px;

        flex-basis: 28px;
    }


    .notice-item h4 {

        font-size: 10.5px;
    }


    .notice-footer {

        padding:
            0 15px;
    }


    /* Mission Vision */

    .mission-vision {

        display: flex;

        flex-direction: column;

        gap: 16px;
    }


    .info-card {

        padding:
            23px 20px;

        border-radius: 18px;
    }


    .vision-card {

        min-height: 180px;
    }


    .mission-card {

        min-height: 250px;
    }


    /* ICON MOBILE */

    .info-icon {

        width: 46px;

        height: 46px;

        min-width: 46px;

        flex-basis: 46px;
    }


    .vision-icon::before {

        font-size: 23px;
    }


    .mission-icon::before {

        font-size: 28px;
    }


    .info-top h3 {

        font-size: 19px;
    }


    .info-content p,
    .mission-point p {

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .college-info {

        padding:
            50px 13px;
    }


    .college-heading h2 {

        font-size: 30px;
    }


    .heading-kicker {

        font-size: 8px;

        letter-spacing: 1.4px;
    }


    .notice-card {

        height: 400px;
    }


    .notice-count {

        display: none;
    }


    .notice-header {

        padding: 14px;
    }


    .notice-window {

        padding: 10px;
    }


    .notice-item {

        gap: 8px;
    }


    .notice-arrow {

        display: none;
    }


    .info-card {

        padding:
            20px 17px;
    }


    .info-icon {

        width: 44px;

        height: 44px;

        min-width: 44px;

        flex-basis: 44px;
    }


    .vision-icon::before {

        font-size: 22px;
    }


    .mission-icon::before {

        font-size: 27px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-624a5a4 *//* =========================================================
   OUR DEPARTMENTS — PREMIUM NAVY + GOLD GLOSS
========================================================= */

.departments-section {

    --navy-950: #010713;
    --navy-900: #021126;
    --navy-850: #061a36;
    --navy-800: #08254b;

    --blue: #168cff;
    --blue-light: #55c8ff;

    --gold: #ffd34d;
    --gold-light: #fff0a3;
    --gold-dark: #f0a900;

    position: relative;

    width: 100%;

    padding: 100px 30px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(22,140,255,.16),
            transparent 28%
        ),

        radial-gradient(
            circle at 92% 80%,
            rgba(0,91,190,.16),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #010713 0%,
            #061a36 48%,
            #020a18 100%
        );

    color: #fff;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.dept-bg-glow {

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;

    opacity: .28;
}


.glow-left {

    top: 10%;
    left: -250px;

    background:
        #087dff;
}


.glow-right {

    right: -250px;
    bottom: 5%;

    background:
        #0048b8;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.departments-heading {

    position: relative;

    z-index: 5;

    max-width: 760px;

    margin:
        0 auto 65px;

    text-align: center;
}


/* SMALL LABEL */

.dept-kicker {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        8px 17px;

    border-radius: 50px;

    background:
        rgba(22,140,255,.08);

    border:
        1px solid
        rgba(85,200,255,.22);

    color:
        #55c8ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    box-shadow:
        0 0 25px
        rgba(22,140,255,.10);
}


/* TITLE */

.departments-heading h2 {

    margin:
        18px 0 13px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.1;

    letter-spacing: -.7px;
}


/* BLUE WORD */

.departments-heading h2 span {

    background:
        linear-gradient(
            90deg,
            #55c8ff,
            #168cff,
            #82e0ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color:
        transparent;
}


/* DESCRIPTION */

.departments-heading p {

    max-width: 620px;

    margin:
        0 auto;

    color:
        rgba(205,230,255,.62);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   HEADING LINE
========================================================= */

.heading-line {

    width: 75px;

    height: 3px;

    margin:
        22px auto 0;

    border-radius: 20px;

    background:
        rgba(255,255,255,.08);

    overflow: hidden;
}


.heading-line span {

    display: block;

    width: 48px;

    height: 100%;

    margin: auto;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #168cff,
            #55c8ff
        );

    box-shadow:
        0 0 18px
        rgba(22,140,255,.9);
}


/* =========================================================
   GRID
========================================================= */

.departments-grid {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* =========================================================
   DEPARTMENT CARD
========================================================= */

.department-card {

    position: relative;

    min-height: 360px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    isolation: isolate;

    border-radius: 24px;

    background:

        linear-gradient(
            145deg,
            rgba(10,42,82,.96),
            rgba(2,17,37,.99)
        );

    border:
        1px solid
        rgba(85,185,255,.14);

    box-shadow:

        0 20px 55px
        rgba(0,0,0,.30),

        inset 0 1px 0
        rgba(255,255,255,.06);

    transition:

        transform .5s cubic-bezier(.2,.8,.2,1),

        border-color .4s ease,

        box-shadow .5s ease,

        background .5s ease;
}


/* =========================================================
   TOP LINE
========================================================= */

.department-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 30px;
    right: 30px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #168cff,
            #55c8ff,
            transparent
        );

    opacity: .5;

    transition:
        background .5s ease,
        opacity .4s ease;
}


/* =========================================================
   HOVER CARD — GOLDEN GLOSS
========================================================= */

.department-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(255,211,77,.65);

    background:

        linear-gradient(
            145deg,
            rgba(25,55,91,.98),
            rgba(4,24,47,.99)
        );

    box-shadow:

        0 30px 75px
        rgba(0,0,0,.50),

        0 0 25px
        rgba(255,211,77,.18),

        0 0 65px
        rgba(255,190,30,.10),

        inset 0 1px 0
        rgba(255,241,160,.25);
}


.department-card:hover::before {

    opacity: 1;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f7c93d,
            #fff0a3,
            #f7c93d,
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(255,210,65,.7);
}


/* =========================================================
   GOLDEN LIGHT SPOT ON HOVER
========================================================= */

.department-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,220,80,.18),
            rgba(255,210,40,.05),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity .5s ease,
        transform .6s ease;

    pointer-events: none;

    z-index: -1;
}


.department-card:hover::after {

    opacity: 1;

    transform:
        scale(1.8);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.card-number {

    position: absolute;

    top: 17px;
    right: 22px;

    color:
        rgba(100,190,255,.07);

    font-size: 66px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -5px;

    transition:
        color .45s ease,
        transform .45s ease;
}


.department-card:hover .card-number {

    color:
        rgba(255,211,77,.11);

    transform:
        translateY(-5px);
}


/* =========================================================
   ICON BOX
========================================================= */

.dept-icon {

    position: relative;

    z-index: 3;

    width: 64px;
    height: 64px;

    margin-bottom: 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(20,143,255,.22),
            rgba(5,56,115,.30)
        );

    border:
        1px solid
        rgba(85,195,255,.25);

    box-shadow:

        0 12px 30px
        rgba(0,100,220,.18),

        inset 0 1px 0
        rgba(255,255,255,.08);

    transition:
        transform .45s ease,
        background .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


/* GOLD ICON HOVER */

.department-card:hover .dept-icon {

    transform:
        translateY(-5px)
        rotate(-3deg);

    background:
        linear-gradient(
            145deg,
            rgba(255,204,57,.25),
            rgba(120,79,0,.25)
        );

    border-color:
        rgba(255,218,90,.55);

    box-shadow:

        0 12px 35px
        rgba(255,190,30,.18),

        0 0 20px
        rgba(255,210,50,.12),

        inset 0 1px 0
        rgba(255,240,150,.22);
}


/* =========================================================
   BRANCH RELATED ICONS
========================================================= */


/* -----------------------------------------
   COMPUTER ENGINEERING — 💻
----------------------------------------- */

.icon-computer::before {

    content: "💻";

    font-size: 31px;

    line-height: 1;

    filter:
        drop-shadow(
            0 0 8px
            rgba(85,200,255,.35)
        );

    transition:
        filter .4s ease,
        transform .4s ease;
}


/* -----------------------------------------
   AI & DATA SCIENCE — 🤖
----------------------------------------- */

.icon-ai::before {

    content: "🤖";

    font-size: 29px;

    line-height: 1;

    filter:
        drop-shadow(
            0 0 8px
            rgba(85,200,255,.35)
        );

    transition:
        filter .4s ease,
        transform .4s ease;
}


/* -----------------------------------------
   INFORMATION TECHNOLOGY — </>
----------------------------------------- */

.icon-it::before {

    content: "</>";

    color:
        #55c8ff;

    font-size: 18px;

    font-weight: 900;

    font-family:
        monospace;

    letter-spacing: -2px;

    text-shadow:
        0 0 10px
        rgba(85,200,255,.35);

    transition:
        color .4s ease,
        text-shadow .4s ease;
}


/* -----------------------------------------
   MECHANICAL — ⚙
----------------------------------------- */

.icon-mechanical::before {

    content: "⚙";

    color:
        #55c8ff;

    font-size: 36px;

    line-height: 1;

    text-shadow:
        0 0 10px
        rgba(85,200,255,.35);

    transition:
        color .4s ease,
        text-shadow .4s ease,
        transform .7s ease;
}


.department-card:hover
.icon-mechanical::before {

    transform:
        rotate(90deg);

    color:
        #ffd34d;

    text-shadow:
        0 0 15px
        rgba(255,211,77,.65);
}


/* -----------------------------------------
   ELECTRONICS — ⚡
----------------------------------------- */

.icon-electronics::before {

    content: "⚡";

    color:
        #55c8ff;

    font-size: 35px;

    line-height: 1;

    text-shadow:
        0 0 10px
        rgba(85,200,255,.4);

    transition:
        color .4s ease,
        filter .4s ease;
}


/* -----------------------------------------
   CIVIL — 🏗
----------------------------------------- */

.icon-civil::before {

    content: "🏗️";

    font-size: 31px;

    line-height: 1;

    filter:
        drop-shadow(
            0 0 8px
            rgba(85,200,255,.35)
        );

    transition:
        filter .4s ease,
        transform .4s ease;
}


/* =========================================================
   ICON HOVER GOLD
========================================================= */

.department-card:hover
.icon-computer::before,

.department-card:hover
.icon-ai::before,

.department-card:hover
.icon-civil::before {

    filter:
        drop-shadow(
            0 0 12px
            rgba(255,211,77,.65)
        );

    transform:
        scale(1.08);
}


.department-card:hover
.icon-it::before {

    color:
        #ffd34d;

    text-shadow:
        0 0 15px
        rgba(255,211,77,.65);
}


.department-card:hover
.icon-electronics::before {

    color:
        #ffd34d;

    text-shadow:
        0 0 15px
        rgba(255,211,77,.65);

    filter:
        drop-shadow(
            0 0 8px
            rgba(255,211,77,.45)
        );
}


/* =========================================================
   CONTENT
========================================================= */

.dept-content {

    position: relative;

    z-index: 3;
}


.dept-type {

    display: inline-block;

    margin-bottom: 8px;

    color:
        #55c8ff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.7px;

    transition:
        color .4s ease;
}


.department-card:hover
.dept-type {

    color:
        #ffd34d;
}


.dept-content h3 {

    max-width: 360px;

    margin:
        0 0 13px;

    color:
        #ffffff;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 800;

    transition:
        color .4s ease;
}


.department-card:hover
.dept-content h3 {

    color:
        #fffdf0;
}


.dept-content p {

    max-width: 420px;

    margin: 0;

    color:
        rgba(204,227,250,.58);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   META
========================================================= */

.dept-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 20px;

    padding-top: 14px;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}


.dept-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(190,220,245,.58);

    font-size: 10px;
}


.dept-meta b {

    color:
        #55c8ff;

    font-size: 7px;

    transition:
        color .4s ease;
}


.department-card:hover
.dept-meta b {

    color:
        #ffd34d;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.dept-btn {

    position: relative;

    z-index: 10;

    width: fit-content;

    margin-top: auto;

    padding-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color:
        #ffffff !important;

    text-decoration:
        none !important;

    border:
        none !important;

    outline:
        none !important;

    font-size: 11px;

    font-weight: 800;

    transition:
        color .35s ease;
}


/* IMPORTANT — REMOVE UNDERLINE EVERYWHERE */

.dept-btn,
.dept-btn:hover,
.dept-btn:focus,
.dept-btn:active,
.dept-btn:visited {

    text-decoration:
        none !important;

    border-bottom:
        none !important;

    box-shadow:
        none;

    outline:
        none !important;

}


/* =========================================================
   ARROW CIRCLE
========================================================= */

.dept-btn i {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0755bd
        );

    color:
        #ffffff;

    font-size: 16px;

    font-style:
        normal;

    line-height: 1;

    text-decoration:
        none !important;

    border:
        1px solid
        rgba(100,200,255,.25);

    box-shadow:
        0 8px 20px
        rgba(0,100,255,.25);

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


/* BUTTON HOVER */

.dept-btn:hover {

    color:
        #ffd34d !important;

    text-decoration:
        none !important;
}


/* ARROW HOVER GOLD */

.dept-btn:hover i {

    transform:
        translateX(6px);

    background:
        linear-gradient(
            135deg,
            #ffd34d,
            #e8a800
        );

    color:
        #17213a;

    border-color:
        rgba(255,235,140,.65);

    box-shadow:

        0 8px 25px
        rgba(255,190,30,.35),

        0 0 15px
        rgba(255,210,50,.25);
}


/* =========================================================
   GLOSSY SHINE
========================================================= */

.card-shine {

    position: absolute;

    top: -120%;

    left: -70%;

    width: 45%;

    height: 320%;

    transform:
        rotate(25deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.05),
            rgba(255,235,150,.10),
            rgba(255,255,255,.05),
            transparent
        );

    pointer-events:
        none;

    transition:
        left .9s ease;

    z-index: 1;
}


.department-card:hover
.card-shine {

    left: 135%;
}


/* =========================================================
   EXTRA GOLD GLOSS LAYER
========================================================= */

.department-card:hover {

    animation:
        goldenPulse 2.5s ease-in-out infinite;
}


@keyframes goldenPulse {

    0% {

        box-shadow:

            0 30px 75px
            rgba(0,0,0,.50),

            0 0 25px
            rgba(255,211,77,.15),

            inset 0 1px 0
            rgba(255,241,160,.20);
    }

    50% {

        box-shadow:

            0 30px 75px
            rgba(0,0,0,.50),

            0 0 38px
            rgba(255,211,77,.25),

            0 0 70px
            rgba(255,190,30,.10),

            inset 0 1px 0
            rgba(255,241,160,.28);
    }

    100% {

        box-shadow:

            0 30px 75px
            rgba(0,0,0,.50),

            0 0 25px
            rgba(255,211,77,.15),

            inset 0 1px 0
            rgba(255,241,160,.20);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .departments-section {

        padding:
            80px 25px;
    }


    .departments-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }


    .department-card {

        min-height:
            350px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .departments-section {

        padding:
            70px 16px;
    }


    .departments-heading {

        margin-bottom:
            45px;
    }


    .departments-heading h2 {

        font-size:
            38px;
    }


    .departments-heading p {

        font-size:
            12px;
    }


    .departments-grid {

        grid-template-columns:
            1fr;

        gap:
            17px;
    }


    .department-card {

        min-height:
            330px;

        padding:
            25px;

        border-radius:
            20px;
    }


    .dept-icon {

        width:
            57px;

        height:
            57px;

        margin-bottom:
            23px;
    }


    .dept-content h3 {

        font-size:
            19px;
    }


    .dept-content p {

        font-size:
            11.5px;
    }


    .card-number {

        font-size:
            55px;
    }


    /* Disable strong animation on mobile */

    .department-card:hover {

        animation:
            none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .departments-section {

        padding:
            60px 13px;
    }


    .departments-heading h2 {

        font-size:
            32px;
    }


    .department-card {

        min-height:
            320px;

        padding:
            22px;
    }


    .dept-content h3 {

        font-size:
            18px;
    }


    .dept-meta {

        gap:
            12px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.dept-btn:focus-visible {

    outline:
        2px solid
        #ffd34d !important;

    outline-offset:
        4px;

    text-decoration:
        none !important;
}


/* =========================================================
   PREVENT GLOBAL LINK UNDERLINES
========================================================= */

.department-card a,
.department-card a:hover,
.department-card a:focus,
.department-card a:active,
.department-card a:visited {

    text-decoration:
        none !important;

    border-bottom:
        0 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d4879e3 *//* =========================================================
   OUR FACILITIES
   PREMIUM NAVY + GOLD DESIGN
========================================================= */

.facilities-section {

    --navy-950: #010713;
    --navy-900: #021126;
    --navy-850: #061a36;
    --navy-800: #08254b;

    --blue: #168cff;
    --blue-light: #55c8ff;

    --gold: #ffd34d;
    --gold-light: #fff1a8;
    --gold-dark: #e6a900;

    position: relative;

    width: 100%;

    padding:
        100px 25px 90px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 8% 20%,
            rgba(22,140,255,.14),
            transparent 27%
        ),

        radial-gradient(
            circle at 92% 75%,
            rgba(0,102,220,.13),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #010713 0%,
            #061a36 50%,
            #020a18 100%
        );

    color: #ffffff;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.facility-glow {

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    filter:
        blur(120px);

    pointer-events:
        none;

    opacity:
        .22;
}


.facility-glow-left {

    left: -260px;
    top: 15%;

    background:
        #087dff;
}


.facility-glow-right {

    right: -260px;
    bottom: 5%;

    background:
        #0048b8;
}


/* =========================================================
   HEADER
========================================================= */

.facilities-header {

    position: relative;

    z-index: 5;

    max-width: 760px;

    margin:
        0 auto 58px;

    text-align:
        center;
}


/* =========================================================
   KICKER
========================================================= */

.facility-kicker {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        8px 17px;

    border-radius:
        50px;

    background:
        rgba(22,140,255,.08);

    border:
        1px solid
        rgba(85,200,255,.22);

    color:
        #55c8ff;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        2px;

    box-shadow:
        0 0 25px
        rgba(22,140,255,.10);
}


/* =========================================================
   MAIN TITLE
========================================================= */

.facilities-header h2 {

    margin:
        18px 0 13px;

    color:
        #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height:
        1.1;

    letter-spacing:
        -.7px;
}


.facilities-header h2 span {

    background:

        linear-gradient(
            90deg,
            #55c8ff,
            #168cff,
            #82e0ff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;
}


/* =========================================================
   HEADER DESCRIPTION
========================================================= */

.facilities-header p {

    max-width:
        600px;

    margin:
        0 auto;

    color:
        rgba(205,230,255,.62);

    font-size:
        14px;

    line-height:
        1.7;
}


/* =========================================================
   HEADER LINE
========================================================= */

.facility-heading-line {

    position:
        relative;

    width:
        75px;

    height:
        3px;

    margin:
        22px auto 0;

    border-radius:
        20px;

    background:
        rgba(255,255,255,.08);

    overflow:
        hidden;
}


.facility-heading-line span {

    display:
        block;

    width:
        48px;

    height:
        100%;

    margin:
        auto;

    border-radius:
        20px;

    background:
        linear-gradient(
            90deg,
            #168cff,
            #55c8ff
        );

    box-shadow:
        0 0 18px
        rgba(22,140,255,.8);
}


/* =========================================================
   GRID
========================================================= */

.facilities-grid {

    position:
        relative;

    z-index:
        5;

    width:
        100%;

    max-width:
        1450px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        20px;
}


/* =========================================================
   FACILITY CARD
========================================================= */

.facility-card {

    position:
        relative;

    overflow:
        hidden;

    min-height:
        340px;

    border-radius:
        21px;

    background:
        linear-gradient(
            145deg,
            rgba(8,37,75,.95),
            rgba(2,16,34,.99)
        );

    border:
        1px solid
        rgba(85,185,255,.15);

    box-shadow:

        0 18px 45px
        rgba(0,0,0,.30),

        inset 0 1px 0
        rgba(255,255,255,.06);

    transition:

        transform .5s
        cubic-bezier(.2,.8,.2,1),

        border-color .4s ease,

        box-shadow .5s ease;
}


/* =========================================================
   TOP GOLD LINE
========================================================= */

.facility-card::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        25px;

    right:
        25px;

    height:
        2px;

    z-index:
        10;

    background:
        linear-gradient(
            90deg,
            transparent,
            #168cff,
            #55c8ff,
            transparent
        );

    opacity:
        .5;

    transition:
        .4s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.facility-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,211,77,.58);

    box-shadow:

        0 28px 65px
        rgba(0,0,0,.48),

        0 0 30px
        rgba(255,211,77,.14),

        0 0 70px
        rgba(255,190,30,.07),

        inset 0 1px 0
        rgba(255,241,160,.22);
}


.facility-card:hover::before {

    opacity:
        1;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ffd34d,
            #fff1a8,
            #ffd34d,
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(255,211,77,.65);
}


/* =========================================================
   IMAGE
========================================================= */

.facility-image {

    position:
        relative;

    width:
        100%;

    height:
        190px;

    overflow:
        hidden;

    background:
        #061a36;
}


.facility-image img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    object-position:
        center;

    transition:
        transform .8s
        cubic-bezier(.2,.8,.2,1),

        filter .5s ease;
}


/* IMAGE ZOOM */

.facility-card:hover
.facility-image img {

    transform:
        scale(1.08);

    filter:
        saturate(1.08)
        contrast(1.04);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.image-overlay {

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            to bottom,
            rgba(2,14,32,.05),
            rgba(2,14,32,.08) 45%,
            rgba(2,14,32,.72) 100%
        );

    pointer-events:
        none;
}


/* =========================================================
   NUMBER
========================================================= */

.facility-number {

    position:
        absolute;

    top:
        14px;

    right:
        16px;

    z-index:
        5;

    padding:
        7px 11px;

    border-radius:
        30px;

    background:
        rgba(1,12,27,.72);

    border:
        1px solid
        rgba(255,255,255,.15);

    backdrop-filter:
        blur(8px);

    color:
        #ffffff;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        1px;

    transition:
        .4s ease;
}


.facility-card:hover
.facility-number {

    background:
        rgba(255,196,35,.90);

    color:
        #07162d;

    border-color:
        #ffe68b;

    box-shadow:
        0 0 20px
        rgba(255,211,77,.35);
}


/* =========================================================
   ICON
========================================================= */

.facility-icon {

    position:
        absolute;

    left:
        18px;

    bottom:
        15px;

    z-index:
        5;

    width:
        43px;

    height:
        43px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        13px;

    background:
        rgba(3,19,40,.76);

    border:
        1px solid
        rgba(85,200,255,.25);

    backdrop-filter:
        blur(10px);

    font-size:
        21px;

    transition:
        transform .4s ease,

        background .4s ease,

        border-color .4s ease,

        box-shadow .4s ease;
}


.facility-card:hover
.facility-icon {

    transform:
        translateY(-4px)
        rotate(-4deg);

    background:
        linear-gradient(
            135deg,
            #ffd34d,
            #e8a900
        );

    border-color:
        #fff0a3;

    box-shadow:

        0 8px 25px
        rgba(255,190,30,.35),

        0 0 20px
        rgba(255,211,77,.22);
}


/* =========================================================
   CONTENT
========================================================= */

.facility-content {

    position:
        relative;

    padding:
        20px 20px 21px;

    min-height:
        150px;

    display:
        flex;

    flex-direction:
        column;
}


/* TITLE */

.facility-content h3 {

    margin:
        0 0 8px;

    color:
        #ffffff;

    font-size:
        17px;

    font-weight:
        800;

    line-height:
        1.3;

    transition:
        color .35s ease;
}


.facility-card:hover
.facility-content h3 {

    color:
        #fff2b3;
}


/* DESCRIPTION */

.facility-content p {

    margin:
        0;

    color:
        rgba(198,222,247,.60);

    font-size:
        11px;

    line-height:
        1.6;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.facility-link {

    width:
        fit-content;

    margin-top:
        auto;

    padding-top:
        15px;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        #55c8ff !important;

    text-decoration:
        none !important;

    border:
        none !important;

    outline:
        none !important;

    font-size:
        10px;

    font-weight:
        800;

    transition:
        color .3s ease;
}


/* REMOVE UNDERLINE */

.facility-link,
.facility-link:hover,
.facility-link:focus,
.facility-link:active,
.facility-link:visited {

    text-decoration:
        none !important;

    border-bottom:
        none !important;

    outline:
        none !important;
}


/* LINK HOVER */

.facility-link:hover {

    color:
        #ffd34d !important;
}


/* =========================================================
   LINK ARROW
========================================================= */

.facility-link i {

    width:
        25px;

    height:
        25px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(22,140,255,.16);

    border:
        1px solid
        rgba(85,200,255,.20);

    color:
        #55c8ff;

    font-style:
        normal;

    font-size:
        14px;

    line-height:
        1;

    transition:
        transform .35s ease,

        background .35s ease,

        color .35s ease,

        box-shadow .35s ease;
}


.facility-link:hover i {

    transform:
        translateX(5px);

    background:
        linear-gradient(
            135deg,
            #ffd34d,
            #e6a900
        );

    color:
        #06152b;

    border-color:
        #fff0a3;

    box-shadow:
        0 5px 18px
        rgba(255,190,30,.32);
}


/* =========================================================
   SHINE EFFECT
========================================================= */

.facility-shine {

    position:
        absolute;

    top:
        -120%;

    left:
        -80%;

    width:
        45%;

    height:
        350%;

    transform:
        rotate(25deg);

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.04),
            rgba(255,237,160,.12),
            rgba(255,255,255,.04),
            transparent
        );

    pointer-events:
        none;

    transition:
        left .9s ease;

    z-index:
        20;
}


.facility-card:hover
.facility-shine {

    left:
        135%;
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.facilities-footer {

    position:
        relative;

    z-index:
        5;

    display:
        flex;

    justify-content:
        center;

    margin-top:
        42px;
}


/* BUTTON */

.all-facilities-btn {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        13px;

    padding:
        13px 17px 13px 23px;

    min-width:
        205px;

    justify-content:
        center;

    border-radius:
        50px;

    background:
        linear-gradient(
            135deg,
            #168cff,
            #0755bd
        );

    border:
        1px solid
        rgba(100,200,255,.35);

    color:
        #ffffff !important;

    text-decoration:
        none !important;

    font-size:
        11px;

    font-weight:
        800;

    box-shadow:
        0 12px 30px
        rgba(0,100,255,.25);

    overflow:
        hidden;

    transition:
        transform .35s ease,

        box-shadow .35s ease,

        background .35s ease;
}


/* REMOVE UNDERLINE */

.all-facilities-btn,
.all-facilities-btn:hover,
.all-facilities-btn:focus,
.all-facilities-btn:active,
.all-facilities-btn:visited {

    text-decoration:
        none !important;

    border-bottom:
        none !important;
}


/* BUTTON SHINE */

.all-facilities-btn::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -120%;

    width:
        70%;

    height:
        100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .7s ease;

    pointer-events:
        none;
}


.all-facilities-btn:hover {

    transform:
        translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #ffd34d,
            #e6a900
        );

    color:
        #07152b !important;

    border-color:
        #fff0a3;

    box-shadow:

        0 16px 35px
        rgba(255,190,30,.30),

        0 0 25px
        rgba(255,211,77,.15);
}


.all-facilities-btn:hover::before {

    left:
        140%;
}


/* BUTTON ARROW */

.all-facilities-btn i {

    width:
        29px;

    height:
        29px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(255,255,255,.14);

    color:
        #ffffff;

    font-style:
        normal;

    font-size:
        15px;

    transition:
        transform .35s ease,

        background .35s ease,

        color .35s ease;
}


.all-facilities-btn:hover i {

    transform:
        translateX(5px);

    background:
        rgba(3,19,40,.15);

    color:
        #07152b;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .facilities-section {

        padding:
            80px 22px;
    }


    .facilities-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            20px;
    }


    .facility-card {

        min-height:
            340px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .facilities-section {

        padding:
            70px 15px;
    }


    .facilities-header {

        margin-bottom:
            42px;
    }


    .facilities-header h2 {

        font-size:
            38px;
    }


    .facilities-header p {

        font-size:
            12px;
    }


    .facilities-grid {

        grid-template-columns:
            1fr;

        gap:
            17px;
    }


    .facility-card {

        min-height:
            335px;

        border-radius:
            20px;
    }


    .facility-image {

        height:
            200px;
    }


    .facility-content {

        min-height:
            135px;

        padding:
            18px;
    }


    .facility-content h3 {

        font-size:
            17px;
    }


    .facility-content p {

        font-size:
            11px;
    }


    .facility-number {

        top:
            13px;

        right:
            13px;
    }


    .facility-icon {

        bottom:
            13px;

        left:
            15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .facilities-section {

        padding:
            60px 12px;
    }


    .facilities-header h2 {

        font-size:
            32px;
    }


    .facility-card {

        min-height:
            325px;
    }


    .facility-image {

        height:
            190px;
    }


    .facility-content {

        padding:
            17px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.facility-link:focus-visible,
.all-facilities-btn:focus-visible {

    outline:
        2px solid
        #ffd34d !important;

    outline-offset:
        4px;
}


/* =========================================================
   GLOBAL LINK PROTECTION
========================================================= */

.facility-card a {

    text-decoration:
        none !important;
}

.facility-card a:hover {

    text-decoration:
        none !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-73c8918 *//* =========================================================
   STUDENT TESTIMONIAL SECTION
========================================================= */

.student-testimonials {

    --navy:
        #061735;

    --navy-dark:
        #020b1d;

    --blue:
        #168cff;

    --blue-dark:
        #0755ad;

    --gold:
        #ffc928;

    --gold-light:
        #ffe98b;

    position:
        relative;

    width:
        100%;

    padding:
        95px 0 85px;

    overflow:
        hidden;

    background:

        radial-gradient(
            circle at 8% 15%,
            rgba(22,140,255,.13),
            transparent 28%
        ),

        radial-gradient(
            circle at 92% 80%,
            rgba(255,201,40,.12),
            transparent 25%
        ),

        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 50%,
            #f4f8fd 100%
        );
}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.testimonial-orb {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

    filter:
        blur(90px);

    opacity:
        .28;

    z-index:
        0;
}


.orb-blue {

    width:
        300px;

    height:
        300px;

    left:
        -160px;

    top:
        25%;

    background:
        #168cff;
}


.orb-gold {

    width:
        280px;

    height:
        280px;

    right:
        -140px;

    bottom:
        15%;

    background:
        #ffc928;
}


/* =========================================================
   HEADER
========================================================= */

.testimonial-header {

    position:
        relative;

    z-index:
        5;

    max-width:
        800px;

    margin:
        0 auto 60px;

    padding:
        0 20px;

    text-align:
        center;
}


/* =========================================================
   BADGE
========================================================= */

.testimonial-badge {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        8px 18px;

    border-radius:
        50px;

    color:
        #0a62b7;

    background:

        linear-gradient(
            135deg,
            #eef7ff,
            #ffffff
        );

    border:
        1px solid
        rgba(22,140,255,.20);

    box-shadow:
        0 7px 25px
        rgba(22,140,255,.08);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        2px;
}


/* =========================================================
   HEADING
========================================================= */

.testimonial-header h2 {

    margin:
        18px 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height:
        1.1;

    color:
        #09234b;

    letter-spacing:
        -.8px;
}


.testimonial-header h2 span {

    background:

        linear-gradient(
            90deg,
            #0a63b9,
            #168cff,
            #7953d4
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;
}


.testimonial-header p {

    max-width:
        600px;

    margin:
        auto;

    color:
        #6d7e95;

    font-size:
        14px;

    line-height:
        1.7;
}


/* =========================================================
   HEADING LINE
========================================================= */

.testimonial-heading-line {

    width:
        75px;

    height:
        3px;

    margin:
        22px auto 0;

    border-radius:
        20px;

    background:

        linear-gradient(
            90deg,
            #168cff,
            #ffc928
        );

    box-shadow:
        0 0 18px
        rgba(22,140,255,.22);
}


/* =========================================================
   SLIDER
========================================================= */

.testimonial-slider {

    position:
        relative;

    z-index:
        5;

    width:
        100%;

    overflow:
        hidden;

    padding:
        15px 0 35px;
}


/* =========================================================
   EDGE FADE
========================================================= */

.testimonial-slider::before,
.testimonial-slider::after {

    content:
        "";

    position:
        absolute;

    top:
        0;

    bottom:
        0;

    width:
        140px;

    z-index:
        20;

    pointer-events:
        none;
}


.testimonial-slider::before {

    left:
        0;

    background:
        linear-gradient(
            90deg,
            #f8fbff,
            rgba(248,251,255,.85),
            transparent
        );
}


.testimonial-slider::after {

    right:
        0;

    background:
        linear-gradient(
            270deg,
            #f4f8fd,
            rgba(244,248,253,.85),
            transparent
        );
}


/* =========================================================
   TRACK
========================================================= */

.testimonial-track {

    display:
        flex;

    width:
        max-content;

    gap:
        25px;

    animation:
        testimonialInfinite
        45s
        linear
        infinite;

    will-change:
        transform;
}


/*
   IMPORTANT:
   Exactly 50% because the second
   half is duplicate cards.
*/

@keyframes testimonialInfinite {

    from {

        transform:
            translateX(0);
    }

    to {

        transform:
            translateX(-50%);
    }
}


/* =========================================================
   PAUSE ON HOVER
========================================================= */

.testimonial-slider:hover
.testimonial-track {

    animation-play-state:
        paused;
}


/* =========================================================
   CARD
========================================================= */

.testimonial-card {

    position:
        relative;

    width:
        410px;

    min-height:
        340px;

    flex-shrink:
        0;

    display:
        flex;

    flex-direction:
        column;

    padding:
        30px;

    border-radius:
        24px;

    overflow:
        hidden;

    background:

        linear-gradient(
            145deg,
            #ffffff 0%,
            #f4f9ff 55%,
            #edf5ff 100%
        );

    border:
        1px solid
        rgba(23,81,145,.10);

    box-shadow:

        0 16px 45px
        rgba(20,65,110,.10),

        inset
        0 1px 0
        rgba(255,255,255,.9);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}


/* =========================================================
   DIFFERENT CARD GRADIENTS
========================================================= */

.testimonial-card:nth-child(2n) {

    background:

        linear-gradient(
            145deg,
            #ffffff,
            #f7f3ff 55%,
            #f0ebff
        );
}


.testimonial-card:nth-child(3n) {

    background:

        linear-gradient(
            145deg,
            #ffffff,
            #f0fbff 55%,
            #e7f8ff
        );
}


.testimonial-card:nth-child(4n) {

    background:

        linear-gradient(
            145deg,
            #ffffff,
            #fffaf0 55%,
            #fff3d7
        );
}


.testimonial-card:nth-child(5n) {

    background:

        linear-gradient(
            145deg,
            #ffffff,
            #f2f8ff 55%,
            #e9f0ff
        );
}


/* =========================================================
   TOP GRADIENT LINE
========================================================= */

.testimonial-card::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        0;

    right:
        0;

    height:
        4px;

    background:

        linear-gradient(
            90deg,
            #0755ad,
            #168cff,
            #ffc928
        );
}


/* =========================================================
   CARD GLOW
========================================================= */

.testimonial-card::after {

    content:
        "";

    position:
        absolute;

    width:
        190px;

    height:
        190px;

    top:
        -110px;

    right:
        -80px;

    border-radius:
        50%;

    background:
        rgba(22,140,255,.12);

    filter:
        blur(35px);

    pointer-events:
        none;
}


/* =========================================================
   HOVER
========================================================= */

.testimonial-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,199,40,.40);

    box-shadow:

        0 25px 65px
        rgba(20,65,110,.16),

        0 0 35px
        rgba(255,200,40,.10);
}


/* =========================================================
   TOP CONTENT
========================================================= */

.testimonial-top {

    position:
        relative;

    z-index:
        5;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        15px;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-icon {

    font-family:
        Georgia,
        serif;

    font-size:
        58px;

    line-height:
        .6;

    color:
        #ffc928;

    text-shadow:
        0 5px 15px
        rgba(255,190,20,.18);
}


/* =========================================================
   STARS
========================================================= */

.stars {

    color:
        #f2ae00;

    font-size:
        15px;

    letter-spacing:
        3px;

    text-shadow:
        0 3px 10px
        rgba(255,180,0,.18);
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-text {

    position:
        relative;

    z-index:
        5;

    margin:
        5px 0 0;

    color:
        #53657b;

    font-size:
        13px;

    line-height:
        1.85;

    font-style:
        italic;
}


/* =========================================================
   STUDENT PROFILE
========================================================= */

.student-profile {

    position:
        relative;

    z-index:
        5;

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-top:
        auto;

    padding-top:
        25px;
}


/* =========================================================
   STUDENT IMAGE FRAME
========================================================= */

.student-photo {

    position:
        relative;

    width:
        62px;

    height:
        62px;

    min-width:
        62px;

    padding:
        3px;

    border-radius:
        50%;

    background:

        linear-gradient(
            135deg,
            #168cff,
            #ffc928
        );

    box-shadow:

        0 0 0 3px
        #ffffff,

        0 7px 22px
        rgba(20,75,140,.18);
}


/* =========================================================
   IMAGE
========================================================= */

.student-photo img {

    display:
        block;

    width:
        100%;

    height:
        100%;

    border-radius:
        50%;

    object-fit:
        cover;

    object-position:
        center;

    background:
        #edf4fc;
}


/* =========================================================
   STUDENT DETAILS
========================================================= */

.student-details h4 {

    margin:
        0 0 4px;

    color:
        #102b52;

    font-size:
        14px;

    font-weight:
        800;
}


.student-details span {

    display:
        block;

    margin-bottom:
        3px;

    color:
        #58708d;

    font-size:
        10px;

    font-weight:
        600;
}


.student-details small {

    display:
        block;

    color:
        #8a9aae;

    font-size:
        9px;

    line-height:
        1.4;
}


/* =========================================================
   BOTTOM INDICATOR
========================================================= */

.testimonial-bottom {

    position:
        relative;

    z-index:
        5;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    margin-top:
        10px;
}


.testimonial-bottom span {

    width:
        45px;

    height:
        1px;

    background:

        linear-gradient(
            90deg,
            transparent,
            #c6d4e5
        );
}


.testimonial-bottom span:last-child {

    background:

        linear-gradient(
            90deg,
            #c6d4e5,
            transparent
        );
}


.testimonial-bottom p {

    margin:
        0;

    color:
        #8a9aae;

    font-size:
        9px;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

    .testimonial-card {

        width:
            380px;

        min-height:
            330px;
    }

    .testimonial-track {

        gap:
            20px;

        animation-duration:
            40s;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:700px) {

    .student-testimonials {

        padding:
            70px 0 65px;
    }


    .testimonial-header {

        margin-bottom:
            35px;

        padding:
            0 18px;
    }


    .testimonial-header h2 {

        font-size:
            36px;
    }


    .testimonial-header p {

        font-size:
            12px;
    }


    .testimonial-slider {

        padding:
            10px 0 25px;
    }


    .testimonial-slider::before,
    .testimonial-slider::after {

        width:
            45px;
    }


    .testimonial-track {

        gap:
            15px;

        animation-duration:
            32s;
    }


    .testimonial-card {

        width:
            calc(100vw - 55px);

        min-height:
            335px;

        padding:
            26px;

        border-radius:
            22px;
    }


    .testimonial-text {

        font-size:
            12px;

        line-height:
            1.75;
    }


    .student-photo {

        width:
            57px;

        height:
            57px;

        min-width:
            57px;
    }


    .student-details h4 {

        font-size:
            13px;
    }


    .student-details span {

        font-size:
            9px;
    }


    .student-details small {

        font-size:
            8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:430px) {

    .testimonial-header h2 {

        font-size:
            31px;
    }


    .testimonial-card {

        width:
            calc(100vw - 40px);

        padding:
            24px;

        min-height:
            325px;
    }


    .quote-icon {

        font-size:
            50px;
    }


    .stars {

        font-size:
            13px;

        letter-spacing:
            2px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce) {

    .testimonial-track {

        animation:
            none !important;
    }

    .testimonial-card {

        transition:
            none !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-02247ec *//* =====================================================
   COMPANIES / PLACEMENT PARTNERS SECTION
===================================================== */

.companies-section {

    position: relative;

    width: 100%;

    padding: 95px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 105, 255, .20),
            transparent 32%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(30, 75, 180, .18),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #030b1c 0%,
            #07152f 45%,
            #0a2144 100%
        );

}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.company-bg-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(90px);

}


.glow-left {

    width: 350px;
    height: 350px;

    left: -180px;
    top: 100px;

    background:
        rgba(0, 110, 255, .20);

}


.glow-right {

    width: 400px;
    height: 400px;

    right: -200px;
    bottom: -150px;

    background:
        rgba(20, 80, 190, .18);

}


/* =====================================================
   CONTAINER
===================================================== */

.company-container {

    position: relative;

    width: 100%;

    max-width: 1550px;

    margin: auto;

}


/* =====================================================
   HEADER
===================================================== */

.company-header {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 55px;

    padding: 0 20px;

}


.company-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 17px;

    border-radius: 50px;

    color: #66b5ff;

    background:
        rgba(40, 140, 255, .08);

    border:
        1px solid
        rgba(80, 170, 255, .20);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.badge-pulse {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #ffc928;

    box-shadow:
        0 0 15px
        rgba(255, 201, 40, .9);

    animation:
        badgePulse 1.8s infinite;

}


@keyframes badgePulse {

    0%,
    100% {

        transform: scale(1);

        opacity: 1;

    }

    50% {

        transform: scale(1.6);

        opacity: .5;

    }

}


/* =====================================================
   TITLE
===================================================== */

.company-header h2 {

    margin:
        18px 0 12px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.08;

    font-weight: 700;

}


.company-header h2 span {

    color: #5caeff;

    background:
        linear-gradient(
            90deg,
            #4fa8ff,
            #a5d5ff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.company-header p {

    margin: 0 auto;

    max-width: 650px;

    color:
        rgba(225, 238, 255, .65);

    font-size: 14px;

    line-height: 1.8;

}


.company-title-line {

    width: 65px;

    height: 4px;

    margin: 22px auto 0;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #238cff,
            #7bc2ff
        );

    box-shadow:
        0 0 18px
        rgba(35, 140, 255, .45);

}


/* =====================================================
   MARQUEE
===================================================== */

.logo-marquee {

    position: relative;

    width: 100%;

    overflow: hidden;

    margin-top: 18px;

    /*
       Fade edges
    */

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 7%,
            black 93%,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 7%,
            black 93%,
            transparent
        );

}


/* =====================================================
   TRACK
===================================================== */

.logo-track {

    display: flex;

    align-items: center;

    width: max-content;

    gap: 18px;

    animation:
        companyScroll 30s linear infinite;

}


/* =====================================================
   SECOND ROW
===================================================== */

.second-row {

    margin-top: 18px;

}


.reverse-track {

    animation:
        companyScrollReverse 34s linear infinite;

}


/* =====================================================
   INFINITE ANIMATION
===================================================== */

@keyframes companyScroll {

    from {

        transform:
            translateX(0);

    }

    to {

        transform:
            translateX(-50%);

    }

}


@keyframes companyScrollReverse {

    from {

        transform:
            translateX(-50%);

    }

    to {

        transform:
            translateX(0);

    }

}


/* =====================================================
   PAUSE ON HOVER
===================================================== */

.logo-marquee:hover .logo-track {

    animation-play-state:
        paused;

}


/* =====================================================
   COMPANY LOGO CARD
===================================================== */

.company-logo {

    position: relative;

    flex:
        0 0 190px;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 22px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.11),
            rgba(255,255,255,.035)
        );

    border:
        1px solid
        rgba(130,190,255,.14);

    box-shadow:

        inset 0 1px 0
        rgba(255,255,255,.08),

        0 12px 35px
        rgba(0,0,0,.18);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}


/* =====================================================
   LOGO CARD HOVER
===================================================== */

.company-logo:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(70,165,255,.55);

    box-shadow:

        0 18px 45px
        rgba(0,0,0,.28),

        0 0 30px
        rgba(35,140,255,.14);

}


/* =====================================================
   LOGO
===================================================== */

.company-logo img {

    display: block;

    max-width: 135px;

    max-height: 55px;

    width: auto;

    height: auto;

    object-fit: contain;

    /*
       Makes different logo colours
       look consistent
    */

    filter:
        grayscale(100%)
        brightness(0)
        invert(1);

    opacity: .78;

    transition:
        filter .4s ease,
        opacity .4s ease,
        transform .4s ease;

}


/* =====================================================
   LOGO HOVER
===================================================== */

.company-logo:hover img {

    filter:
        grayscale(0)
        brightness(1)
        invert(0);

    opacity: 1;

    transform:
        scale(1.08);

}


/* =====================================================
   LOGO SHINE
===================================================== */

.company-logo::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.14),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .7s ease;

    pointer-events: none;

}


.company-logo:hover::before {

    left: 140%;

}


/* =====================================================
   BOTTOM TEXT
===================================================== */

.company-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 45px;

    color:
        rgba(190,215,245,.50);

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.bottom-line {

    width: 45px;

    height: 1px;

    background:
        rgba(100,170,255,.25);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .companies-section {

        padding:
            75px 0 70px;

    }


    .company-logo {

        flex-basis:
            165px;

        height:
            95px;

    }


    .company-logo img {

        max-width:
            115px;

        max-height:
            48px;

    }


    .logo-track {

        gap:
            14px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .companies-section {

        padding:
            65px 0 60px;

    }


    .company-header {

        margin-bottom:
            38px;

    }


    .company-header h2 {

        font-size:
            34px;

    }


    .company-header p {

        font-size:
            12px;

        padding:
            0 12px;

    }


    .company-logo {

        flex-basis:
            145px;

        height:
            82px;

        padding:
            15px;

        border-radius:
            14px;

    }


    .company-logo img {

        max-width:
            100px;

        max-height:
            42px;

    }


    .logo-track {

        gap:
            12px;

    }


    .logo-marquee {

        mask-image:
            linear-gradient(
                90deg,
                transparent,
                black 4%,
                black 96%,
                transparent
            );

        -webkit-mask-image:
            linear-gradient(
                90deg,
                transparent,
                black 4%,
                black 96%,
                transparent
            );

    }


    .company-bottom {

        margin-top:
            35px;

        font-size:
            8px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .company-logo {

        flex-basis:
            130px;

        height:
            76px;

    }


    .company-logo img {

        max-width:
            90px;

    }

}/* End custom CSS */