/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    padding-top:135px; /* Header space */

}

/* ================= HEADER FIXED ================= */
.header-wrapper{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:0.4s ease;

    overflow:visible;   /* 👈 YE ADD KARO */





}

/* ================= TOP BAR ================= */
.topbar{
    background:#0b2d52;
    padding:10px 0;
    text-align:center;
    transition:all 0.4s ease;
}

.topbar .top-content{
    display:flex;
    justify-content:center;
    gap:40px;
    color:#f4c430;
    font-size:15px;
}

.topbar i{
    margin-right:6px;
}

/* ================= NAVBAR ================= */
.navbar{
    background:linear-gradient(to right,#123c69,#0b2d52);
    padding:20px 0;
    border-bottom:4px solid #f4c430;
    transition:all 0.4s ease;
}

.nav-links{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:45px;
}

.nav-links li a{
    text-decoration:none;
    color:#ffffff;
    font-size:16px;
    font-weight:500;
    transition:0.3s ease;
}

.nav-links li a:hover{
    color:#f4c430;
}

/* ================= LOGO PERFECT POSITION ================= */
.logo-3d{
    position:absolute;
    left:50px;

    top:1px;   /* Perfect between bars */

    width:90px;
    height:90px;

    border-radius:50%;

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

    background:transparent;

    border:6px solid #f4c430;
    box-shadow:
        0 0 25px rgba(244,196,48,0.9),
        0 0 50px rgba(244,196,48,0.5);

    overflow:hidden;
    z-index:1001;
    transition:0.4s ease;
}

/* Logo Image Fit */
/* Logo Image Perfect Center */
.logo-3d a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
}

.logo-3d img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    display:block;
}


/* ================= SCROLL EFFECT ================= */

/* Hide topbar */
.header-wrapper.scrolled .topbar{
    height:0;
    padding:0;
    overflow:hidden;
}

/* Navbar move up */
.header-wrapper.scrolled .navbar{
    padding:15px 0;
}

/* Logo shrink and adjust */
.header-wrapper.scrolled .logo-3d{
    top:-5px;
    width:100px;
    height:100px;
}













/* ===== DROPDOWN MENU ===== */

.nav-links li{
    position:relative;
    }
    
    .dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    display:none;
    flex-direction:column;
    border-radius:6px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    overflow:hidden;
    z-index:9999;
    }
    
    .dropdown-menu li{
    width:100%;
    }
    
    .dropdown-menu li a{
    padding:12px 15px;
    display:block;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:0.3s;
    }
    
    .dropdown-menu li a:hover{
    background:#f4c430;
    color:#000;
    padding-left:20px;
    }
    
   




    /* ABOUT CLICK OPEN FIX */

.dropdown-menu{
    display:flex;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:0.3s;
    }
    
    .dropdown.active .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    }
    