/* ===== TOP STRIP ===== */
.top-strip {
    background: linear-gradient(90deg, #5b1bbd 0%, #7e3ae0 100%);
    text-align: center;
    padding: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(91, 27, 189, 0.3);
}

.top-strip p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.top-strip i {
    font-size: 16px;
    animation: pulse 2s infinite;
    color: #fff;
    position: relative;
    top: 10px;
    padding-left: 20px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.top-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* ===== MAIN HEADER ===== */
.main-header {
    padding: 0px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

div#mainHeader {
    position: absolute;
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.header-flex {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    padding-top: 40px;
}

/* LOGO */
.logo {
    position: relative;
    border-radius: 12px;
    top: 20px;
}

.logo img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(91, 27, 189, 0.2));
}

.logo:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 8px 16px rgba(91, 27, 189, 0.4));
}

/* NAVIGATION */
.nav-wrapper {
    position: relative;
    background: #ffe4f8;
    padding: 8px 8px;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(91, 27, 189, 0.15), inset 0 1px 4px rgba(255, 255, 255, 0.8);
    margin-top: 40px;
}

.nav-links {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #4a2a7a;
    padding: 10px 22px;
    border-radius: 40px;
    position: relative;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-family: var(--secondary-regular-font);

}

/* NAV LINKS */
.nav-links a i {
    font-size: 16px;
    color: #7e3ae0;
    transition: all 0.3s ease;
    opacity: 0;
    /* hide icons by default */
    transform: scale(0.8) rotate(0deg);
    display: inline-block;
}

.nav-links a.active i {
    opacity: 1;
    transform: scale(1.3) rotate(10deg);
    color: #fff;
}

/* Hover icon effect only if not active */
.nav-links a:not(.active):hover i {
    opacity: 1;
    transform: scale(1.3) rotate(10deg);
}


/* Active link */
.nav-links a.active {
    color: #fff;
    font-family: var(--secondary-medium-font);
    /* background: linear-gradient(135deg, #7e3ae0, #5b1bbd);
    box-shadow: 0 8px 20px #5b1bbd66, inset 0 2px 4px rgba(255, 255, 255, 0.4); */
}

.nav-links a.active i {
    color: #fff;
}

/* Hover icon effect */
.nav-links a:hover i {
    transform: scale(1.3) rotate(10deg);
}

/* INDICATOR */
.nav-indicator {
    position: absolute;
    height: 48px;
    background: #6000A0;
    border-radius: 40px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 0;
    box-shadow: 0 8px 20px #5b1bbd66, inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
}

/* RIGHT ICONS */
.header-icons {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(91, 27, 189, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b1bbd;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
}

.icon-circle.purple {
    background: linear-gradient(135deg, #5b1bbd, #7e3ae0);
    color: #fff;
    border: none;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 1001;
}

.mobile-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #5b1bbd;
    left: 0;
    transition: 0.3s ease;
    border-radius: 3px;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 10px;
    width: 80%;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    background: #7e3ae0;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
    background: #7e3ae0;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    box-shadow: -10px 0 40px rgba(91, 27, 189, 0.3);
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-menu ul {
    list-style: none;
    margin-top: 80px;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 20px;
    transform: translateX(20px);
}

.mobile-menu a {
    text-decoration: none;
    color: #5b1bbd;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: var(--secondary-medium-font);
}

.mobile-menu a i {
    width: 30px;
    font-size: 22px;
    color: #7e3ae0;
}

.mobile-menu a:hover {
    background: rgba(91, 27, 189, 0.1);
    transform: translateX(10px);
}

.menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #5b1bbd;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.menu-close:hover {
    background: #5b1bbd;
    color: #fff;
    transform: rotate(90deg);
}

.wrappermobbile {
    display: none;
}

.bannerheading {
    position: absolute;
    width: 100%;
    top: 241px;
}

/* RESPONSIVE */
@media(max-width:1367px) {
    .nav-links {
        display: flex;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        padding: 10px 14px;
    }
}

@media(max-width:1119px) {
    .nav-links {
        display: flex;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
}

@media(max-width:991px) {
    #mainHeader {
        height: 250px !important;
        top: 40px;
    }

    .wrapper-wihhh {
        width: 100% !important;
        text-align: start !important;
    }

    .talk-bottom {
        margin-top: 60px !important;
        padding-bottom: 40px !important;
    }

    .talk-footer::before {
        bottom: 300px !important;
    }

    .mobile-menu {
        padding: 30px 15px;
        width: 380px;
    }

    i.fas.fa-user.ms-2.w-unset {
        color: #fff;
    }

    .wrapper-wihhh {
        width: 100%;
    }

    .bannerheading {
        top: 171px !important;
    }

    .wrappermobbile {
        display: block;
        padding-left: 36px;
    }

    .wrappermobbile a {
        padding: 0;
    }



    .wrappermobbile a .icon-circle i {
        padding-left: 5px;
    }

    .mobile-menu {
        z-index: 111111;
    }

    .nav-wrapper,
    .header-icons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo img {
        height: 100px;
    }

    .header-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 10px;
    }

    .talk-top h2.talk-heading.letters {
        font-size: 50px;
    }
}

@media(max-width:576px) {
    .top-strip {
        font-size: 13px;
        padding: 8px;
    }

    .talk-bottom {
        margin-top: 30px;
        padding-bottom: 40px;
        text-align: start ! important;
    }

    .logo img {
        height: 70px;
    }

    .logo {
        position: relative;
        border-radius: 12px;
        top: 10px;
    }

    .mobile-menu {
        width: 100%;
    }
}