:root{
    --primary:#0B5ED7;
    --dark:#081B4B;
    --light:#F5F8FF;
}

body{
    font-family:Inter,sans-serif;
    overflow-x:hidden;
}

/* Top Bar */

.top-bar{
    background:var(--dark);
    color:#fff;
    padding:8px 0;
    font-size:13px;
}

.top-bar a{
    color:#fff;
    margin-left:15px;
    text-decoration:none;
}

/* Navbar */

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.navbar {
    padding: 14px 0;
}

.nav-link {
    font-weight: 600;
    padding: 10px 14px !important;
}

.dropdown-menu {
    border: none;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
}

.dropdown-item:hover {
    background: #eef4ff;
    color: #0B5ED7;
}

.login-btn {
    border-radius: 12px;
    padding: 12px 10px;
    font-weight: 600;
}

.logo-icon{
    width:45px;
    height:45px;
    border-radius:12px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:22px;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.site-logo{
    height:55px;
    width:auto;
    object-fit:contain;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-title{
    font-size:20px;
    font-weight:700;
    color:#0B1F4D;
    line-height:1;
}

.brand-text small{
    color:#6c757d;
    font-size:12px;
}

.nav-link{
    font-weight:500;
    /* margin:0 10px; */
    font-size: 14px;
}

/* =====================================
   HERO SECTION
===================================== */

.hero-section {
    padding: 0px 0px 80px 0;
    background: #f7faff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Badge */

.hero-badge {
    display: inline-block;
    background: #eaf1ff;
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* Content */

.hero-section h1 {
    margin-top: 25px;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

.hero-section p {
    margin: 25px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Visual */

.hero-visual {
    position: relative;
    height: 550px;

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

/* Background Shape */

/* .hero-visual::before {
    content: "";
    position: absolute;

    width: 700px;
    height: 450px;

    background: linear-gradient(
        135deg,
        #eef4ff 0%,
        #dce9ff 100%
    );

    border-radius:
        55% 45% 40% 60% /
        55% 45% 55% 45%;

    z-index: 1;
} */

/* Doctor Image */

.hero-doctor {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 550px;
    height: auto;

    filter: drop-shadow(
        0 25px 35px rgba(0, 0, 0, 0.18)
    );
}

/* Decorative Dots */

.hero-dots {
    position: absolute;
    width: 100px;
    height: 100px;

    z-index: 3;

    background-image:
        radial-gradient(
            #0B5ED7 2px,
            transparent 2px
        );

    background-size: 20px 20px;
}

.hero-dots-top {
    top: 50px;
    right: 40px;
}

.hero-dots-bottom {
    bottom: 50px;
    left: 40px;
}

/* Search */

.search-section{
    margin-top:-60px;
    position:relative;
    z-index:10;
}

.search-box{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Stats */

.stats-section {
    margin-top: 30px;
}

.stats-bar {
    background: #0B5ED7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.stat-item {
    color: #fff;
    padding: 22px 15px;
}

.stat-item.border-start {
    border-color: rgba(255,255,255,.20) !important;
}

.stat-item i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.stat-item h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
    opacity: .95;
}

.section-title h2{
    font-size:36px;
    font-weight:700;
}

.section-title p{
    color:#6c757d;
}

.section-tag{
    color:#0B5ED7;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

/* SERVICES */

.service-card{
    background:#fff;
    border-radius:16px;
    padding:25px 20px;
    text-align:center;
    height:100%;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card i{
    font-size:34px;
    color:#0B5ED7;
    margin-bottom:15px;
}

.service-card h5{
    font-size:17px;
    font-weight:600;
}

/* UPDATES */

.update-card{
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    height:100%;
}

.update-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.update-content{
    padding:20px;
}

/* TIMELINE */

.timeline-wrapper {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #dbe6ff;
    z-index: 1;   /* Behind icons */
}

.timeline-step {
    position: relative;
    z-index: 2;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #dbe6ff;
    border-radius: 50%;

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

    margin: 0 auto;

    color: #0B5ED7;
    font-size: 26px;

    position: relative;
    z-index: 3;  /* Above line */
}

/* COLLEGES */

.college-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.college-card:hover{
    transform:translateY(-5px);
}

.college-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.college-content{
    padding:15px;
}

/* EXPERTS */

.expert-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.expert-card img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:12px;
}

.social-links a{
    color:#0B5ED7;
}

/* TESTIMONIALS */

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    height:100%;
}

.stars{
    color:#ffc107;
    font-size:18px;
    margin-bottom:15px;
}

.student{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.student img{
    width:50px;
    height:50px;
    border-radius:50%;
}

/* ==========================
   CTA SECTION
========================== */

.expert-cta{
    background:#0B5ED7;
    color:#fff;
    padding:35px 0;
    margin-top:60px;
}

.cta-left{
    display:flex;
    gap:20px;
    align-items:center;
}

.cta-left i{
    font-size:48px;
}

.cta-left h4{
    margin-bottom:5px;
    font-weight:700;
}

.cta-left p{
    margin:0;
    opacity:.9;
}

.expert-cta .row{
    min-height:120px;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.cta-list{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:40px;

    list-style:none;
    margin:0;
    padding:0;
}

.cta-list li{
    display:flex;
    align-items:center;
    gap:10px;

    white-space:nowrap;

    font-weight:500;
    color:#fff;
}

.cta-list i{
    color:#fff;
}

.expert-cta .btn{
    min-width:200px;
}

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

.main-footer{
    background:#071633;
    color:#fff;
    padding:70px 0 50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.footer-logo h4{
    margin:0;
    font-weight:700;
}

.footer-about{
    color:rgba(255,255,255,.75);
    margin-top:20px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
}

.footer-social a:hover{
    background:#0B5ED7;
}

.main-footer h5{
    margin-bottom:20px;
    font-weight:600;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.footer-contact i{
    width:22px;
    color:#0B5ED7;
}

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

.copyright-bar{
    background:#041126;
    color:rgba(255,255,255,.75);
    padding:15px 0;
    font-size:14px;
}

.info-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    height:100%;
}

.process-list,
.doc-list{
    list-style:none;
    padding:0;
    margin:0;
}

.process-list li,
.doc-list li{
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:10px;
}

.doc-list li::before{
    font-family:"Font Awesome 6 Free";
    content:"\f15c";
    font-weight:900;
    color:#0B5ED7;
}

.highlight-box{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:15px 20px;
    transition:.3s;
}

.highlight-box:hover{
    transform:translateY(-3px);
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.highlight-box i{
    color:#0B5ED7;
    margin-right:10px;
}

.table{
    background:#fff;
}

/* =========================
   ELIGIBILITY SECTION
========================= */

.eligibility-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    border:1px solid #edf0f5;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.eligibility-card:hover{
    transform:translateY(-5px);
}

.eligibility-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #eef2f7;
}

.eligibility-icon{
    width:65px;
    height:65px;
    border-radius:16px;
    background:#0d6efd;
    color:#fff;

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

    font-size:24px;
}

.eligibility-header h4{
    margin-bottom:5px;
    font-weight:700;
}

.eligibility-header p{
    margin:0;
    color:#6c757d;
    font-size:14px;
}

.eligibility-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:18px 0;
    border-bottom:1px dashed #e6eaf0;
}

.eligibility-item:last-child{
    border-bottom:none;
}

.eligibility-item i{
    width:42px;
    height:42px;

    background:#eef5ff;
    color:#0d6efd;

    border-radius:12px;

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

    font-size:16px;

    flex-shrink:0;
}

.eligibility-item h6{
    margin-bottom:4px;
    font-weight:600;
}

.eligibility-item span{
    color:#6c757d;
    font-size:14px;
}

/* ==========================
   DOCUMENTS SECTION
========================== */

.document-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    border:1px solid #edf0f5;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.document-card:hover{
    transform:translateY(-5px);
}

.document-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #eef2f7;
}

.document-icon{
    width:65px;
    height:65px;
    background:#0d6efd;
    color:#fff;
    border-radius:16px;

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

    font-size:24px;
}

.document-header h4{
    margin-bottom:4px;
    font-weight:700;
}

.document-header p{
    margin:0;
    color:#6c757d;
    font-size:14px;
}

.document-item{
    display:flex;
    align-items:center;
    gap:15px;

    padding:15px 0;

    border-bottom:1px dashed #e9edf4;
}

.document-item:last-child{
    border-bottom:none;
}

.document-item i{
    width:42px;
    height:42px;

    background:#eef5ff;
    color:#0d6efd;

    border-radius:12px;

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

    flex-shrink:0;
}

.document-item span{
    font-weight:500;
}