*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f7f8fc;
}

.top-header{
    width:100%;
    background:#fff;
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ddd;
}

.logo h1{
    color:#002b7f;
    font-size:42px;
    font-weight:bold;
}

.logo span{
    color:#ff3b30;
}

.logo p{
    font-size:14px;
    color:#555;
}

.search-box{
    display:flex;
    width:50%;
}

.search-box input{
    flex:1;
    padding:14px;
    border:1px solid #ddd;
    outline:none;
}

.search-box select{
    width:100px;
    border:1px solid #ddd;
}

.search-box button{
    width:120px;
    border:none;
    background:#0057ff;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.header-buttons{
    display:flex;
    gap:15px;
}

.login-btn{
    padding:12px 30px;
    border:2px solid #0057ff;
    background:white;
    color:#0057ff;
    border-radius:6px;
    cursor:pointer;
}

.register-btn{
    padding:12px 30px;
    border:none;
    background:#0057ff;
    color:white;
    border-radius:6px;
    cursor:pointer;
}
.logo img{
    height:70px;
    width:auto;
    display:block;
}
/* NAVBAR */

.navbar{
    background:#001a57;
    width:100%;
}

.navbar ul{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    padding:16px 20px;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a i{
    margin-right:6px;
}

.navbar ul li a:hover{
    color:#4da3ff;
}

.navbar{
    background:#001a57;
    width:100%;
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

.logo{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo p{
    margin-top:5px;
    font-size:14px;
    color:#555;
}



.hero-buttons{
    margin-top:25px;
}

.start-btn{
    background:#0d5cff;
    color:#fff;
    border:none;
    padding:14px 25px;
    border-radius:6px;
    margin-right:10px;
}

.explore-btn{
    background:#fff;
    border:2px solid #0d5cff;
    color:#0d5cff;
    padding:12px 25px;
    border-radius:6px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:30px;
}

.stat-box{
    background:#f7f9ff;
    border:1px solid #e5ecff;
    border-radius:12px;
    padding:15px 10px;
    text-align:center;
    transition:0.3s;
}

.stat-box:hover{
    transform:translateY(-4px);
    box-shadow:0 5px 15px rgba(0,87,255,0.12);
}

.stat-box i{
    font-size:24px;
    color:#0057ff;
    margin-bottom:10px;
}

.stat-box h3{
    font-size:22px;
    color:#0b2d67;
    margin-bottom:5px;
}

.stat-box span{
    font-size:13px;
    color:#666;
}

.hero-right{
    width:350px;
    background:#fff;
    padding:25px;
    border-radius:10px;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:20px;
}


.quick-grid div{
    border-radius:12px;
    height:105px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-weight:600;
    transition:.3s;
    cursor:pointer;
}

/* Different Colors */

.quick-grid div:nth-child(1){
    background:#eef4ff;
    color:#2563eb;
}

.quick-grid div:nth-child(2){
    background:#eefbf3;
    color:#16a34a;
}

.quick-grid div:nth-child(3){
    background:#f7f0ff;
    color:#9333ea;
}

.quick-grid div:nth-child(4){
    background:#fff7ed;
    color:#ea580c;
}

.quick-grid div:nth-child(5){
    background:#fff1f2;
    color:#e11d48;
}

.quick-grid div:nth-child(6){
    background:#ecfeff;
    color:#0891b2;
}

.quick-grid div:nth-child(7){
    background:#fef2f2;
    color:#dc2626;
}

.quick-grid div:nth-child(8){
    background:#eff6ff;
    color:#2563eb;
}

.quick-grid div:nth-child(9){
    background:#f8fafc;
    color:#334155;
}

.quick-grid div:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}



.quick-grid i{
    font-size:30px;
    margin-bottom:10px;
    display:block;
}

.hero{
    width:95%;
    margin:20px auto;
    display:flex;
    gap:20px;
}

.hero-left{
    width:75%;
    background:#fff;
    border-radius:12px;
    padding:35px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.hero-text{
    width:48%;
}

.hero-image{
    width:52%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
   width:100%;
    max-width:580px;
    height:auto;
}

.hero-right{
    width:25%;
    background:#fff;
    padding:25px;
    border-radius:12px;
}



.hero-left h1{
    font-size:32px;
    line-height:1.3;
    color:#0b2d67;
    margin-bottom:15px;
}

.hero-left h2{
    font-size:18px;
    color:#1f4fa8;
}

.start-btn,
.explore-btn{
    font-size:16px;
    font-weight:600;
    transition:0.3s;
    cursor:pointer;
}

.start-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(13,92,255,0.3);
}

.explore-btn:hover{
    background:#0d5cff;
    color:#fff;
}

.latest-updates{
    width:95%;
    margin:15px auto;
    background:#fff;
    border-radius:10px;
    display:flex;
    align-items:center;
    height:55px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.update-tag{
    background:#ff3b30;
    color:#fff;
    padding:12px 20px;
    font-weight:600;
    white-space:nowrap;
}

.latest-updates marquee{
    flex:1;
    padding:0 15px;
    font-size:14px;
}

.view-all{
    padding:0 20px;
    text-decoration:none;
    color:#ff3b30;
    font-weight:600;
}

.content-section{
    width:95%;
    margin:20px auto;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:20px;
}

.content-box{
    flex:1;
    background:#fff;
    border-radius:10px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);

    height:auto;      /* add */
    min-height:0;     /* add */
}
.box-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.box-header a{
    text-decoration:none;
    color:#0057ff;
}

.test-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.test-card{
    border:1px solid #eee;
    padding:15px;
    border-radius:10px;
    text-align:center;
}
.test-card{
    padding:12px;
}

.test-card a{
    display:inline-block;
    margin-top:10px;
    color:#0057ff;
    text-decoration:none;
}

.material-list,
.job-list{
    list-style:none;
}

.material-list li,
.job-list li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}


.mock-title{
    margin-top:25px;
    margin-bottom:12px;
    font-size:18px;
    font-weight:600;
}

.mock-table{
    width:100%;
    border-collapse:collapse;
    font-size:13px;
}

.mock-table th,
.mock-table td{
    padding:8px;
    border-bottom:1px solid #eee;
    text-align:left;
}

.mock-table th{
    background:#f7f8fc;
}

.mock-table a{
    color:#0057ff;
    text-decoration:none;
    font-weight:600;
}

.box-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}
.second-row{
    width:95%;
    margin:20px auto;
    display:grid;
    grid-template-columns:2fr 1.3fr 1fr;
    gap:20px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.category-card{
    border:1px solid #eee;
    padding:12px;
     min-height:90px;
    border-radius:8px;
}


.read-btn{
    width:100%;
    padding:10px;
    margin-top:15px;
    border:none;
    background:#0057ff;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}
.feature-strip{
    width:95%;
    margin:20px auto;
    background:#fff;
    border-radius:10px;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.feature-item i{
    font-size:28px;
    color:#0057ff;
}

.feature-item h4{
    font-size:14px;
    margin-bottom:4px;
}

.feature-item p{
    font-size:12px;
    color:#666;
}
.newsletter{
    width:95%;
    margin:20px auto;
    background:#002b7f;
    color:white;
    border-radius:12px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.newsletter-left{
    width:35%;
}

.newsletter-left h2{
    margin-bottom:10px;
    font-size:28px;
}

.newsletter-left p{
    font-size:14px;
    color:#d7e3ff;
}

.newsletter-center{
    width:45%;
    display:flex;
}

.newsletter-center input{
    flex:1;
    padding:14px;
    border:none;
    outline:none;
    border-radius:6px 0 0 6px;
}

.newsletter-center button{
    padding:14px 25px;
    border:none;
    background:#0d5cff;
    color:white;
    cursor:pointer;
    border-radius:0 6px 6px 0;
    font-weight:600;
}

.newsletter-right i{
    font-size:70px;
    color:#4da3ff;
}

.footer{
    background:#012F52;
    color:#fff;
    margin-top:30px;
}

.footer-container{
    width:95%;
    margin:auto;
    padding:50px 0;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1fr 1.5fr;
    gap:25px;
}

.footer-col h2{
    margin-bottom:15px;
}

.footer-col h3{
    margin-bottom:15px;
    font-size:18px;
}

.footer-col p{
    color:#cfd8ff;
    font-size:14px;
    line-height:1.8;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:#cfd8ff;
    text-decoration:none;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#4da3ff;
}

.footer-bottom{
    text-align:center;
    padding:18px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#cfd8ff;
    font-size:14px;
}



.category-card:nth-child(1) i{
    color:#2563eb;
}

.category-card:nth-child(2) i{
    color:#2563eb;
}

.category-card:nth-child(3) i{
    color:#ef4444;
}

.category-card:nth-child(4) i{
    color:#f59e0b;
}

.category-card:nth-child(5) i{
    color:#22c55e;
}

.category-card:nth-child(6) i{
    color:#10b981;
}
.category-card{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.category-content h4{
    font-size:15px;
    margin-bottom:6px;
    line-height:1.2;
}

.category-content p{
    font-size:12px;
    color:#666;
    line-height:1.4;
}
.category-card{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:18px;
    border:1px solid #e8e8e8;
    border-radius:10px;
    background:#fff;
}

.category-card i{
    font-size:30px;
    margin-top:4px;
}

.category-content{
    display:flex;
    flex-direction:column;
}

.category-content h4{
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

.category-content p{
    margin:0;
    font-size:14px;
    color:#666;
    line-height:1.5;
}

/* Icon Colors */

.category-card:nth-child(1) i{color:#2563eb;}
.category-card:nth-child(2) i{color:#2563eb;}
.category-card:nth-child(3) i{color:#ef4444;}
.category-card:nth-child(4) i{color:#f59e0b;}
.category-card:nth-child(5) i{color:#22c55e;}
.category-card:nth-child(6) i{color:#10b981;}
.category-card:nth-child(7) i{color:#14b8a6;}
.category-card:nth-child(8) i{color:#f59e0b;}
.category-card:nth-child(9) i{color:#2563eb;}

    /* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width:768px){

    .top-header{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    .header-buttons{
    order:-1;
    margin-bottom:15px;
}

.search-box{
    order:2;
}

.logo{
    order:1;
}
    .search-box{
        width:100%;
        flex-direction:column;
    }

    .search-box input,
    .search-box select,
    .search-box button{
        width:100%;
        height:45px;
    }

    .header-buttons{
        width:100%;
        justify-content:center;
    }

    /* Navbar */

    .navbar ul{
        flex-wrap:wrap;
        gap:10px;
        padding:12px;
    }

    .navbar ul li{
        width:48%;
        text-align:center;
    }

    /* Hero */

    .hero{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-content{
        flex-direction:column;
    }

    .hero-text,
    .hero-image{
        width:100%;
    }

    .hero-left h1{
        font-size:26px;
    }

    /* Stats */

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    /* Quick Access */

    .quick-grid{
        grid-template-columns:repeat(3,1fr);
    }

    /* Content Section */

    .content-section{
        grid-template-columns:1fr;
    }

    /* Second Row */

    .second-row{
        grid-template-columns:1fr;
    }

    /* Category */

    .category-grid{
        grid-template-columns:1fr;
    }

    /* Feature */

    .feature-strip{
        grid-template-columns:1fr;
    }

    /* Newsletter */

    .newsletter{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .newsletter-left,
    .newsletter-center{
        width:100%;
    }

    .newsletter-center{
        flex-direction:column;
        gap:10px;
    }

    .newsletter-center input,
    .newsletter-center button{
        width:100%;
        border-radius:6px;
    }

    /* Footer */

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    /* Tables */

    .mock-table{
        display:block;
        overflow-x:auto;
    }

}
/* ===========================
   TABLET + MOBILE
=========================== */

@media screen and (max-width:992px){

    .hero{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-content{
        flex-direction:column;
    }

    .hero-text,
    .hero-image{
        width:100%;
        text-align:center;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .content-section{
        grid-template-columns:1fr;
    }

    .second-row{
        grid-template-columns:1fr;
    }

    .feature-strip{
        grid-template-columns:repeat(2,1fr);
    }

    .newsletter{
        flex-direction:column;
        gap:20px;
    }

    .newsletter-left,
    .newsletter-center{
        width:100%;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

}


/* ===========================
   MOBILE
=========================== */

@media screen and (max-width:768px){

    .top-header{
        flex-direction:column;
        padding:15px;
        gap:15px;
    }

    .search-box{
        width:100%;
        flex-direction:column;
        gap:10px;
    }

    .search-box input,
    .search-box select,
    .search-box button{
        width:100%;
        height:45px;
    }

    .header-buttons{
        width:100%;
        justify-content:center;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .navbar ul li{
        width:45%;
        text-align:center;
    }

    .hero-left{
        padding:20px;
    }

    .hero-left h1{
        font-size:24px;
    }

    .hero-left h2{
        font-size:16px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .start-btn,
    .explore-btn{
        width:100%;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .quick-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .test-cards{
        grid-template-columns:1fr;
    }

    .category-grid{
        grid-template-columns:1fr;
    }

    .feature-strip{
        grid-template-columns:1fr;
    }

    .newsletter-center{
        flex-direction:column;
    }

    .newsletter-center input,
    .newsletter-center button{
        width:100%;
        border-radius:6px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .mock-table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }




.menu-toggle{
    display:block;
    width:100%;
    padding:15px;
    background:#001a57;
    color:white;
    border:none;
    font-size:18px;
    font-weight:bold;
}

.navbar{
    display:none;
}

.navbar.active{
    display:block;
}

.navbar ul{
    flex-direction:column;
    gap:0;
}

.navbar ul li{
    width:100%;
    text-align:left;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.navbar ul li a{
    display:block;
    padding:12px 20px;
}

    .menu-toggle{
        order: -3;
        display:block;
        width:100%;
    }

    .top-header{
        display:flex;
        flex-direction:column;
    }

    .header-buttons{
        order:-2;
    }

    .logo{
        order:-1;
    }

    .search-box{
        order:1;
    }

.registration-section{
    width:95%;
    margin:30px auto;
    display:flex;
    gap:25px;
}

.registration-left{
    width:65%;
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.registration-right{
    width:35%;
    background:linear-gradient(135deg,#0d47a1,#1565c0);
    color:#fff;
    padding:40px 30px;
    border-radius:20px;
}
.registration-left h2{
    color:#002b7f;
    margin-bottom:10px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.form-group input{
    width:100%;
    height:55px;
    padding:0 18px;
    border:2px solid #e5e7eb;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus{
    border-color:#0d5cff;
    box-shadow:0 0 0 4px rgba(13,92,255,.15);
    outline:none;
}

.form-buttons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.register-now{
    width:100%;
    height:55px;
    background:#0d5cff;
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}
.cancel-btn{
    background:#f3f3f3;
    border:none;
    padding:14px 25px;
    border-radius:6px;
    cursor:pointer;
}

.benefit-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    margin-top:12px;

    border-radius:10px;
   
    background:rgba(255,255,255,.15);
    color:#fff;
    backdrop-filter:blur(10px);

}

.benefit-box i{
    color:#0057ff;
    font-size:22px;
}


.registration-section{
    flex-direction:column;
}

.registration-left,
.registration-right{
    width:100%;
}


} 
.exam-list-section{
    width:95%;
    margin:30px auto;
}

.section-title{
    text-align:center;
    margin-bottom:25px;
}

.section-title h2{
    color:#002b7f;
    margin-bottom:8px;
}

.section-title p{
    color:#666;
}

.exam-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.exam-item{
    background:#fff;
    padding:15px 18px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.exam-item:hover{
    transform:translateY(-4px);
}

.exam-item i{
    color:#e53935;
    margin-right:10px;
    font-size:18px;
}

@media(max-width:768px){

    .exam-grid{
        grid-template-columns:1fr;
    }

}
.exam-list-section{
    width:95%;
    margin:30px auto;
}

.section-title{
    text-align:center;
    margin-bottom:25px;
}

.section-title h2{
    color:#002b7f;
    margin-bottom:8px;
}

.section-title p{
    color:#666;
}

.exam-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.exam-item{
    background:#fff;
    padding:15px 18px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.exam-item:hover{
    transform:translateY(-4px);
}

.exam-item i{
    color:#e53935;
    margin-right:10px;
    font-size:18px;
}

@media(max-width:768px){

    .exam-grid{
        grid-template-columns:1fr;
    }

}

.exam-item i{
    color:#2563eb;
    font-size:24px;
    margin-right:12px;
}

.exam-item:hover i{
    color:#0f172a;
    transform:scale(1.15);
    transition:0.3s;
}
.exam-item{
cursor:pointer;
transition:0.3s;
}

.exam-item:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(37,99,235,.2);
}
.logo-box{
text-align:center;
margin-top:20px;
margin-bottom:20px;
}

.logo-box img{
width:180px;
height:auto;
}