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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: #063b63;
    color: #fff;
    font-size: 14px;
    padding: 7px 0;
    overflow: hidden;
      position: sticky;
}


/* Full width */

.top-bar .container {
    /*max-width: 100%;*/
    padding: 0 12px;
    
}


/* IMPORTANT:
   Location = small
   Notice   = wide
   Contact  = small
*/

.top-bar .row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 20px;
    margin: 0;
    
}


/* =====================================================
   LOCATION - ONLY REQUIRED WIDTH
===================================================== */

.top-location {
    white-space: nowrap;
    width: auto !important;
    padding: 0 !important;
    text-align: left;
}

.top-location i {
    color: #ffd43b;
    margin-right: 5px;
}


/* =====================================================
   NOTICE - LARGE MIDDLE AREA
===================================================== */

.top-notice {
    width: 100% !important;
    min-width: 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    text-align: center;
    padding: 0 !important;
}


/* Scrolling wrapper */

.notice-wrapper {
    width: 100%;
    overflow: hidden;
}


/* Notice text */

.notice-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: noticeScroll 14s linear infinite;
}


/* Welcome */

.notice-text span:first-child {
    font-weight: 600;
}


/* Admission */

.notice-text a {
    color: oklab(94.976% -0.01976 0.07549);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #ffd43b;
}


/* Hover */

.notice-text a:hover {
    color: #fff;
    border-color: #fff;
}


/* =====================================================
   SCROLLING
===================================================== */

@keyframes noticeScroll {

    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}


.notice-text:hover {
    animation-play-state: paused;
}


/* =====================================================
   CONTACT - ONLY REQUIRED WIDTH
===================================================== */

.top-contact {
    width: auto !important;
    white-space: nowrap;
    padding: 0 !important;
    text-align: right;
}


.top-contact a {
    color: #fff;
    text-decoration: none;
    margin-left: 8px;
    white-space: nowrap;
}


.top-contact i {
    color: #ffd43b;
    margin-right: 4px;
}


.top-contact a:hover {
    color: #ffd43b;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .top-bar .row {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .top-location,
    .top-notice,
    .top-contact {
        width: 100% !important;
        text-align: center !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .top-location {
        display: none;
    }

    .top-contact a {
        margin: 0 4px;
    }

}

/* =====================================================
   NAVBAR
===================================================== */
/* =====================================================
   ABOUT US DROPDOWN
===================================================== */

.about-dropdown {

    min-width: 300px;

    padding: 8px;

    margin-top: 10px;

    border: none;

    border-radius: 14px;

     background-color: rgba(1, 6, 15, 0.8);
   /* background: rgba(255, 255, 255, 0.97);*/

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);

}


/* =====================================================
   DROPDOWN ITEM
===================================================== */

.about-dropdown .dropdown-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 11px;

    margin: 3px 0;

    border-radius: 10px;

    color: #eaffa4;

    transition:
        all 0.3s ease;

}


/* =====================================================
   SUBMENU ICON
===================================================== */

.submenu-icon {

    width: 43px;

    height: 43px;

    min-width: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #eef4ff;

    color: #0755b8;

    font-size: 18px;

    transition:
        all 0.3s ease;

}


/* =====================================================
   SUBMENU TEXT
===================================================== */

.submenu-content {

    display: flex;

    flex-direction: column;

    line-height: 1.2;

}


.submenu-content strong {

    font-size: 14px;

    font-weight: 700;

}


.submenu-content small {

    margin-top: 5px;

    font-size: 11px;

    color: hsl(60, 100%, 100%);

}


/* =====================================================
   DROPDOWN HOVER
===================================================== */

.about-dropdown .dropdown-item:hover {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0755b8,
            #1683dc
        );

    transform: translateX(4px);

}


.about-dropdown
.dropdown-item:hover
.submenu-icon {

    color: #ffffff;

    background:
        rgba(16, 15, 15, 0.18);

}


.about-dropdown
.dropdown-item:hover
.submenu-content small {

    color: hsl(0, 20%, 97%);

}


/* =====================================================
   DROPDOWN ARROW
===================================================== */

.about-menu .dropdown-toggle::after {

    margin-left: 5px;

    vertical-align: middle;

}


/* =====================================================
   DESKTOP DROPDOWN ANIMATION
===================================================== */

@media (min-width: 992px) {

    .about-menu:hover .about-dropdown {

        display: block;

        margin-top: 0;

        animation:
            aboutDropdownAnimation
            0.25s ease;

    }

}


@keyframes aboutDropdownAnimation {

    from {

        opacity: 0;

        transform:
            translateY(10px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =====================================================
   T & P CELL MENU
===================================================== */

.tp-cell-link {

    position: relative;

}


/* Small professional highlight */

.tp-cell-link::before {

    content: "";

    position: absolute;

    left: 8px;

    right: 8px;

    bottom: 4px;

    height: 2px;

    border-radius: 10px;

    background: transparent;

    transition:
        all 0.3s ease;

}


.tp-cell-link:hover::before {

    background: #ffffff;

}


/* =====================================================
   MOBILE RESPONSIVE DROPDOWN
===================================================== */

@media (max-width: 991px) {

    .about-dropdown {

        width: 100%;

        min-width: 100%;

        margin-top: 5px;

        padding: 6px;

        border-radius: 10px;

        box-shadow:
            0 8px 25px rgba(245, 244, 243, 7.0);

    }


    .about-dropdown .dropdown-item {

        padding: 10px;

    }


    .submenu-icon {

        width: 38px;

        height: 38px;

        min-width: 38px;

        font-size: 16px;

    }


    .submenu-content strong {

        font-size: 14px;

    }


    .submenu-content small {

        font-size: 10px;

    }

}
.main-navbar {
    background: hsl(0, 86%, 20%);
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(253, 253, 253, 1.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-area {
    padding: 0 !important;
}

.brand-image-wrapper {
    padding: 3px;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        #092c4c,
        #0d6efd,
        #ff6b00
    );
    transition: .3s;
}

.brand-banner-image {
    width: 400px;
    height: 100px;
    object-fit: contain;
    display: block;
 background: rgba(226, 244, 69, 0.7);
    border-radius: 6px;
}

.brand-image-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,110,253,.25);
}

.navbar-nav .nav-link {
    position: relative;
    color: #ebe530;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0px;
    padding: 15px 11.5px !important;
    background-color: rgba(1, 6, 15, 0.4);
    
}

.navbar-nav .nav-link i {
    color: #f5f5f6;
    margin-right: 3px;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f7f8f8;
     background-color: rgba(1, 6, 15, 0.5);
        
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 7px;
    height: 2px;
    background: #ff6b00;
    transform: scaleX(0);
    transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.admission-button {
    background: linear-gradient(
        135deg,
        #ff6b00,
        #ff8c00
    );
    color: #fff !important;
    border-radius: 6px;
    padding: 10px 16px !important;
}

.admission-button::after {
    display: none;
}

/* =====================================================
   BIT ITI HERO SECTION
===================================================== */

.bit-hero {

    padding: 12px 0 40px;
background: rgba(252, 249, 249, 0.9);
backdrop-filter: blur(8px);
    /*background: #3a7af2;*/

}


/* =====================================================
   MAIN SLIDER
===================================================== */

#bitHeroSlider {

    overflow: hidden;
    border-radius: 22px;
    box-shadow:
        0 15px 45px rgba(0,0,0,0.12);

        
}


/* =====================================================
   SLIDE
===================================================== */

.hero-slide {

    min-height: 450px;

    display: flex;

    align-items: stretch;

    overflow: hidden;

}


/* =====================================================
   LEFT CONTENT
===================================================== */

.hero-text {

    width: 48%;

    padding: 55px 40px 60px 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    z-index: 2;

}


.hero-label {

    display: inline-block;

    width: fit-content;

    padding: 7px 14px;

    border-radius: 30px;

    background: rgba(255,255,255,.65);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 15px;

}


.hero-text h1 {

    font-size: 42px;

    line-height: 1.13;

    font-weight: 700;

    margin: 0 0 18px;

    color: #092c4c;

}


.hero-text h1 strong {

    display: block;

    font-weight: 800;

}


/* Paragraph */

.hero-text p {

    max-width: 500px;

    font-size: 14px;

    line-height: 1.75;

    color: #4b5563;

    margin-bottom: 18px;

}


/* =====================================================
   POINTS
===================================================== */

.hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 22px;

}


.hero-points span {

    font-size: 12px;

    font-weight: 600;

    color: #263238;

}


.hero-points i {

    margin-right: 5px;

}


/* =====================================================
   BUTTON
===================================================== */

.hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    padding: 11px 20px;

    border-radius: 6px;

    background: #092c4c;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: .25s ease;

}


.hero-btn:hover {

    background: #ff6b00;

    color: #fff;

    transform: translateY(-2px);

}


/* =====================================================
   RIGHT IMAGE
===================================================== */

.hero-image {

    width: 52%;

    min-height: 450px;

    overflow: hidden;

}


.hero-image img {

    width: 100%;

    height: 100%;

    min-height: 450px;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 4s ease;

}


/* Slight zoom during active slide */

.carousel-item.active .hero-image img {

    transform: scale(1.04);

}


/* =====================================================
   SLIDE COLOR 1 - BLUE
===================================================== */

.slide-blue {

    background:
        linear-gradient(
            135deg,
            #e8f2ff,
            #d9eaff
        );

}


.slide-blue .hero-label {

    color: #0d6efd;

}


.slide-blue .hero-text h1 strong {

    color: #0d6efd;

}


.slide-blue .hero-points i {

    color: #0d6efd;

}


/* =====================================================
   SLIDE COLOR 2 - ORANGE
===================================================== */

.slide-orange {

    background:
        linear-gradient(
            135deg,
            #fff2e7,
            #ffe1c9
        );

}


.slide-orange .hero-label {

    color: #e85d04;

}


.slide-orange .hero-text h1 strong {

    color: #e85d04;

}


.slide-orange .hero-points i {

    color: #e85d04;

}


/* =====================================================
   SLIDE COLOR 3 - GREEN
===================================================== */

.slide-green {

    background:
        linear-gradient(
            135deg,
            #e9f9f0,
            #d5f2e2
        );

}


.slide-green .hero-label {

    color: #198754;

}


.slide-green .hero-text h1 strong {

    color: #198754;

}


.slide-green .hero-points i {

    color: #198754;

}


/* =====================================================
   SLIDE COLOR 4 - PURPLE
===================================================== */

.slide-purple {

    background:
        linear-gradient(
            135deg,
            #f3edff,
            #e8ddff
        );

}


.slide-purple .hero-label {

    color: #6f42c1;

}


.slide-purple .hero-text h1 strong {

    color: #6f42c1;

}


.slide-purple .hero-points i {

    color: #6f42c1;

}


/* =====================================================
   REMOVE ARROWS
===================================================== */

#bitHeroSlider .carousel-control-prev,
#bitHeroSlider .carousel-control-next {

    display: none !important;

}


/* =====================================================
   SMOOTH MEDIUM-FAST TRANSITION
===================================================== */

#bitHeroSlider.carousel-fade .carousel-item {

    opacity: 0;

    transition:
        opacity .8s ease-in-out;

}


#bitHeroSlider.carousel-fade .carousel-item.active {

    opacity: 1;

}


/* =====================================================
   SLIDER INDICATORS
===================================================== */

#bitHeroSlider .carousel-indicators {

    position: absolute;

    bottom: 14px;

    left: 48%;

    width: auto;

    margin: 0;

    z-index: 10;

}


#bitHeroSlider .carousel-indicators button {

    width: 9px;

    height: 9px;

    border: 0;

    border-radius: 50%;

    margin: 0 4px;

    background: rgba(255,255,255,.75);

    opacity: 1;

}


#bitHeroSlider .carousel-indicators button.active {

    background: #ff6b00;

    transform: scale(1.25);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hero-slide {

        min-height: 400px;

    }


    .hero-text {

        width: 50%;

        padding: 40px 25px 45px 35px;

    }


    .hero-image {

        width: 50%;

        min-height: 400px;

    }


    .hero-image img {

        min-height: 400px;

    }


    .hero-text h1 {

        font-size: 32px;

    }


    .hero-text p {

        font-size: 13px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .bit-hero {

        padding: 25px 0 40px;

    }


    .hero-slide {

        display: flex;

        flex-direction: column;

        min-height: auto;

    }


    .hero-text {

        width: 100%;

        padding: 35px 25px 45px;

        order: 1;

    }


    .hero-image {

        width: 100%;

        height: 280px;

        min-height: 280px;

        order: 2;

    }


    .hero-image img {

        height: 280px;

        min-height: 280px;

    }


    .hero-text h1 {

        font-size: 30px;

    }


    .hero-text p {

        font-size: 13px;

    }


    .hero-points {

        flex-direction: column;

        gap: 8px;

    }


    #bitHeroSlider .carousel-indicators {

        left: 0;

        right: 0;

        bottom: 10px;

        justify-content: center;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .hero-text {

        padding: 30px 20px 40px;

    }


    .hero-text h1 {

        font-size: 27px;

    }


    .hero-image {

        height: 240px;

        min-height: 240px;

    }


    .hero-image img {

        height: 240px;

        min-height: 240px;

    }

}

/* =====================================================
   FEATURES
===================================================== */

.hero-features {

    margin-bottom: 25px;

}


.hero-features div {

    color: #344054;

    font-size: 13px;

    font-weight: 500;

    margin: 10px 0;

}


.hero-features i {

    color: #198754;

    margin-right: 8px;

    font-size: 14px;

}


/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}


.hero-buttons .btn {

    padding: 12px 20px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;
    

}


.hero-buttons .btn-orange {

    background: #ff6b00;

    border: 1px solid #ff6b00;

    color: #fff;

}


.hero-buttons .btn-orange:hover {

    background: #e85d00;

    border-color: #e85d00;

}


/* =====================================================
   SMALL INFORMATION
===================================================== */

.hero-info {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid #e5e7eb;

}


.hero-info div {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #092c4c;

    font-size: 11px;

    font-weight: 600;

}


.hero-info i {

    color: #ff6b00;

    font-size: 18px;

}


/* =====================================================
   RIGHT SLIDER
===================================================== */
/* =====================================================
   BIT ITI - RESPONSIVE IMAGE SLIDER
===================================================== */

.hero-slider {

    position: relative;

    width: 100%;

    height: 440px;

    overflow: hidden;

    border-radius: 18px;

    background: #ddd;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);

}


/* Slider inner */

.hero-slider .carousel-inner {

    width: 100%;

    height: 100%;

}


/* Each slide */

.hero-slider .carousel-item {

    height: 440px;

    position: relative;

}


/* Images */

.hero-slider .carousel-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}


/* =====================================================
   MEDIUM-FAST FADE TRANSITION
===================================================== */

.hero-slider .carousel-fade .carousel-item {

    opacity: 0;

    transition: opacity 0.5s ease-in-out;

}


.hero-slider .carousel-fade .carousel-item.active {

    opacity: 1;

}


/* =====================================================
   IMAGE DARK GRADIENT
===================================================== */

.hero-slider .carousel-item::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 45%;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.75)
        );

    pointer-events: none;

}


/* =====================================================
   SLIDER TEXT
===================================================== */

.slider-caption {

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 42px;

    z-index: 3;

    color: #fff;

}


.slider-caption span {

    display: block;

    color: #ffc107;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;

}


.slider-caption h3 {

    margin: 0;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.2;

}


/* =====================================================
   DOT INDICATORS
===================================================== */

.hero-slider .carousel-indicators {

    bottom: 10px;

    margin-bottom: 0;

    z-index: 5;

}


.hero-slider .carousel-indicators button {

    width: 9px;

    height: 9px;

    padding: 0;

    margin: 0 4px;

    border: 2px solid #fff;

    border-radius: 50%;

    background: transparent;

    opacity: 1;

}


.hero-slider .carousel-indicators button.active {

    background: #ff6b00;

    border-color: #ff6b00;

}


/* =====================================================
   REMOVE LEFT / RIGHT ARROWS
===================================================== */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {

    display: none !important;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hero-slider {

        height: 400px;

    }

    .hero-slider .carousel-item {

        height: 400px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .hero-slider {

        height: 300px;

        border-radius: 12px;

    }

    .hero-slider .carousel-item {

        height: 300px;

    }

    .slider-caption {

        left: 20px;

        right: 20px;

        bottom: 38px;

    }

    .slider-caption h3 {

        font-size: 19px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .hero-slider {

        height: 270px;

    }

    .hero-slider .carousel-item {

        height: 270px;

    }

    .slider-caption h3 {

        font-size: 17px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px) {

    .hero-section {

        padding: 45px 0 60px;

    }


    .hero-content {

        padding-right: 0;

        text-align: center;

        margin-bottom: 20px;

    }


    .hero-content > p {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-features {

        display: inline-block;

        text-align: left;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-info {

        justify-content: center;

    }


    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {

        height: 420px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px) {

    .hero-section {

        padding: 35px 0 50px;

    }


    .hero-content {

        text-align: left;

    }


    .hero-content h1 {

        font-size: 34px;

    }


    .hero-content > p {

        font-size: 13px;

    }


    .hero-features {

        display: block;

    }


    .hero-buttons {

        justify-content: flex-start;

    }


    .hero-info {

        justify-content: flex-start;

        gap: 15px;

    }


    .hero-slider {

        border-radius: 12px;

    }


    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {

        height: 300px;

    }


    .slider-caption {

        left: 20px;

        right: 20px;

        bottom: 35px;

    }


    .slider-caption h3 {

        font-size: 19px;

    }


    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {

        width: 36px;

        height: 36px;

    }


    .hero-slider .carousel-control-prev {

        left: 10px;

    }


    .hero-slider .carousel-control-next {

        right: 10px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:575px) {

    .hero-content h1 {

        font-size: 30px;

    }


    .hero-buttons {

        display: flex;

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-info {

        flex-direction: column;

        align-items: flex-start;

    }

}

/* =====================================================
   QUICK ACTIONS
===================================================== */

.quick-actions {
    position: relative;
    margin-top: -45px;
    z-index: 10;
}

.quick-action {
    background-color: rgb(2, 35, 102);

    padding: 22px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #f9fafa;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    transition: .3s;
}

.quick-action:hover {
    transform: translateY(-7px);
    color: #dcf1a7;
}

.quick-action > i {
    font-size: 34px;
    color: #ff6b00;
}

.quick-action h5 {
    margin: 0;
    font-weight: 700;
}

.quick-action p {
    margin: 3px 0 0;
    font-size: 12px;
    color: #dce64f;
}


/* =====================================================
   COMMON SECTION
===================================================== */

.section {
    padding: 30px 0;
}

.section-tag {
    color: #ff6b00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading {
    color: #092c4c;
    font-size: 38px;
    font-weight: 800;
    margin: 8px 0 20px;
}

.section-heading span,
.section-heading-center span {
    color: #0d6efd;
}

.section-heading-center {
    text-align: center;
}

.section-heading-center h2 {
    color: #092c4c;
    font-size: 38px;
    font-weight: 800;
    margin: 8px 0;
}

.section-heading-center p {
    color: #777;
    max-width: 650px;
    margin: auto;
}


/* =====================================================
   WELCOME
===================================================== */

.welcome-section {
    background: hsl(0, 100%, 99%);
}

.entrance-image-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.entrance-image-box img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: .5s;
}

.entrance-image-box:hover img {
    transform: scale(1.04);
}

.image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255,255,255,.95);
    padding: 13px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.image-badge i {
    font-size: 28px;
    color: #ff6b00;
}

.image-badge strong {
    display: block;
    color: #092c4c;
}

.image-badge small {
    color: #2b0202;
}

.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: hsl(0, 91%, 5%);
    line-height: 1.8;
}

.welcome-section p {
    color: #090101;
    line-height: 1.8;
     font-weight: 400;
    
}

.check-list {
    margin-top: 20px;
}

.check-list div {
    margin: 12px 0;
    font-weight: 500;
}

.check-list i {
    color: #198754;
    margin-right: 8px;
}


/* =====================================================
   COURSES
===================================================== */
/* =====================================================
   COURSES - 4 CARDS
===================================================== */

.courses-section {
    padding: 10px 0;
    background: #f9f6f6;
}


/* Course card */

.trade-card {
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e8edf3;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: all .3s ease;
}


.trade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.14);
}


/* Image */

.trade-image {
    height: 190px;
    position: relative;
    overflow: hidden;
}


.trade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}


.trade-card:hover .trade-image img {
    transform: scale(1.07);
}


/* Icon */

.trade-icon {
    position: absolute;
    bottom: -10px;
    right: 20px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0d6efd;
    color: #fff;

    border-radius: 50%;

    border: 4px solid #fff;

    font-size: 19px;

    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}


/* Content */

.trade-content {
    padding: 3px 20px 22px;
    background-color: #022f47;
    backdrop-filter: blur(5px);
    
}

.trade-content > span {
    color: #f4f3f3;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}


.trade-content h3 {
    color: #e4ef7e;
    font-size: 21px;
    font-weight: 700;
    margin: 7px 0 10px;
}


.trade-content p {
    color: #f9f7f7;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 17px;
}


.trade-content a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}


.trade-content a i {
    margin-left: 5px;
    transition: margin-left .2s ease;
}


.trade-content a:hover i {
    margin-left: 10px;
}


/* =====================================================
   DIFFERENT TRADE COLORS
===================================================== */
.trade-intake {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 5px 0 12px;
    padding: 5px 10px;
    background: #f1f6ff;
    border-radius: 20px;
    color: #0d6efd;
    font-size: 11px;
    font-weight: 600;
}
.trade-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin: 15px 0 18px;
}

.detail-box {
    min-height: 72px;
    padding: 9px 5px;
    text-align: center;
    background: #e0defa;
    border: 1px solid #e5edf8;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.detail-box:hover {
    background: #fff;
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13,110,253,.12);
}

.detail-box i {
    font-size: 16px;
    color: #0d6efd;
    margin-bottom: 3px;
}

.detail-box small {
    font-size: 10px;
    font-weight: 700;
    color: #060606;
    letter-spacing: .5px;
}

.detail-box strong {
    font-size: 10px;
    color: #092c4c;
    margin-top: 2px;
}


/* Different accent colors for each trade */

.trade-card:nth-child(1) .detail-box i {
    color: #0d6efd;
}

.trade-card:nth-child(2) .detail-box i {
    color: #ff6b00;
}

.trade-card:nth-child(3) .detail-box i {
    color: #198754;
}

.trade-card:nth-child(4) .detail-box i {
    color: #6f42c1;
}


/* Mobile */

@media (max-width: 480px) {

    .trade-details {
        gap: 5px;
    }

    .detail-box {
        min-height: 68px;
    }

    .detail-box strong {
        font-size: 9px;
    }

}

.trade-intake i {
    font-size: 13px;
}

.trade-intake strong {
    font-weight: 700;
}
.trade-card:nth-child(1) .trade-icon {
    background: #0d6efd;
}

.trade-card:nth-child(2) .trade-icon {
    background: #ff6b00;
}

.trade-card:nth-child(3) .trade-icon {
    background: #198754;
}

.trade-card:nth-child(4) .trade-icon {
    background: #6f42c1;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .trade-image {
        height: 200px;
    }

}


@media (max-width: 767px) {

    .courses-section {
        padding: 50px 0;
    }

    .trade-image {
        height: 210px;
    }

    .trade-content {
        padding: 30px 22px 22px;
    }

}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    padding: 75px 0;
    background: linear-gradient(
        135deg,
        #092c4c,
        #0d6efd
    );
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    color: #ffc107;
    font-size: 35px;
}

.stat-item h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 8px 0 0;
}

.stat-item p {
    margin: 0;
    opacity: .85;
}


/* =====================================================
   WHY CHOOSE
===================================================== */

.why-section {
    background: #e8e8ea;
}

.feature-card {
    background: #d5a1ef;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: .3s;
    border: 1px solid #eef1f5;
}

.feature-card:hover {
    background: #fff;
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: #e8f1ff;
    color: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #092c4c;
    font-weight: 700;
}

.feature-card p {
    color: #180101;
    line-height: 1.7;
    font-size: 14px;
}


/* =====================================================
   CAMPUS
===================================================== */
/* =====================================================
   CAMPUS LIFE SECTION
===================================================== */

.campus-section {

    padding: 10px 0;

    background:
        linear-gradient(
            180deg,
            #53e79b,
            #ebedee
        );

}


/* =====================================================
   SLIDER
===================================================== */

.campus-slider {

    position: relative;

    width: 100%;

    height: 500px;

    margin-top: 35px;

    overflow: hidden;

    border-radius: 22px;

    background: #111;

    box-shadow:
        0 18px 50px rgba(0,0,0,.16);

}


.campus-slider .carousel-inner {

    height: 100%;

}


.campus-slider .carousel-item {

    height: 500px;

}


/* =====================================================
   IMAGE
===================================================== */

.campus-slide {

    position: relative;

    width: 100%;

    height: 100%;

    overflow: hidden;

}


.campus-slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    transition:
        transform 4.5s ease;

}


.carousel-item.active
.campus-slide img {

    transform: scale(1.05);

}


/* =====================================================
   OVERLAY
===================================================== */

.campus-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,.35) 50%,
            rgba(0,0,0,.08)
        );

    z-index: 1;

}


/* Bottom dark area */

.campus-slide::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 35%;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.55)
        );

    z-index: 1;

}


/* =====================================================
   CONTENT
===================================================== */

.campus-content {

    position: absolute;

    left: 60px;

    bottom: 70px;

    max-width: 560px;

    color: #fff;

    z-index: 3;

}


.campus-content span {

    display: inline-block;

    padding: 7px 14px;

    margin-bottom: 13px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.17);

    border: 1px solid
        rgba(255,255,255,.35);

    backdrop-filter: blur(8px);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

}


.campus-content h3 {

    margin: 0 0 10px;

    font-size: 38px;

    line-height: 1.15;

    font-weight: 800;

    text-shadow:
        0 3px 15px rgba(0,0,0,.4);

}


.campus-content p {

    margin: 0;

    max-width: 510px;

    color: rgba(255,255,255,.92);

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   DOTS
===================================================== */

.campus-slider .carousel-indicators {

    position: absolute;

    bottom: 18px;

    left: 0;

    right: 0;

    margin: 0;

    z-index: 5;

}


.campus-slider .carousel-indicators button {

    width: 9px;

    height: 9px;

    padding: 0;

    margin: 0 4px;

    border: 2px solid #fff;

    border-radius: 50%;

    background: transparent;

    opacity: 1;

    transition: all .3s ease;

}


.campus-slider .carousel-indicators button.active {

    width: 28px;

    border-radius: 10px;

    background: #ffd43b;

    border-color: #ffd43b;

}


/* =====================================================
   REMOVE ARROWS
===================================================== */

.campus-slider .carousel-control-prev,
.campus-slider .carousel-control-next {

    display: none !important;

}


/* =====================================================
   MEDIUM-FAST FADE
===================================================== */

.campus-slider.carousel-fade .carousel-item {

    opacity: 0;

    transition:
        opacity .85s ease-in-out;

}


.campus-slider.carousel-fade .carousel-item.active {

    opacity: 1;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .campus-slider {

        height: 430px;

    }

    .campus-slider .carousel-item {

        height: 430px;

    }

    .campus-content {

        left: 40px;

        bottom: 65px;

    }

    .campus-content h3 {

        font-size: 32px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .campus-section {

        padding: 55px 0;

    }

    .campus-slider {

        height: 370px;

        margin-top: 25px;

        border-radius: 15px;

    }

    .campus-slider .carousel-item {

        height: 370px;

    }

    .campus-content {

        left: 22px;

        right: 22px;

        bottom: 52px;

        max-width: none;

    }

    .campus-content h3 {

        font-size: 26px;

    }

    .campus-content p {

        font-size: 12px;

        line-height: 1.55;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .campus-slider {

        height: 320px;

    }

    .campus-slider .carousel-item {

        height: 320px;

    }

    .campus-content {

        left: 18px;

        right: 18px;

        bottom: 48px;

    }

    .campus-content h3 {

        font-size: 22px;

    }

    .campus-content p {

        font-size: 11px;

    }

}

/* =====================================================
   PROFESSIONAL STATISTICS SECTION
===================================================== */

.stats-section {

    position: relative;

    padding: 55px 0;

    background:
        linear-gradient(
            135deg,
            #063b63,
            #075985
        );

    overflow: hidden;

}


/* Decorative background */

.stats-section::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);

    top: -150px;

    left: -80px;

}

.stats-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: rgba(255,212,59,.04);

    bottom: -200px;

    right: -100px;

}


/* =====================================================
   STATISTICS WRAPPER
===================================================== */

.stats-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


/* =====================================================
   STAT ITEM
===================================================== */

.stat-item {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 20px 15px;

    border-right:
        1px solid
        rgba(255,255,255,.15);

    transition:
        transform .3s ease;

}


.stat-item:last-child {

    border-right: none;

}


.stat-item:hover {

    transform: translateY(-5px);

}


/* =====================================================
   ICON
===================================================== */

.stat-icon {

    width: 58px;

    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid
        rgba(255,255,255,.2);

    color: #ffd43b;

    font-size: 25px;

    transition: all .3s ease;

}


.stat-item:hover .stat-icon {

    background: #ffd43b;

    color: #063b63;

    transform: rotate(-5deg)
               scale(1.05);

}


/* =====================================================
   CONTENT
===================================================== */

.stat-content {

    position: relative;

}


.stat-content h2 {

    display: inline-block;

    margin: 0;

    color: #fff;

    font-size: 38px;

    line-height: 1;

    font-weight: 800;

}


.stat-plus {

    color: #ffd43b;

    font-size: 25px;

    font-weight: 800;

    margin-left: 2px;

}


.stat-content p {

    margin: 7px 0 0;

    color:
        rgba(255,255,255,.75);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .4px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .stats-wrapper {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .stat-item:nth-child(2) {

        border-right: none;

    }

    .stat-item {

        border-bottom:
            1px solid
            rgba(255,255,255,.15);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .stats-section {

        padding: 40px 0;

    }

    .stats-wrapper {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 5px;

    }

    .stat-item {

        gap: 8px;

        padding: 15px 5px;

        border-right:
            1px solid
            rgba(255,255,255,.15);

    }

    .stat-item:nth-child(2) {

        border-right: none;

    }

    .stat-icon {

        width: 42px;

        height: 42px;

        border-radius: 10px;

        font-size: 18px;

    }

    .stat-content h2 {

        font-size: 27px;

    }

    .stat-plus {

        font-size: 18px;

    }

    .stat-content p {

        font-size: 9px;

    }

}

/* =====================================================
   NOTICES
===================================================== */

.notice-section {
    background: #fff;
    padding-top:2px;
    padding-bottom: 0px;
}

.notice-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8fafc;
    border-left: 4px solid #ff6b00;
    border-radius: 5px;
}

.notice-date {
    min-width: 65px;
    height: 65px;
    background: #092c4c;
    color: #fff;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.notice-date strong {
    font-size: 20px;
}

.notice-date span {
    font-size: 10px;
}

.notice-label {
    color: #ff6b00;
    font-size: 10px;
    font-weight: 700;
}

.notice-item h5 {
    color: #092c4c;
    margin: 3px 0;
    font-weight: 700;
}

.notice-item p {
    color: #777;
    margin: 0;
    font-size: 13px;
}


/* =====================================================
   ADMISSION CTA
===================================================== */

.admission-cta {
    padding: 10px 0;
    background:
        linear-gradient(
            135deg,
            rgba(9,44,76,.97),
            rgba(13,110,253,.90)
        );
    color: #fff;
}

.admission-cta span {
    color: #ffc107;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.admission-cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 8px 0;
}

.admission-cta p {
    opacity: .85;
    margin: 0;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #071d31;
    color: #f1ecec;
    padding-top: 10px;

}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
}

footer h4 {
    color: #e0ea5f;
    font-weight: 700;
}

footer h5 {
    color: #e5fb84;
    font-weight: 700;
    margin-bottom: 7px;
}

footer p {
    font-size: 13px;
    line-height: 1.8;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 10px;
}

footer li a {
    color: #f6f2f2;
    font-size: 13px;
}

footer li a:hover {
    color: #ffc107;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #173b59;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 5px;
}

.social-icons a:hover {
    background: #0d6efd;
}

.copyright {
    margin-top: 10px;
    padding: 5px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: 12px;
}

/* =====================================================
   COPYRIGHT
===================================================== */

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

    gap: 7px;

    padding: 10px 15px;

    background: #042b49;

    color: rgba(211, 227, 107, 0.75);

    font-size: 14px;

    text-align: center;

    border-top: 1px solid
        rgba(255,255,255,.12);
}


/* Copyright symbol */

.copyright-icon {
    color: #ffd43b;
    font-size: 14px;
    font-weight: 700;
}


/* BIT ITI */

.copyright-name {
    color: #fff;
    font-weight: 700;
}


/* Divider */

.copyright-divider {
    color: rgba(255,255,255,.3);
}


/* Developed by */

.developed-by {
    color: rgba(255,255,255,.65);
}


/* Heart */

.heart {
    color: #ff5c5c;
    font-size: 13px;
    margin: 0 2px;
}


/* ConnectSoft */

.developer-link {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #ffd43b;

    font-weight: 700;

    text-decoration: none;

    padding: 4px 9px;

    border-radius: 5px;

    transition: all .25s ease;
}


.developer-link:hover {
    color: #063b63;

    background: #ffd43b;

    transform: translateY(-1px);
}


.developer-link i {
    font-size: 10px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .copyright {

        padding: 15px 10px;

        font-size: 11px;

        gap: 5px;

    }

    .copyright-divider {
        display: none;
    }

}

/* =====================================================
   BACK TO TOP
===================================================== */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #ff6b00;
    color: #fff;
    display: none;
    z-index: 999;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1199px) {

    .brand-banner-image {
        width: 400px;
        height: 120px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

}


@media(max-width:991px) {

    .navbar-collapse {
        margin-top: 12px;
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {
        height: 500px;
    }

    .slider-content h1 {
        font-size: 43px;
    }

    .quick-actions {
        margin-top: 25px;
    }

}


@media(max-width:767px) {

    .top-bar {
        text-align: center;
        font-size: 10px;
    }

    .top-bar a {
        margin-left: 5px;
    }

    .brand-banner-image {
        width: 210px;
        height: 52px;
    }

    .hero-slider .carousel-item,
    .hero-slider .carousel-item img {
        height: 560px;
    }

    .slider-overlay {
        align-items: center;
    }

    .slider-content {
        text-align: center;
        margin: auto;
    }

    .slider-content h1 {
        font-size: 34px;
    }

    .slider-content p {
        font-size: 14px;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading,
    .section-heading-center h2 {
        font-size: 30px;
    }

    .entrance-image-box img {
        height: 300px;
    }

    .campus-image.large {
        height: 300px;
    }

    .admission-cta {
        text-align: center;
    }

    .admission-cta h2 {
        font-size: 29px;
    }

    .admission-cta .btn {
        margin-top: 25px;
    }

}


@media(max-width:575px) {

    .brand-banner-image {
        width: 195px;
        height: 50px;
    }

    .slider-content h1 {
        font-size: 30px;
    }

    .slider-buttons .btn {
        display: block;
        width: 80%;
        margin: 8px auto;
    }

    .quick-action {
        padding: 17px;
    }

}

