/* ===================================
            PREMIUM TRANSPARENT NAVBAR
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    width:100%;
    min-height:88px;

background: rgba(0,0,0,0.18);   /* 95-98% transparent feel */
    border-bottom: 1px solid rgba(255,255,255,0.05);

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

    padding:14px 7%;

    position:fixed;
    top:0;
    left:0;
    z-index:999;

    transition:0.4s ease;
}

/* Scroll hone ke baad */

.navbar.scrolled{
    background: rgba(8,8,8,0.94);
    backdrop-filter: blur(12px);
    border-bottom:1px solid rgba(255,193,7,0.08);
    min-height:78px;
}

/* =========================
   LEFT LOGO
========================= */

.logo-wrap{
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none;
}

.logo-text h2{
    color:#ffffff;
    font-size:30px;
    font-family:Georgia, serif;
    font-weight:700;
    letter-spacing:0.5px;
    line-height:1;
}

.logo-text span{
    display:block;
    margin-top:6px;
    font-size:13px;
    color:#ffc107;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Gavel */

.logo-icon{
    width:52px;
    height:52px;
    border:1px solid rgba(255,193,7,0.15);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,0.02);
}

.logo-icon i{
    font-size:22px;
    color:rgba(255,193,7,0.45);
    transform:rotate(-20deg);
}

/* =========================
   RIGHT LINKS
========================= */

.nav-right{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-right a{
    position:relative;
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:0.3s ease;
    padding:8px 0;
}

/* Underline */

.nav-right a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:#ffc107;
    transition:0.3s ease;
}

.nav-right a:hover{
    color:#ffc107;
}

.nav-right a:hover::after{
    width:100%;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

.navbar{
    padding:14px 5%;
}

.logo-text h2{
    font-size:26px;
}

.nav-right{
    gap:22px;
}

.nav-right a{
    font-size:15px;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.navbar{
    position:static;
    background:rgba(8,8,8,0.96);
    backdrop-filter:blur(10px);

    flex-direction:column;
    gap:18px;
    padding:18px 5%;
}

.logo-wrap{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.logo-text h2{
    font-size:24px;
}

.logo-text span{
    font-size:12px;
    letter-spacing:1.5px;
}

.nav-right{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
}

.nav-right a{
    font-size:15px;
}

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

.logo-text h2{
    font-size:21px;
}

.nav-right a{
    font-size:14px;
}

.logo-icon{
    width:46px;
    height:46px;
}

.logo-icon i{
    font-size:19px;
}

}

/* ========= MOBILE HAMBURGER NAVBAR UPGRADE ========= */
/* Existing CSS ke end me paste karo */

/* desktop pe hidden */
.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:10px;
    background:rgba(255,255,255,0.02);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    min-height:74px;

    flex-direction:row;
    justify-content:space-between;
    align-items:center;

    padding:14px 18px;
    gap:0;

    background:rgba(8,8,8,0.96);
    backdrop-filter:blur(10px);
}

/* left brand compact */
.logo-wrap{
    flex-direction:row;
    gap:10px;
    text-align:left;
}

.logo-icon{
    display:none; /* optional remove gavel on mobile */
}

.logo-text h2{
    font-size:22px;
    margin:0;
}

.logo-text span{
    display:none;
}

/* show menu button */
.menu-toggle{
    display:flex;
}

/* hidden menu */
.nav-right{
    position:absolute;
    top:74px;
    left:0;
    width:100%;

    background:#0a0a0a;
    border-top:1px solid rgba(255,255,255,0.05);

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;

    max-height:0;
    overflow:hidden;

    transition:max-height .35s ease;
}

/* open menu */
.navbar.active .nav-right{
    max-height:320px;
}

/* links */
.nav-right a{
    width:100%;
    padding:16px 22px;
    border-bottom:1px solid rgba(255,255,255,0.03);
    font-size:15px;
}

.nav-right a::after{
    display:none;
}

}

/* small mobile */
@media(max-width:480px){

.logo-text h2{
font-size:19px;
}

.menu-toggle{
width:40px;
height:40px;
font-size:16px;
}

}

/* ===== NAVBAR OPTIMIZED OVERRIDE =====
   Isko navbar.css ke END me paste karo
*/

/* better navbar spacing */
.navbar{
    min-height:82px !important;
    padding:14px 6% !important;
}

/* nav links row */
.nav-right{
    display:flex;
    align-items:center;
    gap:18px !important;
}

/* all links */
.nav-right a{
    min-width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 14px !important;
    border-radius:12px;
    color:#fff !important;
    font-size:15px;
    font-weight:600;
    transition:.28s ease;
    border:1px solid transparent;
}

/* icon links */
.nav-right a i{
    font-size:18px;
}

/* hover */
.nav-right a:hover{
    color:#ffc107 !important;
    background:rgba(255,193,7,.05);
    border-color:rgba(255,193,7,.16);
    transform:translateY(-2px);
}

/* remove underline for icon buttons */
.nav-right a::after{
    bottom:6px !important;
}

/* home icon special */
.nav-right a:first-child{
    color:#fff !important;
}

.nav-right a:first-child:hover{
    color:#ffc107 !important;
}

/* contact icon special */
.nav-right a:last-child{
    color:#ffc107 !important;
    border:1px solid rgba(255,193,7,.14);
}

.nav-right a:last-child:hover{
    background:rgba(255,193,7,.06);
    color:#fff !important;
}

/* ===== TABLET ===== */
@media(max-width:992px){

    .navbar{
        padding:14px 4% !important;
    }

    .nav-right{
        gap:10px !important;
    }

    .nav-right a{
        padding:0 12px !important;
        font-size:14px;
    }
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .navbar{
        min-height:74px !important;
        padding:14px 18px !important;
    }

    .nav-right{
        top:74px !important;
        gap:0 !important;
    }

    .nav-right a{
        width:100%;
        height:54px;
        border-radius:0;
        justify-content:flex-start;
        padding:0 22px !important;
        font-size:15px;
        border:none;
    }

    .nav-right a i{
        width:24px;
        font-size:17px;
    }

    .nav-right a:last-child{
        border:none;
    }
}

/* ===== SMALL MOBILE ===== */
@media(max-width:480px){

    .logo-text h2{
        font-size:20px !important;
    }

    .nav-right a{
        font-size:14px;
    }
}

/* NAVBAR WHATSAPP CONTACT */

.nav-whatsapp{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:12px;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    color:#25D366 !important;
    border:1px solid rgba(37,211,102,.22);
    background:rgba(37,211,102,.05);
    transition:.3s ease;
}

.nav-whatsapp i{
    font-size:20px;
    color:#25D366;
}

.nav-whatsapp span{
    color:#fff;
    font-weight:600;
}

.nav-whatsapp:hover{
    transform:translateY(-2px);
    background:rgba(37,211,102,.12);
    border-color:rgba(37,211,102,.45);
}

/* tablet */
@media(max-width:992px){
.nav-whatsapp span{
    font-size:14px;
}
}

/* mobile */
@media(max-width:768px){

.nav-whatsapp{
    width:100%;
    justify-content:flex-start;
    border-radius:0;
    padding:16px 22px;
}

}