:root {
    --primary-blue: #1a2b6d;
    --dark-blue: #0f1f5a;
    --saffron: #ff7a00;
    --saffron-light: #ff9933;
    --light-bg: #ffffff;
    --soft-gray: #f5f7fb;
    --text-dark: #1a2b6d;
    --text-body: #333333;
    --text-muted: #6b7280;
    --shadow: 0 8px 25px rgba(26, 43, 109, 0.08);
    --shadow-hover: 0 12px 35px rgba(26, 43, 109, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
}

body {
    overflow-x: hidden;
}

/* HEADER */
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* LEFT LOGO */
.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo img {
    width: clamp(72px, 10vw, 150px);
    height: auto;
    max-height: clamp(52px, 10vw, 120px);
    object-fit: contain;
    display: block;
}

/* CENTER TITLE */
.company-title {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

.title-wrap {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.title {
    font-size: clamp(16px, 2.2vw, 28px);
    font-weight: 600;
    letter-spacing: clamp(0.5px, 0.25vw, 2px);
    padding-bottom: 4px;
    color: #222;
    text-shadow: 4px 4px 8px rgba(108, 104, 104, 0.25);
    white-space: nowrap;
}

.title .saffron { color: #FF6A00; }
.title .gray { color: #1f2937; }

/* PRIVATE LIMITED */
.private-box {
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.private-text {
    position: relative;
    display: inline-block;
    font-size: clamp(8px, 0.95vw, 13px);
    font-weight: 600;
    color: #1f2937;
    letter-spacing: clamp(1px, 0.85vw, 15px);
    padding: 4px 0;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
    white-space: nowrap;
    max-width: 100%;
}

.private-text::before,
.private-text::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1.5px;
    background: #ff7b00;
    border-radius: 2px;
}

.private-text::before { top: 0; }
.private-text::after { bottom: 0; }

/* TAGLINE */
.tagline {
    margin-top: 3px;
    font-size: clamp(9px, 1vw, 16px);
    color: #ff7b00;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.big {
    font-size: 1.5em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.25);
}

/* RIGHT SIDE */
.right-side {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

/* DESKTOP NAVIGATION */
nav {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    padding: 0 10px;
    white-space: nowrap;
}

nav a,
.dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(36px, 4vw, 40px);
    min-width: clamp(84px, 9vw, 120px);
    padding: 0 10px;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 700;
    border: 3px solid transparent;
    box-shadow: 4px 4px 14px rgba(38,38,98,0.619);
    text-decoration: none;
    background: #1f2937;
    color: #ffffff;
    transition: var(--transition);
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
}

nav a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

nav a:first-child {
    border-bottom-left-radius: 14px;
}

.dropbtn {
    background: #ff7b00;
    border-bottom-right-radius: 14px;
}

nav a:hover,
.dropbtn:hover {
    background: #ff7b00;
    color: #ffffff;
}

nav a.active {
    background: #ff7b00;
    color: #ffffff;
    font-weight: 700;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(233, 136, 80, 0.57);
    min-width: 170px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    border-radius: 0 !important;
    background: #fff;
    color: #333;
    box-shadow: none;
    height: auto;
    padding: 12px 14px;
    justify-content: flex-start;
    font-weight: 500;
    border: none;
    min-width: 100%;
}

.dropdown-content a:hover {
    background: #f4f4f4;
    color: #ff7b00;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    flex: 0 0 auto;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #1f2937;
    border-radius: 3px;
    transition: 0.3s;
}

/* LARGE LAPTOP / TABLET */
@media (max-width: 1100px) {
    header {
        padding: 6px 8px;
        gap: 8px;
    }

    .header-logo img {
        width: clamp(64px, 9vw, 120px);
        max-height: clamp(48px, 8vw, 90px);
    }

    nav a,
    .dropbtn {
        min-width: clamp(78px, 8vw, 95px);
        font-size: 13px;
        padding: 0 8px;
    }

    .title {
        font-size: clamp(15px, 2vw, 24px);
    }
}

/* MOBILE */
@media (max-width: 900px) {
    header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "logo title menu";
        align-items: center;
        gap: 6px;
        position: sticky;
    }

    .header-logo {
        grid-area: logo;
        justify-content: flex-start;
    }

    .company-title {
        grid-area: title;
        padding: 0 4px;
        min-width: 0;
    }

    .right-side {
        grid-area: menu;
        justify-content: flex-end;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        gap: 8px;
        z-index: 1000;
    }

    nav.mobile-active {
        display: flex;
    }

    nav a,
    .dropbtn {
        border-radius: 8px !important;
        height: 48px;
        min-width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 6px;
        min-width: 100%;
    }

    .title {
        font-size: clamp(13px, 3.7vw, 18px);
        letter-spacing: 0.5px;
    }

    .private-text {
        font-size: clamp(7px, 2vw, 11px);
        letter-spacing: clamp(1px, 1vw, 4px);
    }

    .tagline {
        font-size: clamp(8px, 2vw, 11px);
        margin-top: 2px;
    }

    .header-logo img {
        width: clamp(48px, 11vw, 64px);
        max-height: clamp(38px, 11vw, 60px);
    }
}

/* SMALL PHONES */
@media (max-width: 500px) {
    header {
        padding: 6px 6px;
        gap: 4px;
    }

    .company-title {
        padding: 0 2px;
    }

    .title {
        font-size: clamp(11px, 4.1vw, 15px);
        letter-spacing: 0.2px;
    }

    .private-text {
        font-size: clamp(6px, 1.8vw, 10px);
        letter-spacing: clamp(0.8px, 0.9vw, 3px);
    }

    .tagline {
        font-size: clamp(7px, 1.8vw, 10px);
    }

    .header-logo img {
        width: clamp(42px, 12vw, 52px);
        max-height: 44px;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
    }
}