/* ==========================================================================
   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 Main Alignment */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.logo-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Text Container (Stacking text vertically) */
.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Main Brand Name Styling */
.logo-main-text {
    font-size: 2.2rem; /* Size badhane ke liye */
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Colors as per the first image */
.orange-text {
    color: #ff6633; /* Orange */
}

.gray-text {
    color: #7c7c7c; /* Muted Gray */
}

.dark-text {
    color: #333333; /* Dark Charcoal/Black */
}

/* Tagline with top orange border (Line effect) */
.logo-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    margin-top: 5px;
    padding-top: 5px;
    /* Yeh niche wali line text ke upar ek orange line bana degi */
    border-top: 2px solid #ff6633; 
    letter-spacing: 0.5px;
}



/* 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;
}
