/* ==========================================================================
   PREMIUM & CLEAN GLOBAL NAVBAR (MOBILE OPTIMIZED)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.header.sticky {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Alignment */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
    text-decoration: none;
}

.logo span {
    color: #ff6600;
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Desktop Menu Layout */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    position: relative;
    color: #111111;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    padding: 8px 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #ff6600;
    border-radius: 50px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff6600;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle Trigger Button */
.nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #111111;
    transition: transform 0.3s ease;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINT (SIRF MOBILE VIEW KEY LIYE FIX)
   ========================================================================== */
@media (max-width:768px){

.header{
    padding:8px 0;
}

.logo{
    font-size:1.6rem;
}

.logo-icon{
    width:42px;
    height:42px;
}

.nav-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    font-size:28px;
    cursor:pointer;
    z-index:10001;
}

.nav-menu{
    position:fixed;
    top:70px;
    left:0;

    width:100%;
    background:#fff;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    padding:10px 0;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

    transform:translateY(-20px);
    opacity:0;
    visibility:hidden;

    transition:all .35s ease;

    z-index:9999;
}

.nav-menu.active{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
}

.nav-link{
    width:100%;
    padding:16px 25px;
    font-size:17px;
    border-bottom:1px solid #f2f2f2;
}

.nav-link:last-child{
    border-bottom:none;
}

.nav-link::after{
    display:none;
}

}