body {

    margin:0;
    padding:0;

    font-family:Arial, sans-serif;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #1e1b4b,
    #312e81
    );

    color:#ffffff;

    line-height:1.6;

}


/* =========================
   NEW UNIFIED NAVBAR
========================= */

.navbar {

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(15,23,42,.85);

    backdrop-filter: blur(10px);

    padding:14px;

    position:sticky;
    top:0;

    z-index:1000;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.navbar a,
.dropbtn {

    color:#e5e7eb;

    text-decoration:none;

    padding:14px 18px;

    font-size:15px;

    border:none;

    background:none;

    cursor:pointer;

    transition:0.2s;

}


.navbar a:hover,
.dropdown:hover .dropbtn {

    color:#60a5fa;

}


.floating-top {

    position:fixed;

    bottom:20px;
    right:20px;

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#1f2937;

    color:#e5e7eb;

    text-decoration:none;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.1);

    font-size:18px;

    z-index:1000;

    transition:0.2s;

}

.floating-top:hover {

    background:#2563eb;

    transform:translateY(-2px);

}

















/* =========================
   DROPDOWN (NEW STYLE)
========================= */

.dropdown {

    position:relative;

}


.dropdown-content {

    display:none;

    position:absolute;

    background:#111827;

    min-width:180px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:8px;

    overflow:hidden;

}


.dropdown-content a {

    display:block;

    padding:10px 12px;

    color:#e5e7eb;

}


.dropdown-content a:hover {

    background:#1f2937;

}


.dropdown:hover .dropdown-content {

    display:block;

}


/* =========================
   REST OF YOUR ORIGINAL CSS
========================= */

.container{

    width:80%;
    max-width:1000px;

    margin:auto;

    padding:30px;

}


header{

    text-align:center;

    margin-bottom:40px;

    padding:25px;

}


header h1{

    font-size:48px;

    margin-bottom:10px;

}


.contact{

    font-size:18px;

}


h2{

    border-bottom:2px solid #60a5fa;

    padding-bottom:5px;

    margin-top:40px;

}


.job{

    background:rgba(255,255,255,.08);

    padding:20px;

    margin-bottom:25px;

    border-radius:12px;

    backdrop-filter:blur(4px);

}


h3{

    margin-bottom:5px;

    color:#93c5fd;

}


.position{

    font-weight:bold;

}


.date{

    color:#d1d5db;

    font-style:italic;

}


ul{

    padding-left:20px;

}


li{

    margin-bottom:10px;

}


.job:hover{

    transform:translateY(-3px);

    transition:.3s;

}