@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Brand typeface — inherited site-wide (same as Webzeee logo) */
:root {
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    font-family: var(--font-sans);
}

body,
#wrap,
#content,
#footer,
.footer-site,
.footer-site__bottom,
h1, h2, h3, h4, h5, h6,
p, a, li, label, button, input, select, textarea,
.btn, .form-control,
.nav__list, .nav__list-item, .nav__list-item a,
.site-header__cta,
.modern-service-card,
.modern-factor-card,
.contact-modern-intro,
.contact-info-card,
.contact-form-wrap {
    font-family: inherit;
}

/* ------------------------------------------------------------------
   Infosys-style floating header
   ------------------------------------------------------------------ */

.cd-header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: 18px clamp(12px, 2vw, 28px) 0 !important;
    margin: 0 !important;
    pointer-events: none;
    background: transparent !important;
}

.cd-header.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 110px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
    z-index: -1;
}

.site-header__bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 28px);
    max-width: 1320px;
    margin: 0 auto;
    pointer-events: auto;
}

.site-header__left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    z-index: 3;
}

.site-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
}

/* Circular menu button */
.site-header__menu-btn.menu-icon {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    flex-shrink: 0;
    float: none !important;
    position: relative !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header__menu-btn.menu-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.site-header__menu-btn .menu-icon__line {
    display: block !important;
    width: 15px !important;
    height: 2px !important;
    margin: 0 0 3.5px !important;
    border-radius: 2px;
    background-color: #0f172a !important;
    float: none !important;
    transition: transform 0.2s ease, width 0.2s ease, background-color 0.2s ease;
}

.site-header__menu-btn .menu-icon__line:last-child {
    margin-bottom: 0 !important;
}

.site-header__menu-btn .menu-icon__line-left,
.site-header__menu-btn .menu-icon__line-right {
    width: 15px !important;
}

.site-header__menu-btn:hover .menu-icon__line-left,
.site-header__menu-btn:hover .menu-icon__line-right {
    width: 15px !important;
}

/* Clean wordmark — outside the pill, on the dark hero */
a.site-brand {
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-decoration: none !important;
    text-transform: none !important;
    font-family: inherit !important;
    font-weight: 600 !important;
    font-size: clamp(20px, 2.2vw, 26px) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    transition: opacity 0.2s ease;
}

a.site-brand:hover {
    opacity: 0.88 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: none !important;
    text-decoration: none !important;
}

/* Right CTA */
.site-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #0b0b0b;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    white-space: nowrap;
    transform: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header__cta:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    background: #1a1a1a;
    transform: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.site-header__cta .fa {
    font-size: 13px;
    opacity: 0.9;
}

body.nav-active .site-header__menu-btn.menu-icon {
    background: #ffffff !important;
    z-index: 1200;
}

body.nav-active .site-header__menu-btn .menu-icon__line {
    background-color: #0f172a !important;
}

/* ------------------------------------------------------------------
   Fullscreen overlay menu — clean modern active state
   ------------------------------------------------------------------ */
.nav__content {
    text-align: center;
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1.4vh, 18px);
}

.nav__list-item {
    overflow: visible !important;
    font-family: inherit !important;
    font-size: clamp(28px, 5.5vh, 56px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.15 !important;
}

.nav__list-item a {
    position: relative !important;
    display: inline-block !important;
    padding: 0.1em 0.15em 0.28em !important;
    color: #8b929c !important;
    -webkit-text-fill-color: #8b929c !important;
    -webkit-text-stroke: 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    overflow: visible !important;
    transition: color 0.25s ease, -webkit-text-fill-color 0.25s ease, opacity 0.25s ease !important;
}

.nav__list-item a:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
}

.nav__list-item a:after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 0 !important;
    margin: 0 !important;
    width: 0 !important;
    height: 3px !important;
    border: none !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #593dd5, #ff6b35) !important;
    opacity: 0 !important;
    transform: translateX(-50%) !important;
    transition: width 0.28s ease, opacity 0.28s ease !important;
    pointer-events: none;
}

.nav__list-item a:hover:after {
    width: 42% !important;
    opacity: 0.85 !important;
    height: 3px !important;
    left: 50% !important;
}

.nav__list-item.active-nav a {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    background-image: linear-gradient(105deg, #c4b5fd 0%, #ffffff 45%, #ffb089 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.nav__list-item.active-nav a:after {
    width: 48% !important;
    opacity: 1 !important;
    height: 3px !important;
    left: 50% !important;
}

@media (max-width: 991px) {
    .cd-header.site-header {
        padding: 14px 14px 0 !important;
    }

    .site-header__cta span {
        display: none;
    }

    .site-header__cta {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .site-header__left {
        gap: 10px;
    }

    .site-header__bar {
        gap: 10px;
    }
}
