 
:root {
            --primary-color: #0d1b2a;
            --secondary-color: #1b263b;
            --accent-color: #415a77;
            --text-color: #e0e1dd;
            --light-accent: #778da9;
        }
        body { background-color: var(--primary-color); color: var(--text-color); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        .navbar { background-color: var(--secondary-color) !important; }
        .navbar-brand, .nav-link { color: var(--text-color) !important; }
        .nav-link:hover { color: var(--light-accent) !important; }
        .hero { height: 70vh; min-height: 500px; position: relative; overflow: hidden; }
        .carousel-item { height: 70vh; background-size: cover; background-position: center; position: relative; }
        .carousel-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(13,27,42,0.8), rgba(65,90,119,0.6)); }
        .carousel-caption { background: rgba(27,38,59,0.9); border-radius: 15px; padding: 2rem; backdrop-filter: blur(10px); }
        .card { background-color: var(--secondary-color); border: 1px solid var(--accent-color); color: var(--text-color); }
        .card-header { background-color: var(--accent-color); color: var(--text-color); }
        .btn-primary { background-color: var(--accent-color); border-color: var(--accent-color); }
        .btn-primary:hover { background-color: var(--light-accent); border-color: var(--light-accent); }
        .section-padding { padding: 80px 0; }
        .stats { background-color: var(--accent-color); }
        .stats .card-body { text-align: center; font-size: 2rem; font-weight: bold; color: var(--text-color); }
        footer { background-color: var(--secondary-color); }
        .carousel-control-prev, .carousel-control-next { width: 5%; filter: invert(1); }
        .course-card { transition: transform 0.3s; }
        .course-card:hover { transform: translateY(-10px); }

   .navbar-brand img{
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.navbar-brand span{
    font-size: 18px;
    white-space: nowrap;
}
.brand-text h6 {
    font-size: 15px;
    line-height: 1.2;
}

.brand-text small {
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .navbar-brand img {
        width: 45px;
        height: 45px;
    }

    .brand-text h6 {
        font-size: 12px;
    }

    .brand-text small {
        font-size: 10px;
    }
}
       
 /* Gallery */
   .gallery-img { height: 200px; object-fit: cover; transition: transform 0.3s; border-radius: 8px; }
        .gallery-item:hover .gallery-img { transform: scale(1.05); }


        .testimonial { background: rgba(27,38,59,0.9); border-radius: 15px; padding: 1.5rem; border-left: 4px solid var(--accent-color); }

/* Why Choose Us - Dark Theme */
.feature-card {
    background: #212529; /* Matches Bootstrap bg-dark */
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13,110,253,0.25);
}

/* Icon Style */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd, #4ea8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.icon-box i {
    font-size: 32px;
    color: #fff;
}




/* Leadership Section */
.leader-card {
    background: #212529;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13,110,253,0.25);
}

.leader-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
   
    padding: 4px;
    background: #212529;
}

.signature {
    width: 130px;
    filter: brightness(0) invert(1); /* Makes dark signature visible on dark bg */
}


/* Admission Section */
#admissions_criteria{
    background: linear-gradient(135deg,#021b35,#012244);
    padding-top: 60px;
}

/* Section Title */
.section-title{
    color: #fff;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Cards */
.criteria-card{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.criteria-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Card Header */
.criteria-card .card-header{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    border: none;
}

/* Card Body */
.criteria-card .p-4{
    background: transparent;
}

/* List */
.criteria-list{
    padding-left: 0;
    margin-bottom: 0;
}

.criteria-list li{
    list-style: none;
    color: #f1f1f1;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
}

.criteria-list li:last-child{
    border-bottom: none;
}

/* Required Documents */
.documents-card{
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.documents-list li{
    color: #f1f1f1;
    padding: 10px 0;
    font-size: 15px;
}

/* Mobile */
@media(max-width:768px){

    .criteria-card .card-header{
        font-size: 18px;
    }

    .criteria-list li,
    .documents-list li{
        font-size: 14px;
    }
}

/* Admission Form Section */
#admission{
    background: linear-gradient(135deg,#021b35,#012244);
    padding: 80px 0;
}

/* Main Card */
.admission-card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* Header */
.admission-header{
    background: linear-gradient(135deg,#0d6efd,#0a58ca);
    padding: 35px 20px;
    text-align: center;
}

.admission-header h3{
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.admission-header p{
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* Form Body */
.admission-body{
    padding: 40px;
}

/* Labels */
.admission-body .form-label{
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Inputs */
.admission-body .form-control,
.admission-body .form-select{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    height: 52px;
    border-radius: 14px;
    padding: 12px 15px;
    transition: 0.3s ease;
}

/* Textarea */
.admission-body textarea.form-control{
    height: auto;
}

/* Placeholder */
.admission-body .form-control::placeholder{
    color: rgba(255,255,255,0.6);
}

/* Focus */
.admission-body .form-control:focus,
.admission-body .form-select:focus{
    background: rgba(255,255,255,0.12);
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(13,110,253,0.4);
    color: #fff;
}

/* Dropdown Options */
.admission-body select option{
    color: #000;
}

/* File Upload */
.admission-body input[type=file]{
   
    
}




/* Digital Notice Board & Timer */
.notice-board-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    overflow: hidden;
}

.notice-marquee {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.notice-marquee ul {
    position: absolute;
    width: 100%;
    animation: scrollNotice 15s linear infinite;
}

.notice-marquee ul:hover {
    animation-play-state: paused;
}

@keyframes scrollNotice {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.time-box {
    background: var(--accent-color);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
}

.time-box span {
    font-size: 1.5rem;
    font-weight: bold;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .notice-board-container .border-end {
        border-right: none !important;
        border-bottom: 1px solid var(--accent-color);
        padding-bottom: 20px;
    }
}