/*======================================
    GLOBAL
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050812;
    color:#fff;
}

a{
    text-decoration:none;
}

/*======================================
    TOPBAR
======================================*/

.topbar{

    background:linear-gradient(90deg,#2f184d,#121634);

    padding:10px 0;

    font-size:14px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.top-contact a{

    color:#fff;

    font-weight:500;

}

.top-contact i{

    margin-right:8px;

    color:#ffffff;

}

.top-social{

    display:flex;

    gap:18px;

}

.top-social a{

    color:#fff;

    font-size:18px;

    transition:.4s;

}

.top-social a:hover{

    color:#ff4cf7;

    transform:translateY(-3px);

}

/*======================================
    HEADER
======================================*/

#header{

    position:absolute;

    width:100%;

    top:48px;

    left:0;

    z-index:999;

    transition:.4s;

}

#header.sticky{

    position:fixed;

    top:0;

    background:rgba(5,8,18,.92);

    backdrop-filter:blur(20px);

    box-shadow:0 8px 30px rgba(0,0,0,.4);

}

/*======================================
    NAVBAR
======================================*/

.navbar{

    padding:14px 0;

    background:rgba(10,12,22,.82);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar-brand img{

    width:260px;

    max-width:100%;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    color:#fff;

    font-size:15px;

    font-weight:500;

    position:relative;

    padding:12px 18px !important;

    transition:.35s;

}

.nav-link:hover{

    color:#ff58eb;

}

.nav-link.active{

    color:#ff5ef0 !important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:5px;

    width:0;

    height:3px;

    border-radius:50px;

    background:#ff5ef0;

    transition:.4s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:28px;

}

/*======================================
BUTTON
======================================*/

.admission-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:18px;

    color:#fff;

    font-weight:600;

    background:linear-gradient(90deg,#0b6eff,#e437ff);

    transition:.35s;

    box-shadow:0 0 25px rgba(160,60,255,.35);

}

.admission-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 40px rgba(160,60,255,.55);

}

/*======================================
TOGGLER
======================================*/

.navbar-toggler{

    border:1px solid rgba(255,255,255,.3);

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

    filter:invert(1);

}

/*======================================
OFFCANVAS
======================================*/

.offcanvas{

    background:#0a0d19;

}

.offcanvas .nav-link{

    color:#fff;

    padding:15px 0 !important;

}

.offcanvas .nav-link:hover{

    color:#ff5ef0;

}

/*======================================
SCROLL EFFECT
======================================*/

.navbar,
.topbar,
.admission-btn,
.nav-link{

    transition:.35s ease;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:991px){

    #header{

        top:44px;

    }

    .navbar-brand img{

        width:200px;

    }

}

@media(max-width:768px){

    .topbar{

        font-size:12px;

        padding:8px 0;

    }

    .top-social{

        gap:12px;

    }

    .top-social a{

        font-size:16px;

    }

    .top-contact{

        font-size:12px;

    }

}

@media(max-width:576px){

    .topbar .d-flex{

        flex-direction:column;

        gap:8px;

    }

    #header{

        top:72px;

    }

}
/* hero section */

.hero-section{

    position:relative;

    margin-top:95px;

    overflow:hidden;

}

.heroSlider{

    width:100%;

    height:760px;

}

.heroSlider img{

    width:100%;

    height:760px;

    object-fit:cover;

    display:block;

}

/* Navigation */

.swiper-button-next,
.swiper-button-prev{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(10px);

    color:#fff;

    transition:.4s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#8f2cff;

}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:20px;

    font-weight:700;

}

.swiper-pagination-bullet{

    background:#fff;

    opacity:.5;

}

.swiper-pagination-bullet-active{

    width:32px;

    border-radius:50px;

    background:#ff3be4;

    opacity:1;

}

/* Fixed Form */

.enquiry-box{

    position:absolute;

    top:50%;

    right:70px;

    transform:translateY(-50%);

    width:370px;

    z-index:100;

}

/* Responsive */

@media(max-width:1200px){

    .enquiry-box{

        right:30px;

    }

}

@media(max-width:991px){

    .heroSlider{

        height:auto;

    }

    .heroSlider img{

        height:auto;

    }

    .enquiry-box{

        position:relative;

        top:0;

        right:0;

        transform:none;

        width:100%;

        padding:25px;

        margin-top:20px;

    }

}

/*=========================================
    QUICK ENQUIRY
==========================================*/

.quick-enquiry{

    background:#050812;

    margin-top:-70px;

    position:relative;

    z-index:50;

}

.enquiry-card{

    background:rgba(13,18,35,.95);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.enquiry-title{

    color:#fff;

    font-size:32px;

    font-weight:700;

    margin-bottom:30px;

}

.form-label{

    color:#bdbdbd;

    font-size:14px;

    margin-bottom:8px;

}

.form-control,
.form-select{

    height:58px;

    background:#0c1326;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    border-radius:14px;

    padding:0 18px;

}

.form-control::placeholder{

    color:#8b8b8b;

}

.form-control:focus,
.form-select:focus{

    background:#0c1326;

    color:#fff;

    border-color:#7c3aed;

    box-shadow:none;

}

.form-select option{

    background:#111827;

}

.submit-btn{

    height:58px;

    min-width:200px;

    border:none;

    border-radius:14px;

    color:#fff;

    font-size:17px;

    font-weight:600;

    background:linear-gradient(90deg,#1c8cff,#ff3ed1);

    transition:.4s;

}

.submit-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 40px rgba(255,0,255,.35);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .quick-enquiry{

        margin-top:0;

    }

    .enquiry-card{

        padding:25px;

    }

    .submit-btn{

        width:100%;

    }

}

@media(max-width:576px){

    .enquiry-title{

        font-size:24px;

        text-align:center;

    }

}
/*=====================================
COURSES
=====================================*/

.courses-section{

    background:#050816;

    padding:90px 0;

}

.te-heading h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

}

.sub-title{

    color:#8b5cf6;

    font-weight:600;

    letter-spacing:2px;

}

.view-btn{

    color:#d26cff;

    font-weight:600;

}

.course-card{

    background:#0c1022;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    height:100%;

}

.course-card:hover{

    transform:translateY(-10px);

    border-color:#8b5cf6;

    box-shadow:0 25px 60px rgba(140,70,255,.25);

}

.course-card img{

    width:100%;

    height:170px;

    object-fit:cover;

}

.course-body{

    padding:22px;

}

.course-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    border:2px solid #ff45d4;

    color:#ff45d4;

    font-size:26px;

    margin-bottom:18px;

}

.course-icon.blue{

    color:#21b7ff;

    border-color:#21b7ff;

}

.course-icon.cyan{

    color:#00e4ff;

    border-color:#00e4ff;

}

.course-icon.purple{

    color:#b26cff;

    border-color:#b26cff;

}

.course-body h4{

    color:#fff;

    font-size:28px;

    margin-bottom:12px;

}

.course-body p{

    color:#b9b9b9;

    line-height:1.8;

}

.course-body a{

    color:#8b5cf6;

    font-weight:600;

}

.courseSlider{

    padding:20px 8px;

}

.courseSlider .swiper-button-next,
.courseSlider .swiper-button-prev{

    width:54px;

    height:54px;

    border-radius:50%;

    background:#11162a;

    color:#fff;

    border:1px solid rgba(255,255,255,.1);

}

.courseSlider .swiper-button-next::after,
.courseSlider .swiper-button-prev::after{

    font-size:20px;

}


/*====================================
WHY MAAC
====================================*/

.why-maac{

    background:#050816;

    padding:90px 0;

}

.why-box{

    background:#0b1022;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.video-box{

    position:relative;

    overflow:hidden;

}

.video-box img{

    width:100%;

    display:block;

    transition:.5s;

}

.video-box:hover img{

    transform:scale(1.08);

}

.play-btn{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:2px solid rgba(255,255,255,.35);

    transition:.4s;

}

.play-btn:hover{

    background:#8b5cf6;

    color:#fff;

    transform:translate(-50%,-50%) scale(1.08);

}

.why-content{

    padding:40px;

}

.why-content span:first-child{

    color:#17c0ff;

    font-size:14px;

    font-weight:600;

}

.why-content h2{

    color:#fff;

    font-size:46px;

    font-weight:700;

    line-height:1.2;

    margin:15px 0;

}

.why-content h2 span{

    color:#8b5cf6;

}

.why-content p{

    color:#c9c9c9;

    line-height:1.9;

}

.feature-list{

    padding:35px;

}

.feature-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}

.feature-icon{

    width:60px;

    height:60px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,0,255,.08);

    color:#ff52d5;

    border:1px solid rgba(255,0,255,.35);

    font-size:26px;

    flex-shrink:0;

}

.feature-item h5{

    color:#fff;

    font-size:20px;

    margin-bottom:6px;

}

.feature-item p{

    color:#b8b8b8;

    margin:0;

}

/* Hover */

.feature-item:hover .feature-icon{

    background:#8b5cf6;

    color:#fff;

    transform:rotate(8deg);

    transition:.35s;

}

/* Responsive */

@media(max-width:991px){

    .why-content{

        padding:30px;

        text-align:center;

    }

    .feature-list{

        padding:30px;

    }

}

@media(max-width:576px){

    .why-content h2{

        font-size:34px;

    }

    .play-btn{

        width:70px;

        height:70px;

        font-size:28px;

    }

}
/* count  */

/*=====================================
    ACHIEVEMENT
======================================*/

.achievement-section{

    padding:80px 0;

    background:#050816;

}

.achievement-box{

    background:rgba(12,16,34,.95);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.achievement-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:35px;

    border-right:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.achievement-item:hover{

    background:rgba(139,92,246,.08);

}

.achievement-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#b14cff;

    background:rgba(177,76,255,.08);

    border:1px solid rgba(177,76,255,.25);

    transition:.4s;

}

.achievement-item:hover .achievement-icon{

    transform:rotate(10deg) scale(1.08);

    background:#b14cff;

    color:#fff;

    box-shadow:0 0 25px rgba(177,76,255,.6);

}

.achievement-item h2{

    color:#fff;

    font-size:38px;

    font-weight:700;

    margin:0;

}

.achievement-item p{

    color:#c8c8c8;

    margin:0;

    font-size:16px;

}

/* Responsive */

@media(max-width:991px){

    .achievement-item{

        border-right:none;

        border-bottom:1px solid rgba(255,255,255,.08);

    }

}

@media(max-width:767px){

    .achievement-item{

        padding:25px;

    }

    .achievement-item h2{

        font-size:30px;

    }

    .achievement-icon{

        width:55px;

        height:55px;

        font-size:24px;

    }

}


/* blog */
.blog-testimonial{

    background:#050816;

    padding:90px 0;

}

.sub-title{

    color:#8b5cf6;

    font-weight:600;

}

.section-header h2{

    color:#fff;

    font-weight:700;

}

.view-all{

    color:#b26cff;

}

.blog-card{

    background:#0b1022;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(140,70,255,.25);

}

.blog-image{

    position:relative;

}

.blog-image img{

    width:100%;

    height:180px;

    object-fit:cover;

}

.date{

    position:absolute;

    top:15px;

    left:15px;

    background:#111827;

    color:#fff;

    border-radius:10px;

    padding:10px;

    text-align:center;

}

.date strong{

    display:block;

    font-size:24px;

}

.blog-content{

    padding:20px;

}

.blog-content h5{

    color:#fff;

    line-height:1.5;

    min-height:90px;

}

.blog-content a{

    color:#b26cff;

    font-weight:600;

}

.testimonial-card{

    background:#0b1022;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

    color:#fff;

}

.profile{

    width:70px;

    height:70px;

    border-radius:50%;

    margin-right:18px;

    object-fit:cover;

}

.stars{

    color:#FFD700;

    margin-top:8px;

}

.testimonial-card p{

    margin-top:25px;

    color:#c8c8c8;

    line-height:1.8;

}

.testimonial-prev,
.testimonial-next{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#111827;

    color:#fff;

}

.testimonial-prev::after,
.testimonial-next::after{

    font-size:18px;

}
/* placement partner */
/*====================================
PLACEMENT PARTNERS
====================================*/

.placement-partners {
    padding: 80px 0;
}

.partner-wrapper {
    position: relative;
    background: #0b1022;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 35px 70px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Title */
.partner-title {
    text-align: center;
    margin-bottom: 25px;
}

.partner-title span {
    color: #2ec8ff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Slider */
.partnerSlider {
    width: 100%;
    overflow: hidden;
}

.partnerSlider .swiper-wrapper {
    align-items: center;
}

.partnerSlider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

/* Logos */
.partnerSlider .swiper-slide img {
    display: block;
    max-width: 150px;
    max-height: 50px;
    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 0.75;
    transition: all 0.4s ease;
}

.partnerSlider .swiper-slide img:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* Navigation Button */
.partner-next {
    width: 48px !important;
    height: 48px !important;
    right: 15px !important;

    border-radius: 50%;
    background: #151a2d;
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #fff;
}

.partner-next::after {
    font-size: 18px !important;
}

/* Responsive */
@media (max-width: 991px) {

    .partner-wrapper {
        padding: 30px;
    }

}

@media (max-width: 767px) {

    .partner-wrapper {
        padding: 25px;
    }

    .partnerSlider .swiper-slide img {
        max-width: 110px;
    }

    .partner-next {
        display: none;
    }

}
/* footer */
/*====================================
FOOTER
====================================*/

.footer-section{

    background:#050816;

    padding:80px 0 20px;

}

.footer-box{

    background:#0b1022;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:50px;

}

.footer-logo{

    width:180px;

}

.footer-box h5{

    color:#fff;

    margin-bottom:22px;

    font-size:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#bfbfbf;

    transition:.3s;

}

.footer-links a:hover{

    color:#b26cff;

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:12px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.4s;

}

.social-icons a:hover{

    background:#b14cff;

    color:#fff;

}

.center-card{

    background:#12192f;

    padding:15px;

    border-radius:15px;

}

.center-card h6{

    color:#ffd54f;

}

.center-card p{

    color:#c9c9c9;

    font-size:14px;

}

.center-card img{

    width:100%;

    border-radius:10px;

    margin:12px 0;

}

.map-btn{

    display:block;

    text-align:center;

    border:1px solid #b14cff;

    border-radius:10px;

    padding:10px;

    color:#b14cff;

}

.map-btn:hover{

    background:#b14cff;

    color:#fff;

}

.contact-list{

    list-style:none;

    padding:0;

}

.contact-list li{

    color:#d4d4d4;

    margin-bottom:18px;

}

.contact-list i{

    color:#b14cff;

    margin-right:10px;

}

.newsletter{

    display:flex;

    margin-top:15px;

}

.newsletter input{

    flex:1;

    height:50px;

    background:#12192f;

    border:none;

    color:#fff;

    padding:15px;

    border-radius:12px 0 0 12px;

}

.newsletter button{

    width:55px;

    border:none;

    background:linear-gradient(90deg,#7c3aed,#ff3ed1);

    color:#fff;

    border-radius:0 12px 12px 0;

}

.footer-box hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0 20px;

}

.copyright{

    text-align:center;

    color:#8d8d8d;

}

/* Responsive */

@media(max-width:991px){

    .footer-box{

        padding:30px;

    }

}

@media(max-width:767px){

    .footer-logo{

        margin:auto;

        display:block;

    }

    .social-icons{

        justify-content:center;

    }

    .footer-box{

        text-align:center;

    }

    .newsletter{

        flex-direction:column;

        gap:10px;

    }

    .newsletter input{

        border-radius:12px;

    }

    .newsletter button{

        width:100%;

        border-radius:12px;

        height:50px;

    }

}
/* Global Particle Canvas */

#particleCanvas{

    position:fixed;

    inset:0;

    width:100%;

    height:100%;

    z-index:999;

    pointer-events:none;

}


/* courses page */
/* courses banner */

/* Hero */
.course-banner{

    margin:70px auto;
    border-radius:25px;
    overflow:hidden;
    position:relative;

    background:url("courses-bg.jpg") center center/cover no-repeat;
    min-height:420px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 0 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

.course-banner::before{

    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(3,8,18,.92) 0%,
    rgba(3,8,18,.85) 38%,
    rgba(3,8,18,.45) 70%,
    rgba(3,8,18,.10) 100%);

}

.banner-content{

    position:relative;
    z-index:2;
    min-height:420px;
}

.title{

    font-size:58px;
    font-weight:800;
    line-height:1.1;
}

.title span{

    color:#ffb400;
}

.subtitle{

    margin-top:18px;
    color:#c5c8d0;
    font-size:20px;
    max-width:520px;
}

.line{

    width:70px;
    height:5px;

    border-radius:20px;

    margin-top:35px;

    background:linear-gradient(90deg,#ff9f00,#ffc84d);

    box-shadow:0 0 15px rgba(255,183,0,.6);

}

.character{

    position:relative;
    z-index:2;
}

.character img{

    max-width:100%;
    height:auto;
}

@media(max-width:992px){

.title{

    font-size:42px;
}

.subtitle{

    font-size:18px;
}

.character{

    margin-top:40px;
    text-align:center;
}

.banner-content{

    padding:50px 20px;
}

}

@media(max-width:576px){

.title{

    font-size:34px;
}

.subtitle{

    font-size:16px;
}

}
/* courses */
.courses-section{

    background:#070b17;

}

.filter-bar{

    background:#0d1224;

    padding:15px 20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.05);

}

.search-box{

    width:250px;

}

.search-box input{

    background:#14192d;

    border:none;

    color:#fff;

    border-radius:30px;

}

.search-box input::placeholder{

    color:#8d93ad;

}

.btn-active{

    background:linear-gradient(90deg,#6d39ff,#c837ff);

    color:#fff;

    border-radius:30px;

    padding:8px 18px;

}

.btn-dark-filter{

    background:#14192d;

    color:#c9c9d8;

    border-radius:30px;

}

.btn-dark-filter:hover{

    background:#222845;

    color:#fff;

}

.sort-select{

    width:150px;

    background:#14192d;

    color:#fff;

    border:none;

    border-radius:30px;

}

.course-card{

    background:#101526;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    height:100%;

}

.course-card:hover{

    transform:translateY(-8px);

    border-color:#834dff;

    box-shadow:0 15px 35px rgba(118,82,255,.25);

}

.course-card img{

    height:190px;

    object-fit:cover;

}

.card-body{

    padding:22px;

}

.badge-group{

    display:flex;

    gap:10px;

    margin-bottom:15px;

}

.badge-group span{

    background:#1a2038;

    color:#9ca5bf;

    padding:5px 12px;

    border-radius:30px;

    font-size:12px;

}

.course-card h4{

    color:#fff;

    font-size:22px;

    margin-bottom:15px;

}

.course-card p{

    color:#9096ad;

    font-size:14px;

    line-height:1.8;

}

.course-card a{

    color:#a654ff;

    text-decoration:none;

    font-weight:600;

}


.cta-box{
    background:#101526;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:28px 35px;
}

.cta-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#7b3cff,#e238ff);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
}

.cta-box h4{
    color:#fff;
    margin-bottom:5px;
}

.cta-box p{
    color:#9ca5bf;
    margin-bottom:0;
}

.btn-gradient{
    background:linear-gradient(90deg,#5b5cff,#d833ff);
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;
}

/* contact */

/* body{
    background:#070b14;
    color:#fff;
    font-family:Poppins,sans-serif;
} */

/*=========================
Hero
=========================*/

.contact-hero{

    background:#070b14;
    min-height:600px;
    display:flex;
    align-items:center;
    position:relative;

}

.hero-tag{

    color:#ffb400;
    font-weight:600;
    letter-spacing:2px;

}

.hero-title{

    font-size:65px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0;

}

.hero-title span{

    color:#ffb400;

}

.hero-text{

    color:#b8bfd0;
    font-size:18px;
    max-width:520px;

}

.hero-image{

    max-height:520px;
    animation:float 5s infinite ease-in-out;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

/*=========================
Glow Background
=========================*/

.hero-circle{

position:absolute;
border-radius:50%;
filter:blur(80px);

}

.one{

width:350px;
height:350px;
background:#ff980022;
top:-80px;
left:-100px;

}

.two{

width:300px;
height:300px;
background:#ff005522;
bottom:-100px;
right:-80px;

}

/*=========================
Contact
=========================*/

.contact-section{

background:#0d111d;

}

.contact-card{

background:#111827;
padding:40px;
border-radius:25px;
border:1px solid rgba(255,255,255,.08);

}

.contact-card h2{

margin-bottom:30px;
font-weight:700;

}

.form-control,
.form-select{

background:#1b2436;
border:1px solid #2c3650;
color:#fff;
padding:14px;

}

.form-control:focus,
.form-select:focus{

background:#1b2436;
color:#fff;
border-color:#ffb400;
box-shadow:none;

}

.form-control::placeholder{

color:#b7bfd1;

}

.info-card{

background:#111827;
padding:40px;
border-radius:25px;
height:100%;
border:1px solid rgba(255,255,255,.08);

}

.info-card h4{

color:#ffb400;
margin-bottom:25px;

}

.info-card h5{

color:#fff;

}

.info-card p{

color:#b8bfd0;
line-height:1.8;

}

.info-card hr{

border-color:#2c3650;

}

.btn-warning{

background:#ffb400;
border:none;
font-weight:600;
border-radius:12px;

}

.btn-warning:hover{

background:#ff9800;

}

.btn-outline-light{

border-radius:12px;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.hero-title{

font-size:45px;

}

.hero-image{

margin-top:50px;

}

.contact-card,
.info-card{

padding:30px;

}

}


/* =================================
   COURSE DETAILS MODAL
================================= */

.course-modal {

    position: fixed;

    inset: 0;

    background: rgba(2, 5, 15, .85);

    backdrop-filter: blur(10px);

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;

}


/* Active Modal */

.course-modal.active {

    opacity: 1;

    visibility: visible;

}


/* Modal Box */

.course-modal-box {

    width: 100%;

    max-width: 900px;

    max-height: 90vh;

    background: #101526;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 22px;

    overflow: hidden;

    position: relative;

    transform: translateY(30px) scale(.96);

    transition: .35s ease;

    box-shadow: 0 25px 80px rgba(0,0,0,.6);

}


.course-modal.active .course-modal-box {

    transform: translateY(0) scale(1);

}


/* Close Button */

.modal-close {

    position: absolute;

    right: 20px;

    top: 20px;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.2);

    background: rgba(0,0,0,.4);

    color: #fff;

    font-size: 17px;

    z-index: 10;

    cursor: pointer;

    transition: .3s;

}


.modal-close:hover {

    background: #a43cff;

    border-color: #a43cff;

    transform: rotate(90deg);

}


/* Modal Header */

.modal-header-content {

    display: flex;

    gap: 25px;

    padding: 30px;

    background:

        linear-gradient(

            90deg,

            rgba(115,45,255,.25),

            rgba(0,0,0,0)

        );

}


.modal-header-content img {

    width: 240px;

    height: 160px;

    object-fit: cover;

    border-radius: 15px;

}


.modal-title-content {

    padding-top: 15px;

}


.modal-label {

    color: #b45cff;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;

}


.modal-title-content h2 {

    color: #fff;

    font-size: 34px;

    margin: 10px 0;

}


.modal-title-content p {

    color: #a0a7bb;

}


/* Scrollable Content */

.modal-scroll-content {

    max-height: calc(90vh - 220px);

    overflow-y: auto;

    padding: 30px;

}


/* Custom Scrollbar */

.modal-scroll-content::-webkit-scrollbar {

    width: 6px;

}


.modal-scroll-content::-webkit-scrollbar-track {

    background: #0b0f1c;

}


.modal-scroll-content::-webkit-scrollbar-thumb {

    background: linear-gradient(#743cff, #d42cff);

    border-radius: 10px;

}


/* Course Info */

.course-info-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 30px;

}


.course-info-item {

    background: #171d31;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 14px;

    padding: 18px;

    display: flex;

    gap: 12px;

    align-items: center;

}


.course-info-item > i {

    font-size: 25px;

    color: #b44dff;

}


.course-info-item small {

    display: block;

    color: #8d94aa;

    margin-bottom: 5px;

}


.course-info-item strong {

    display: block;

    color: #fff;

    font-size: 14px;

}


/* Sections */

.modal-section {

    margin-bottom: 30px;

}


.modal-section h3 {

    color: #fff;

    font-size: 20px;

    margin-bottom: 15px;

}


.modal-section p {

    color: #9ca4ba;

    line-height: 1.8;

}


.modal-section ul {

    padding-left: 20px;

}


.modal-section li {

    color: #aab1c4;

    margin-bottom: 10px;

}


.modal-section li::marker {

    color: #b34cff;

}


/* Software */

.software-list {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}


.software-item {

    min-width: 120px;

    padding: 15px;

    background: #171d31;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 14px;

    text-align: center;

    transition: .3s;

}


.software-item:hover {

    transform: translateY(-5px);

    border-color: #a648ff;

    box-shadow: 0 8px 25px rgba(153,60,255,.2);

}


.software-item i {

    display: block;

    font-size: 30px;

    color: #bd55ff;

    margin-bottom: 8px;

}


.software-item span {

    color: #d9dcec;

    font-size: 13px;

}


/* CTA */

.modal-cta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    background: linear-gradient(

        100deg,

        #1a1835,

        #171328

    );

    border: 1px solid rgba(170,70,255,.25);

    border-radius: 16px;

    padding: 22px;

}


.modal-cta h4 {

    color: #fff;

    margin-bottom: 5px;

}


.modal-cta p {

    color: #949bb0;

    margin: 0;

}


.modal-apply-btn {

    white-space: nowrap;

    padding: 12px 22px;

    border-radius: 30px;

    color: #fff;

    text-decoration: none;

    background: linear-gradient(

        90deg,

        #683cff,

        #d62cff

    );

    font-weight: 600;

}


.modal-apply-btn:hover {

    color: #fff;

    transform: translateY(-2px);

}


/* =================================
   RESPONSIVE
================================= */

@media(max-width:768px) {


    .modal-header-content {

        flex-direction: column;

        padding: 25px;

    }


    .modal-header-content img {

        width: 100%;

        height: 180px;

    }


    .modal-title-content {

        padding-top: 0;

    }


    .modal-title-content h2 {

        font-size: 28px;

    }


    .course-info-grid {

        grid-template-columns: 1fr;

    }


    .modal-cta {

        flex-direction: column;

        align-items: flex-start;

    }


    .modal-apply-btn {

        width: 100%;

        text-align: center;

    }

}

/* modal course */
/* .course-modal{

background:#0b1021;
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
overflow:hidden;
color:#fff;

}

.course-banner{

width:100%;
height:280px;
object-fit:cover;

}

.close-btn{

position:absolute;
top:18px;
right:18px;
z-index:5;
background:rgba(0,0,0,.4);

}

.course-modal h2{

font-size:38px;
font-weight:700;
margin-bottom:25px;

}

.course-meta{

display:flex;
gap:30px;
margin-bottom:20px;
flex-wrap:wrap;

}

.course-meta div{

background:#11182d;
padding:12px 18px;
border-radius:50px;
border:1px solid rgba(255,255,255,.08);

}

.course-meta i{

color:#8b5cf6;
margin-right:8px;

}

.course-modal p{

color:#bfc5d8;
line-height:1.8;

}

.software-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(90px,1fr));
gap:20px;
margin-top:20px;

}

.software-item{

background:#12172c;
border:1px solid rgba(255,255,255,.08);
padding:18px;
border-radius:18px;
text-align:center;
transition:.4s;

}

.software-item:hover{

transform:translateY(-6px);
border-color:#8b5cf6;
box-shadow:0 0 25px rgba(139,92,246,.4);

}

.software-item img{

width:55px;
height:55px;
object-fit:contain;
margin-bottom:10px;

}

.software-item span{

display:block;
font-size:14px;
color:#fff;

}

.modal-dialog{

max-width:900px;

}

.modal-body{

max-height:75vh;

}

.modal-body::-webkit-scrollbar{

width:7px;

}

.modal-body::-webkit-scrollbar-thumb{

background:#8b5cf6;
border-radius:20px;

} */

/* events */

/* =========================================
   COMMON SECTION
========================================= */

.testimonial-section,
.events-section {

    background: #070b17;

    color: #fff;

}


.section-title h2 {

    color: #fff;

    font-size: 32px;

    margin: 8px 0;

}


.section-title p {

    color: #9299ae;

    max-width: 600px;

}


.sub-title {

    color: #a852ff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


/* =========================================
   blog and TESTIMONIAL SLIDER
========================================= */

.blog-testimonial-section{

background:#070B1D;
padding:80px 0;

}

.section-heading h2{

color:#fff;
font-weight:700;

}

.small-title{

color:#b24cff;
font-size:13px;
font-weight:600;
letter-spacing:2px;

}

.view-btn{

color:#b24cff;
text-decoration:none;
font-weight:600;

}

.blog-card{

background:#11162b;
border-radius:20px;
overflow:hidden;
transition:.4s;
border:1px solid rgba(255,255,255,.08);

}

.blog-card:hover{

transform:translateY(-10px);
box-shadow:0 0 35px rgba(180,76,255,.35);

}

.blog-image{

position:relative;

}

.blog-image img{

width:100%;
height:220px;
object-fit:cover;

}

.date-box{

position:absolute;
left:15px;
top:15px;

background:#0f1730;

padding:12px;

border-radius:12px;

color:#fff;

text-align:center;

font-weight:700;

}

.date-box span{

display:block;

font-size:28px;

}

.blog-content{

padding:25px;

}

.blog-content h5{

color:#fff;

line-height:1.5;

}

.blog-content a{

color:#b24cff;

text-decoration:none;

font-weight:600;

}

.testimonial-card{

background:linear-gradient(180deg,#131a33,#0d1122);

padding:40px;

border-radius:25px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

}

.testimonial-card img{

width:90px;

height:90px;

border-radius:50%;

border:3px solid #b24cff;

margin-bottom:20px;

}

.testimonial-card h4{

color:#fff;

}

.testimonial-card span{

color:#b24cff;

}

.testimonial-card p{

color:#d6d6d6;

line-height:1.9;

margin-top:20px;

}

.stars{

color:#FFD43B;

font-size:18px;

margin:15px 0;

}

.carousel-control-prev,
.carousel-control-next{

width:45px;
height:45px;
background:#161d35;
border-radius:50%;
top:45%;

}

.carousel-control-prev{

left:-22px;

}

.carousel-control-next{

right:-22px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

filter:invert(1);

}


/* events */

/*=============================
Students Reels & Events Section
=============================*/

.students-events-section{
    background:#070b1d;
    position:relative;
    overflow:hidden;
}

.students-events-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(178,76,255,.08);
    filter:blur(120px);
    top:-150px;
    left:-100px;
    border-radius:50%;
}

.students-events-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(94,114,235,.08);
    filter:blur(120px);
    right:-100px;
    bottom:-100px;
    border-radius:50%;
}

.section-subtitle{
    color:#b24cff;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title{
    color:#fff;
    font-weight:700;
    margin-top:8px;
}

.view-all{
    color:#b24cff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.view-all:hover{
    color:#fff;
}

/*=====================
Cards
=====================*/

.reel-card,
.event-card{

    background:#11162b;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.45s;
    position:relative;

}

.reel-card:hover,
.event-card:hover{

    transform:translateY(-10px);
    box-shadow:0 0 35px rgba(178,76,255,.35);

}

/*=====================
Thumbnail
=====================*/

.video-thumbnail{

    position:relative;
    overflow:hidden;

}

.video-thumbnail img{

    width:100%;
    height:240px;
    object-fit:cover;
    transition:.6s;

}

.reel-card:hover img,
.event-card:hover img{

    transform:scale(1.08);

}

.video-thumbnail::after{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,
    rgba(0,0,0,.05),
    rgba(0,0,0,.55));

}

/*=====================
Play Button
=====================*/

.play-btn{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    border:none;
    z-index:5;
    background:rgba(178,76,255,.9);
    color:#fff;
    font-size:34px;
    transition:.4s;
    box-shadow:0 0 25px rgba(178,76,255,.6);

}

.play-btn:hover{

    transform:translate(-50%,-50%) scale(1.15);

}

/* Pulse Animation */

.play-btn::before{

    content:"";
    position:absolute;
    inset:-10px;
    border-radius:50%;
    border:2px solid rgba(178,76,255,.5);
    animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);
opacity:1;

}

100%{

transform:scale(1.6);
opacity:0;

}

}

/*=====================
Duration Badge
=====================*/

.duration{

    position:absolute;
    bottom:15px;
    right:15px;
    z-index:5;
    background:rgba(0,0,0,.75);
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;

}

/*=====================
Content
=====================*/

.reel-content,
.event-content{

    padding:22px;

}

.reel-content h5,
.event-content h5{

    color:#fff;
    font-weight:600;

}

.reel-content span{

    color:#b24cff;
    font-size:14px;

}

.reel-content small{

    color:#b8bfd8;

}

.event-date{

    color:#b24cff;
    font-size:14px;

}

/*=====================
Slider Buttons
=====================*/

.slider-buttons{

    display:flex;
    gap:15px;
    margin-top:25px;

}

.slider-buttons button{

    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#151d36;
    color:#fff;
    transition:.4s;
    font-size:20px;

}

.slider-buttons button:hover{

    background:#b24cff;
    transform:scale(1.08);

}

/*=====================
Modal
=====================*/

.modal-content{

    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    background:#11162b;

}

.btn-close{

    opacity:1;

}

/*=====================
Responsive
=====================*/

@media(max-width:991px){

.section-title{

font-size:30px;

}

.video-thumbnail img{

height:220px;

}

}

@media(max-width:576px){

.section-title{

font-size:26px;

}

.video-thumbnail img{

height:200px;

}

.play-btn{

width:60px;
height:60px;
font-size:28px;

}

.slider-buttons{

justify-content:center;

}

}


/* placements image circle */

.student-img{
    width:100%;
    max-width:220px;
    aspect-ratio:1;
    border-radius:50%;
    overflow:hidden;
    margin:auto;
}

.student-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* degree program */

.banner{
    width:100%;
    height:550px;
    overflow:hidden;
}

.banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media (max-width:991px){
    .banner{
        height:400px;
    }
}

@media (max-width:576px){
    .banner{
        height:250px;
    }
}
/* part 2 */

/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
} */

.degree-section{

    position:relative;

    background:url("bakky.png") center center/cover no-repeat;

    min-height:700px;

    padding:80px 0;

    color:#fff;

    overflow:hidden;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    90deg,
    rgba(0,0,0,.90) 0%,
    rgba(0,0,0,.78) 35%,
    rgba(0,0,0,.30) 65%,
    rgba(0,0,0,.15) 100%
    );

}

.degree-title{

    font-size:40px;

    font-weight:800;

    color:#ffcc00;

}

.degree-meta{

    color:#ffffff;

    font-size:17px;

    font-weight:500;

    margin-top:10px;

}

.content-title{

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;

}

.degree-section p{

    color:#f3f3f3;

    font-size:17px;

    line-height:1.9;

    margin-bottom:25px;

}

.degree-section span{

    color:#ff9800;

    font-weight:700;

}

/* Tablet */

@media(max-width:991px){

.degree-section{

min-height:auto;

padding:70px 0;

background-position:70% center;

}

.degree-title{

font-size:30px;

}

.content-title{

font-size:28px;

}

.degree-section p{

font-size:16px;

}

}

/* Mobile */

@media(max-width:767px){

.degree-section{

padding:60px 20px;

background-position:75% center;

}

.overlay{

background:rgba(0,0,0,.78);

}

.degree-title{

font-size:24px;

line-height:1.4;

}

.degree-meta{

font-size:14px;

}

.content-title{

font-size:24px;

}

.degree-section p{

font-size:15px;

line-height:1.8;

}

}
/* part 3 */
.software-section{
    background:#16110d;
    padding:80px 0;
}

.section-title{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.software-card{

    background:linear-gradient(196deg,rgba(11,110,255,1),rgba(228,55,255,1));

    border-radius:8px;

    padding:18px 10px;

    text-align:center;

    height:100%;

    transition:.35s;

    border:1px solid rgba(255,255,255,.15);

}

.software-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(255,174,0,.30);

}

.software-card img{

    width:42px;

    height:42px;

    object-fit:contain;

    margin-bottom:12px;

}

.software-card h6{

    font-size:13px;

    font-weight:600;

    margin:0;

    color:#ececec;

    line-height:1.5;

}

@media(max-width:768px){

.section-title{

font-size:26px;

}

.software-card{

padding:15px 8px;

}

.software-card img{

width:36px;

height:36px;

}

.software-card h6{

font-size:12px;

}

}
/* part 4 */
.program-structure{

    background:#16110d;

    padding:70px 0 50px;

}

.program-title{

    color:#ffffff;

    font-size:34px;

    font-weight:700;

    position:relative;

    display:inline-block;

    padding-bottom:12px;

}

.program-title::after{

    content:"";

    width:80px;

    height:4px;

    background:#ffb400;

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    border-radius:30px;

}

.program-content{

    color:#d8d8d8;

    text-align:justify;

}

.program-content p{

    font-size:17px;

    line-height:2;

    margin-bottom:25px;

}

.program-content span{

    color:#ffb400;

    font-weight:600;

}

/* Tablet */

@media(max-width:991px){

.program-title{

font-size:30px;

}

.program-content p{

font-size:16px;

line-height:1.9;

}

}

/* Mobile */

@media(max-width:767px){

.program-structure{

padding:50px 0;

}

.program-title{

font-size:26px;

}

.program-content{

text-align:left;

}

.program-content p{

font-size:15px;

line-height:1.8;

}

}
/* part 5 */
/* .curriculum-table{

    background:#fff;

    border-radius:6px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.curriculum-table table{

    margin:0;

}

.curriculum-table thead th{

    background:#c91f27;

    color:#fff;

    border:1px solid #c91f27;

    font-size:14px;

    text-transform:uppercase;

    text-align:center;

    padding:14px;

}

.semester-head{

    width:120px;

}

.semester-box{

    background:#c91f27 !important;

    color:#fff;

    text-align:center;

    vertical-align:middle !important;

    width:120px;

}

.semester-box span{

    display:block;

    font-size:14px;

    letter-spacing:1px;

}

.semester-box h2{

    font-size:55px;

    font-weight:700;

    margin:5px 0 0;

    color:#fff;

}

.curriculum-table td{

    font-size:14px;

    padding:12px;

    border:1px solid #ddd;

    background:#fff;

}

.curriculum-table tbody tr:hover td{

    background:#fff8f3;

}

.curriculum-table tbody tr:hover .semester-box{

    background:#c91f27 !important;

} */
 .semester-table{
    background:#fff;
    border:1px solid #d9d9d9;
    font-size:14px;
}

.semester-table thead th{
    background:#c61f26;
    color:#fff;
    font-size:13px;
    font-weight:700;
    text-align:center;
    border:1px solid #b4181f;
    padding:10px;
}

.semester-table td{
    border:1px solid #e5e5e5;
    padding:10px 12px;
    vertical-align:middle;
    font-weight:500;
}

.semester{
    font-weight:700;
    text-align:center;
    width:70px;
    font-size:18px;
    color:#333;
    background:#fff;
}

.semester-table tbody tr:hover td{
    background:#fafafa;
}

.semester-table tbody tr:hover .semester{
    background:#fff;
}

@media(max-width:768px){

.semester-table{
    font-size:12px;
}

.semester-table td,
.semester-table th{
    padding:8px;
}

.semester{
    font-size:15px;
}

}
/* part 6 */
.parameter-section{
    background:#16110d;
}

.parameter-table{

    background:#fff;

    border:2px solid #d8d8d8;

    font-family:'Poppins',sans-serif;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.parameter-table thead th{

    background:#c91f27;

    color:#fff;

    font-size:16px;

    font-weight:700;

    text-transform:uppercase;

    text-align:center;

    padding:15px;

    border:1px solid #b61a21;

    letter-spacing:.5px;

}

.parameter-table tbody td{

    padding:18px;

    border:1px solid #d9d9d9;

    font-size:16px;

    vertical-align:middle;

}

.parameter-table tbody td:first-child{

    font-weight:700;

    width:38%;

}

.parameter-table tbody tr:hover{

    background:#fff8ef;

    transition:.3s;

}

/* Tablet */

@media(max-width:991px){

.parameter-table thead th{

font-size:15px;

}

.parameter-table tbody td{

font-size:15px;

padding:15px;

}

}

/* Mobile */

@media(max-width:767px){

.parameter-table thead th{

font-size:13px;

padding:12px;

}

.parameter-table tbody td{

font-size:13px;

padding:12px;

}

}
.table{

    --bs-table-bg:#11182d;
    --bs-table-color:#ffffff;

     /* Hover */
    --bs-table-hover-bg:#1a2442;
    --bs-table-hover-color:#ffffff;
}

/* Keep dark hover background and white text */
.semester-table tbody tr:hover td{
    background:#1a2544 !important;
    color:#ffffff !important;
}

/* Keep the semester column unchanged */
.semester-table tbody tr:hover .semester{
    background:#0d1428 !important;
    color:#00b8ff !important;
}

/* If you are using Bootstrap .table directly */
.table tbody tr:hover td{
    background:#1a2544 !important;
    color:#ffffff !important;
}

/* placement partner updated */
/*=========================================
        COMPANY LOGO SLIDER
=========================================*/

.company-slider{

    background:#050816;
    position:relative;
    overflow:hidden;
    padding:80px 0;

}

.company-slider::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:1px;

    background:linear-gradient(90deg,
    transparent,
    #ffb400,
    transparent);

}

.company-slider::after{

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:100%;
    height:1px;

    background:linear-gradient(90deg,
    transparent,
    #00bfff,
    transparent);

}

/*==============================
Heading
==============================*/

.section-subtitle{

    color:#00bfff;

    text-transform:uppercase;

    font-size:14px;

    letter-spacing:2px;

}

.section-title{

    color:#fff;

    font-size:40px;

    font-weight:700;

    margin-top:10px;

}

/*==============================
Wrapper
==============================*/

.logo-track-wrapper{

    overflow:hidden;

    position:relative;

}

/* Fade Effect */

.logo-track-wrapper::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:120px;

    height:100%;

    z-index:5;

    background:linear-gradient(
    90deg,
    #050816,
    transparent);

}

.logo-track-wrapper::after{

    content:"";

    position:absolute;

    right:0;

    top:0;

    width:120px;

    height:100%;

    z-index:5;

    background:linear-gradient(
    270deg,
    #050816,
    transparent);

}

/*==============================
Track
==============================*/

.logo-track{

    display:flex;

    width:max-content;

    gap:18px;

}

/*==============================
Cards
==============================*/

.logo-card{

    min-width:210px;

    height:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0d1326;

    color:#fff;

    font-weight:600;

    font-size:22px;

    text-transform:uppercase;

    border:1px solid rgba(255,180,0,.75);

    border-radius:8px;

    transition:.35s;

    flex-shrink:0;

    cursor:pointer;

}

.logo-card:hover{

    transform:translateY(-6px);

    border-color:#00bfff;

    color:#00bfff;

    box-shadow:

    0 0 18px rgba(0,191,255,.35),

    0 0 35px rgba(255,0,255,.15);

}

/*==============================
Animation
==============================*/

.left-scroll{

    animation:leftScroll 35s linear infinite;

}

.right-scroll{

    animation:rightScroll 35s linear infinite;

}

/* Pause */

.logo-track:hover{

    animation-play-state:paused;

}

/*==============================
Keyframes
==============================*/

@keyframes leftScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@keyframes rightScroll{

    from{

        transform:translateX(-50%);

    }

    to{

        transform:translateX(0);

    }

}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

.logo-card{

min-width:170px;

height:70px;

font-size:18px;

}

.section-title{

font-size:32px;

}

}

@media(max-width:768px){

.logo-card{

min-width:140px;

height:60px;

font-size:15px;

}

.logo-track{

gap:12px;

}

.logo-track-wrapper::before,
.logo-track-wrapper::after{

width:60px;

}

.section-title{

font-size:28px;

}

}

@media(max-width:576px){

.company-slider{

padding:60px 0;

}

.logo-card{

min-width:120px;

height:55px;

font-size:13px;

}

.section-title{

font-size:24px;

}

}

.course-body h5{
    color:yellow;
}

/* navbar height reduce */
.navbar{
    min-height:80px !important;
    padding:8px 0 !important;
}

.navbar-brand img{
    height:60px !important;
}

.navbar-nav .nav-link{
    padding:8px 18px !important;
}
.navbar-brand{
    padding:0;
    margin:0;
}

.navbar-brand img{
    height:80px !important;
    width:auto !important;
    display:block !important;
}

/*============================

Floating Contact

=============================*/


.floating-contact{

    position:fixed;

    right:40px;

    bottom:120px;

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:18px;

}


/*============================

Neon Button

=============================*/

.neon-btn{

    position:relative;

    width:72px;

    height:72px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    text-decoration:none;

    backdrop-filter:blur(15px);

    background:rgba(25,25,25,.55);

    border:2px solid rgba(255,255,255,.15);

    transition:.45s;

    animation:borderGlow 5s linear infinite;

}


/* glossy layer */

.neon-btn::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    background:linear-gradient(

    130deg,

    rgba(255,255,255,.35),

    rgba(255,255,255,.05),

    rgba(255,255,255,.18)

    );

    opacity:.35;

}


/* top shine */

.neon-btn::after{

    content:"";

    position:absolute;

    top:6px;

    left:8px;

    width:65%;

    height:18%;

    border-radius:50px;

    background:rgba(255,255,255,.35);

    filter:blur(5px);

}


/*============================

Icon

=============================*/

.neon-btn i{

    position:relative;

    z-index:10;

    font-size:34px;

    color:#fff;

    animation:iconGlow 3s linear infinite;

}


/*============================

Hover

=============================*/

.neon-btn:hover{

    transform:translateY(-8px) scale(1.08);

}


.neon-btn:hover i{

    transform:scale(1.15);

}


/*============================

Pulse Ring

=============================*/

.pulse{

    position:absolute;

    width:100%;

    height:100%;

    border-radius:22px;

    border:2px solid #ff00ff;

    animation:pulseRing 2s infinite;

}


/*============================

Call Color

=============================*/

.call-btn{

    box-shadow:

    0 0 12px #ff0055,

    0 0 25px #8a2eff,

    0 0 45px #00d4ff;

}


/*============================

Whatsapp

=============================*/

.whatsapp-btn{

    box-shadow:

    0 0 12px #00ff99,

    0 0 25px #00d4ff,

    0 0 45px #ff00ff;

}


/*============================

Icon Glow Animation

=============================*/

@keyframes iconGlow{

0%{

color:#ff00cc;

text-shadow:

0 0 10px #ff00cc,

0 0 25px #ff00cc,

0 0 40px #ff00cc;

}

25%{

color:#7d5cff;

text-shadow:

0 0 10px #7d5cff,

0 0 25px #7d5cff,

0 0 40px #7d5cff;

}

50%{

color:#00d4ff;

text-shadow:

0 0 10px #00d4ff,

0 0 25px #00d4ff,

0 0 40px #00d4ff;

}

75%{

color:#ff2d55;

text-shadow:

0 0 10px #ff2d55,

0 0 25px #ff2d55,

0 0 40px #ff2d55;

}

100%{

color:#ff00cc;

text-shadow:

0 0 10px #ff00cc,

0 0 25px #ff00cc,

0 0 40px #ff00cc;

}

}


/*============================

Border Glow

=============================*/

@keyframes borderGlow{

0%{

box-shadow:

0 0 8px #ff00cc,

0 0 18px #ff00cc,

0 0 35px #ff00cc;

}

25%{

box-shadow:

0 0 8px #7d5cff,

0 0 18px #7d5cff,

0 0 35px #7d5cff;

}

50%{

box-shadow:

0 0 8px #00d4ff,

0 0 18px #00d4ff,

0 0 35px #00d4ff;

}

75%{

box-shadow:

0 0 8px #ff2d55,

0 0 18px #ff2d55,

0 0 35px #ff2d55;

}

100%{

box-shadow:

0 0 8px #ff00cc,

0 0 18px #ff00cc,

0 0 35px #ff00cc;

}

}


/*============================

Pulse

=============================*/

@keyframes pulseRing{

0%{

transform:scale(.9);

opacity:1;

}

70%{

transform:scale(1.45);

opacity:0;

}

100%{

transform:scale(1.45);

opacity:0;

}

}


/*============================

Responsive

=============================*/

@media(max-width:768px){

.floating-contact{

right:15px;

bottom:18px;

gap:14px;

}

.neon-btn{

width:62px;

height:62px;

border-radius:18px;

}

.neon-btn i{

font-size:28px;

}

.floating-contact{

    position:fixed;

    right:40px;

    bottom:120px;

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:18px;

}

}

/*Footer Special Effects*/
.footer-area{
    background:#070b18;
}

.footer-card{
    background:#151928;
    border:1px solid rgba(255,255,255,.05);
    border-radius:22px;
    padding:30px;
    transition:.4s;
    height:100%;
}

.footer-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(255,0,150,.15);
}

/* Heading Glow */

.footer-title{

    font-size:24px;

    font-weight:700;

    color:#ff0aa5;

    margin-bottom:25px;

    position:relative;

    display:inline-block;

    text-shadow:
    0 0 1px #ff0aa5,
    0 0 10px #ff0aa5,
    0 0 20px rgba(255,0,170,.7);

}

.footer-title::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:55px;

height:3px;

background:#ff0aa5;

border-radius:50px;

box-shadow:0 0 10px #ff0aa5;

}

/* paragraph */

.footer-card p{

color:#d2d2d2;

line-height:1.8;

}

/* Links */

.footer-links{

list-style:none;

padding:0;

margin:0;

}

.footer-links li{

margin-bottom:16px;

}

.footer-links a{

text-decoration:none;

color:#d5d5d5;

font-weight:500;

transition:.35s;

display:inline-block;

position:relative;

}

.footer-links a::before{

content:"";

position:absolute;

left:0;

bottom:-4px;

height:2px;

width:0;

background:#ff00aa;

transition:.35s;

}

.footer-links a:hover{

color:#ff00aa;

padding-left:10px;

text-shadow:0 0 10px #ff00aa;

}

.footer-links a:hover::before{

width:100%;

}

/* Social */

.social-icons{

display:flex;

gap:15px;

}

.social-icons a{

width:48px;

height:48px;

border-radius:50%;

background:#1b2136;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:20px;

transition:.4s;

text-decoration:none;

}

.social-icons a:hover{

background:#ff00aa;

transform:translateY(-6px);

box-shadow:0 0 20px #ff00aa;

}

/* Map */

iframe{

width:100%;

height:170px;

border-radius:12px;

border:none;

}

.map-btn{

display:block;

margin-top:18px;

text-align:center;

padding:10px;

background:linear-gradient(90deg,#7b2cff,#ff00aa);

border-radius:50px;

color:#fff;

text-decoration:none;

transition:.4s;

}

.map-btn:hover{

transform:scale(1.05);

color:white;

}

/* Contact */

.contact-item{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

}

.contact-item i{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

background:#1d2238;

border-radius:50%;

font-size:20px;

color:#fff;

}

.contact-item a{

color:#d5d5d5;

text-decoration:none;

transition:.3s;

}

.contact-item a:hover{

color:#ff00aa;

}

/* Subscribe */

.subscribe-box{

display:flex;

overflow:hidden;

border-radius:50px;

margin-top:25px;

background:#20263d;

}

.subscribe-box input{

border:none;

background:none;

color:white;

padding:15px;

width:100%;

outline:none;

}

.subscribe-box button{

border:none;

padding:0 28px;

background:linear-gradient(90deg,#7b2cff,#ff00aa);

color:white;

transition:.4s;

}

.subscribe-box button:hover{

filter:brightness(120%);

}

@media(max-width:991px){

.footer-card{

margin-bottom:20px;

}

.footer-title{

font-size:24px;

}

}