: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;
}

/* ================= RESET / BASE ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #fff;
    overflow-x: hidden;
}

/* ================= HEADER ================= */
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px clamp(8px, 1.5vw, 20px);
    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);
    min-height: 72px;
}

/* LEFT LOGO */
.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo img {
    height: clamp(58px, 8vw, 120px);
    width: auto;
    min-width: 70px;
    max-width: 100%;
    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 10px;
    overflow: hidden;
}

.title-wrap {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.title {
    font-size: clamp(17px, 1.8vw, 28px);
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 6px;
    color: #222;
    text-shadow: 4px 4px 8px rgba(108, 104, 104, 0.25);
    line-height: 1.1;
    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(10px, 1.1vw, 16px);
    font-weight: 500;
    color: #1f2937;
    letter-spacing: clamp(3px, 0.7vw, 15px);
    padding: 4px 0;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.private-text::before,
.private-text::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #ff7b00;
    border-radius: 2px;
}

.private-text::before { top: 0; }
.private-text::after { bottom: 0; }

/* TAGLINE */
.tagline {
    margin-top: 4px;
    font-size: clamp(10px, 1vw, 16px);
    color: #ff7b00;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.big {
    font-size: clamp(14px, 1.4vw, 25px);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    white-space: nowrap;
}

/* RIGHT SIDE */
.right-side {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

/* DESKTOP NAV */
nav {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    padding: 0 30px;
    flex: 0 0 auto;
    white-space: nowrap;
}

nav a,
.dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 100px;
    padding: 0 10px;
    font-size: 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: 150px;
    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;
    margin-left: auto;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #1f2937;
    border-radius: 3px;
    transition: 0.3s;
}

/* ================= TABLET / SMALL LAPTOP ================= */
@media (max-width: 1200px) {
    nav {
        padding: 0 16px;
    }

    nav a,
    .dropbtn {
        min-width: 90px;
        font-size: 14px;
        height: 38px;
        padding: 0 8px;
    }

    .header-logo img {
        height: 90px;
        min-width: 80px;
    }

    .title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .private-text {
        letter-spacing: clamp(2px, 0.6vw, 10px);
    }
}

@media (max-width: 992px) {
    header {
        padding: 6px 10px;
        min-height: 68px;
    }

    .header-logo img {
        height: 74px;
        min-width: 65px;
    }

    .title {
        font-size: 15px;
        letter-spacing: 1px;
        padding-bottom: 4px;
    }

    .private-text {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 10px;
    }

    .big {
        font-size: 14px;
    }

    nav a,
    .dropbtn {
        min-width: 82px;
        font-size: 12px;
        height: 36px;
    }
}

/* ================= MOBILE HEADER ================= */
@media (max-width: 900px) {
    header {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas: "logo title menu";
        align-items: center;
        gap: 6px;
        padding: 6px 8px;
        min-height: 64px;
    }

    .header-logo {
        grid-area: logo;
        align-self: center;
        justify-content: flex-start;
    }

    .company-title {
        grid-area: title;
        min-width: 0;
        padding: 0 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .right-side {
        grid-area: menu;
        align-self: center;
        justify-content: flex-end;
    }

    .hamburger {
        display: flex;
    }

    .header-logo img {
        height: clamp(42px, 8vw, 58px);
        width: auto;
        min-width: 42px;
        max-height: 58px;
    }

    .title-wrap {
        width: 100%;
        align-items: center;
    }

    .title {
        font-size: clamp(11px, 3.5vw, 16px);
        letter-spacing: 0.5px;
        padding-bottom: 2px;
        white-space: nowrap;
        text-align: center;
    }

    .private-text {
        font-size: clamp(6px, 1.7vw, 9px);
        letter-spacing: clamp(1px, 0.7vw, 3px);
        padding: 3px 0;
        white-space: nowrap;
        text-align: center;
    }

    .tagline {
        font-size: clamp(7px, 1.7vw, 9px);
        margin-top: 2px;
        white-space: nowrap;
        text-align: center;
    }

    .big {
        font-size: 1.2em;
        white-space: nowrap;
    }

    /* Mobile nav popup */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        gap: 10px;
        z-index: 1000;
    }

    nav.mobile-active {
        display: flex;
    }

    nav a,
    .dropbtn {
        width: 100%;
        min-width: 0;
        border-radius: 8px !important;
        height: 48px;
        box-shadow: none;
        border: 1px solid #eee;
        justify-content: center;
        font-size: 14px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 5px;
        width: 100%;
        min-width: 0;
    }

    .dropdown-content a {
        height: auto;
        padding: 12px 14px;
        justify-content: flex-start;
    }
}
/* ================ SOCIAL FLOAT & FOOTER ================ */
.social-float {
    position: fixed;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-float a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    text-decoration: none;
}

.social-float a.whatsapp  { background:#25d366; }
.social-float a.facebook  { background:#1877f2; }
.social-float a.linkedin  { background:#0a66c2; }
.social-float a.instagram { 
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

footer {
    padding: 30px 5% 40px;
    background: #333;
    color: #fff;
    text-align: center;
}
/* =====================================================
   MOBILE HEADER + MOBILE NAV
===================================================== */

@media (max-width: 900px) {

    header{
        display:grid;
        grid-template-columns:auto minmax(0,1fr) auto;
        grid-template-areas:"logo title menu";
        align-items:center;
        gap:4px;
        padding:5px 8px;
        min-height:60px;
    }

    /* LOGO */
    .header-logo{
        grid-area:logo;
        display:flex;
        align-items:center;
        justify-content:flex-start;
        flex-shrink:0;
    }

    .header-logo img{
        height:clamp(34px,8vw,52px);
        width:auto;
        min-width:28px;
        display:block;
        object-fit:contain;
    }

    /* CENTER TITLE */
    .company-title{
        grid-area:title;
        min-width:0;
        padding:0 2px;
        display:flex;
        justify-content:center;
        align-items:center;
        overflow:hidden;
    }

    .title-wrap{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        line-height:1;
    }

    .title{
        font-size:clamp(9px,3.4vw,15px);
        font-weight:700;
        letter-spacing:.3px;
        padding-bottom:2px;
        white-space:nowrap;
        text-align:center;
    }

    .private-box{
        display:flex;
        justify-content:center;
    }

    .private-text{
        position:relative;
        display:inline-block;
        font-size:clamp(5px,1.5vw,8px);
        font-weight:500;
        letter-spacing:clamp(1px,.6vw,4px);
        padding:2px 6px;
        line-height:1;
        white-space:nowrap;
        text-align:center;
    }

    .private-text::before,
    .private-text::after{
        content:"";
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        width:115%;
        height:1px;
        background:#ff7b00;
    }

    .private-text::before{
        top:0;
    }

    .private-text::after{
        bottom:0;
    }

    .tagline{
        font-size:clamp(5px,1.3vw,8px);
        margin-top:2px;
        text-align:center;
        white-space:nowrap;
    }

    .big{
        font-size:1.1em;
    }

    /* RIGHT SIDE */
    .right-side{
        grid-area:menu;
        display:flex;
        justify-content:flex-end;
        align-items:center;
        flex-shrink:0;
    }

    /* HAMBURGER */
    .hamburger{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:4px;
        width:42px;
        height:42px;
        cursor:pointer;
        flex-shrink:0;
    }

    .hamburger span{
        width:24px;
        height:3px;
        background:#1f2937;
        border-radius:3px;
        transition:.3s;
    }

    /* MOBILE NAV */
    nav{
        position:fixed;
        top:60px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        padding:12px;
        gap:8px;
        display:none;
        z-index:999;
        box-shadow:0 10px 25px rgba(0,0,0,.12);
        box-sizing:border-box;
    }

    nav.mobile-active{
        display:flex;
    }

    nav a,
    .dropbtn{
        width:100%;
        min-width:0;
        height:46px;
        font-size:13px;
        border-radius:8px !important;
        box-shadow:none;
        border:1px solid #eee;
        justify-content:center;
        white-space:nowrap;
    }

    .dropdown-content{
        position:static;
        width:100%;
        min-width:0;
        margin-top:5px;
        box-shadow:none;
        border:1px solid #eee;
    }

    .dropdown-content a{
        padding:12px 14px;
        justify-content:flex-start;
    }
}


/* SMALL PHONES */
@media (max-width: 420px){

    header{
        padding:4px 5px;
        min-height:54px;
    }

    .header-logo img{
        height:38px;
    }

    .title{
        font-size:9px;
    }

    .private-text{
        font-size:4.8px;
        letter-spacing:1px;
    }

    .tagline{
        font-size:5px;
    }

    .hamburger{
        width:38px;
        height:38px;
    }

    .hamburger span{
        width:20px;
        height:2.5px;
    }

    nav{
        top:54px;
    }
}


/* ULTRA SMALL PHONES */
@media (max-width: 320px){

    .header-logo img{
        height:32px;
    }

    .title-wrap{
        transform:scale(.9);
        transform-origin:center;
    }

    .title{
        font-size:8px;
    }

    .private-text{
        font-size:4px;
        letter-spacing:.8px;
    }

    .tagline{
        font-size:4.5px;
    }

    .hamburger{
        width:34px;
        height:34px;
    }

    .hamburger span{
        width:18px;
        height:2px;
    }
}
