/* --- ROOT VARIABLES --- */
:root {
    --brand-blue: #61b5c9;
    --nav-bg: #efeeee;
    --header-height: 100px;
    --text-dark: #333333;
}

body {
    font-family: 'Inter', sans-serif;
        padding: 0 !important;
    margin: 0 !important;


}

.sym-main-navigation-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent; /* default transparent */
    z-index: 2000;
    display: flex;
    align-items: center;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

/* background after scroll */
.sym-main-navigation-bar.sym-header-scrolled {
    background-color: #ffffffcc; 
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}


/* Ye inner wrap aapke header ko har page par stabilize karega */
.sym-header-inner-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /* padding: 0 300px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.sym-header-brand-section .sym-main-identity-logo img {
    height: 70px;
    /* Screenshot jaisa clean logo size */
    width: auto;
}

/* --- PRIMARY NAV LIST --- */
.sym-primary-nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
}


.sym-nav-list-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.sym-nav-anchor {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    text-transform: capitalize;
}

.sym-nav-anchor:hover {
    color: var(--brand-blue);
}

/* --- INVESTOR RELATION BUTTON (Exact Screenshot Look) --- */
.sym-header-action-area {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    right: 0;
    left: 15%;
}

.sym-investor-relations-action-btn {
    background: transparent;
    color: var(--brand-blue);
    text-decoration: none;
    padding: 14px;
    font-family: Sans-Serif;
    font-size: 0.78rem;
    font-weight: 550;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid var(--brand-blue);
}

.sym-investor-relations-action-btn:hover {
    background: var(--brand-blue);
    color: #fff;
}

/* --- MEGA MENU OVERLAY (Full-Width Grey) --- */
.sym-has-mega-dropdown-trigger {
    position: static;
}

.sym-mega-dropdown-overlay-panel {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #efeeee;
    /* Screenshot jaisa grey tint background */
    border-top: 4px solid #61b5c9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 3000;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.sym-has-mega-dropdown-trigger:hover .sym-mega-dropdown-overlay-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sym-mega-panel-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 35% 65%;
    padding: 60px 0;
}

.sym-mega-panel-description-left {
    padding-right: 50px;
    border-right: 1px solid #d1d1d1;
    /* Vertical Divider */
}

.sym-mega-panel-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.sym-mega-panel-paragraph {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.sym-mega-panel-links-right {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sym-mega-panel-link {
    font-size: 19px;
    font-weight: 700;
    color: #1d1d1f;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s;
    width: fit-content;
    padding: 10px 12px;
}

.sym-mega-panel-link:hover {
    text-underline-offset: 5px;
    background: rgba(97, 181, 201, 0.12);
    border-bottom-color: #61b5c9;
    color: #1b7d93;

}


.sym-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-blue);
    margin-bottom: 8px;
    display: block;
}

/* ===============================
   LARGE LAPTOPS (≤1200px)
================================ */
@media (max-width: 1200px) {
    .sym-header-inner-wrap {
        max-width: 100%;
        padding: 0 40px;
    }

    .sym-primary-nav-list {
        gap: 28px;
    }

    .sym-mega-panel-inner-container {
        max-width: 100%;
        padding: 50px 40px;
    }
}

/* ===============================
   LAPTOP / SMALL DESKTOP (≤992px)
================================ */
@media (max-width: 992px) {
    :root {
        --header-height: 85px;
    }

    .sym-header-brand-section .sym-main-identity-logo img {
        height: 60px;
    }

    .sym-primary-nav-list {
        gap: 22px;
    }

    .sym-nav-anchor {
        font-size: 11.5px;
    }

    .sym-header-action-area {
        left: 0;
    }

    /* Mega menu → stacked */
    .sym-mega-panel-inner-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sym-mega-panel-description-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #d1d1d1;
        padding-bottom: 25px;
    }

    .sym-mega-panel-links-right {
        padding-left: 0;
    }
}

/* ===============================
/* ===============================
   MOBILE TOGGLE BUTTON
================================ */
.sym-mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.sym-mobile-toggle-btn span {
    width: 26px;
    height: 2px;
    background: #000;
    display: block;
}

/* ===============================
   MOBILE MENU OVERLAY
================================ */
.sym-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 4000;
}

.sym-mobile-menu {
    width: 280px;
    height: 100%;
    background: #efeeee;
    padding: 30px 20px;
    transform: translateX(100%);
    transition: 0.35s ease;
    margin-left: auto;
    overflow-y: auto;
}

.sym-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sym-mobile-menu-overlay.active .sym-mobile-menu {
    transform: translateX(0);
}

/* Menu links */
.sym-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sym-mobile-menu ul li {
    margin-bottom: 15px;
}

.sym-mobile-menu a,
.sym-mobile-menu span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    cursor: pointer;
    display: block;
}

/* Sub menu */
.mobile-has-sub ul {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-has-sub.active ul {
    display: block;
}

/* Investor inside menu */
.mobile-investor-btn {
    margin-top: 30px;
    display: block;
    text-align: center;
}

/* ===============================
   RESPONSIVE VISIBILITY
================================ */
@media (max-width: 768px) {
    .sym-central-menu-wrapper,
    .desktop-only {
        display: none;
    }

    .sym-mobile-toggle-btn {
        display: flex;
    }
}

