:root{
    --maroon:#7A001E;
    --dark-maroon:#5A0016;
    --light:#f8f9fa;
    --text:#333;
}

.top-bar{
    background:var(--maroon);
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-link{
    color:#fff;
    text-decoration:none;
    margin-right:15px;
}

.top-link:hover{
    color:#f8f9fa;
}

.navbar{
    transition:.3s;
    padding:12px 0;
}

.logo{
    width:55px;
    height:55px;
    object-fit:contain;
}

.brand-title{
    color:var(--maroon);
    font-weight:700;
    line-height:1.1;
}

.brand-subtitle{
    color:#777;
    font-size:12px;
}

.nav-link{
    font-weight:600;
    margin-left:10px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--maroon)!important;
}

.btn-maroon{
    background:var(--maroon);
    color:#fff;
    border-radius:30px;
    padding:10px 24px;
    font-weight:600;
}

.btn-maroon:hover{
    background:var(--dark-maroon);
    color:#fff;
}
.hero{

    position:relative;

    background:url('../images/about1.jpg') center center/cover no-repeat;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.60)
    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-title{

    color:#fff;

    font-size:56px;

    font-weight:800;

    line-height:1.2;

}

.hero-title span{

    color:#ffd166;

}

.hero-text{

    color:#f2f2f2;

    font-size:18px;

    line-height:1.8;

    max-width:650px;

}

.hero-badge{

    background:#ffffff22;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    display:inline-block;

    backdrop-filter:blur(5px);

}

.hero-buttons .btn{

    padding:14px 30px;

}

.hero-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.hero-card h4{

    color:var(--maroon);

    margin-bottom:30px;

}

.service-item{

    display:flex;

    gap:18px;

    margin-bottom:25px;

    align-items:center;

}

.service-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--maroon);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.service-item h6{

    margin-bottom:4px;

    font-weight:700;

}
/* ===========================
   ABOUT SECTION
=========================== */

.about-section{

    background:#ffffff;

}

.section-badge{

    display:inline-block;

    background:#f3e7eb;

    color:var(--maroon);

    padding:8px 18px;

    border-radius:25px;

    font-weight:600;

}

.section-heading{

    font-size:20px;

    font-weight:800;

    color:#222;

    line-height:1.3;

}

.about-image img{

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.feature-box{

    background:#fff;

    border-radius:15px;

    text-align:center;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    font-size:34px;

    color:var(--maroon);

    margin-bottom:15px;

}

.feature-box h6{

    font-weight:700;

}

.counter-box{

    background:#7A001E;

    color:#fff;

    border-radius:18px;

    padding:30px 20px;

}

.counter-box h2{

    font-size:42px;

    font-weight:800;

}

.counter-box p{

    margin:0;

    opacity:.9;

}
/* ==========================
   SERVICES
========================== */

.services-section{

    background:#f8f9fa;

}

.section-subtitle{

    max-width:720px;

    margin:auto;

    color:#666;

}

.service-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:35px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.service-card::before{

    content:"";

    position:absolute;

    right:-20px;

    bottom:-20px;

    width:180px;

    height:180px;

    opacity:.05;

    background-size:contain;

    background-repeat:no-repeat;

}

.electrical-card::before{

    background-image:url('../images/NLEIlogo.jpg');

}

.gem-card::before{

    background-image:url('../images/gemlogo.jpg');

}

.institute-card::before{

    background-image:url('../images/PROF_logo.jpg');

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--maroon);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}

.service-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.service-list{

    list-style:none;

    padding:0;

    margin-top:20px;

}

.service-list li{

    padding:8px 0;

    border-bottom:1px solid #eee;

}

.service-list li:last-child{

    border:none;

}

.service-list li::before{

    content:"✔";

    color:var(--maroon);

    font-weight:bold;

    margin-right:10px;

}
/* ===============================
   ELECTRICAL
================================ */

.electrical-section{

    background:#ffffff;

}

.check-list{

    list-style:none;

    padding:0;

}

.check-list li{

    margin-bottom:15px;

    position:relative;

    padding-left:35px;

}

.check-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:24px;

    height:24px;

    background:var(--maroon);

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:13px;

}

.mini-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.mini-card:hover{

    transform:translateY(-8px);

}

.mini-card i{

    font-size:40px;

    color:var(--maroon);

    margin-bottom:20px;

}

.mini-card h5{

    font-weight:700;

    margin-bottom:15px;

}
/* ===========================
   GEMIRA
=========================== */

.gemira-section{

    background:#faf7f3;

}

.gem-card-small{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    border-top:4px solid #caa343;

}

.gem-card-small:hover{

    transform:translateY(-8px);

}

.gem-card-small i{

    font-size:42px;

    color:#caa343;

    margin-bottom:20px;

}

.gem-card-small h5{

    font-weight:700;

    margin-bottom:15px;

}
/* ===========================
   PROFESSIONAL INSTITUTE
=========================== */

.institute-section{

    background:#ffffff;

}

.course-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.course-card:hover{

    transform:translateY(-8px);

}

.course-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--maroon);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.course-card h4{

    margin-bottom:20px;

    font-weight:700;

}

.course-card ul{

    padding-left:20px;

}

.course-card li{

    margin-bottom:10px;

}

.two-column-list{

    columns:2;

}

.ongoing-section{

    background:#f8f9fa;

    padding:40px;

    border-radius:20px;

}

.ongoing-item{

    background:#fff;

    border-left:5px solid var(--maroon);

    padding:18px;

    border-radius:12px;

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}
/* ===============================
   REGISTRATION
================================ */

.register-section{

    background:#f8f9fa;

}

.registration-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.registration-card iframe{

    width:100%;

    height:900px;

    border:0;

}

.register-features{

    margin-top:20px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-weight:600;

}

.feature-item i{

    color:var(--maroon);

    font-size:18px;

}
/* ===========================
   CONTACT
=========================== */

.contact-section{

    background:#ffffff;

}

.contact-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

}

.contact-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}

.contact-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--maroon);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.contact-icon i{

    font-size:20px;

}

.contact-item h6{

    font-weight:700;

}

.contact-item p{

    margin:0;

}

.contact-item a{

    color:#333;

    text-decoration:none;

}

.contact-item a:hover{

    color:var(--maroon);

}

.map-card{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.map-card iframe{

    width:100%;

    height:100%;

    min-height:520px;

    border:0;

}

/* Floating WhatsApp */

.whatsapp-btn{

    position:fixed;

    right:20px;

    bottom:20px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

    color:#fff;

}
/* ===========================
   FOOTER
=========================== */

.footer{

    background:#151515;

    color:#ddd;

    padding:70px 0 25px;

}

.footer-logo{

    width:70px;

}

.footer h4,
.footer h5{

    color:#fff;

    margin-bottom:20px;

}

.footer p{

    color:#bdbdbd;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#333;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-right:10px;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--maroon);

}

.footer-bottom{

    margin-top:25px;

    font-size:14px;

}
/* =============================
   MODALS
============================= */

.modal-content{

border-radius:20px;

overflow:hidden;

}

.modal-header{

background:var(--maroon);

color:#fff;

}

.modal-header .btn-close{

filter:invert(1);

}

.modal-body{

padding:35px;

}

.modal-list{

padding-left:20px;

}

.modal-list li{

margin-bottom:15px;

font-size:17px;

}