    :root{
        --primary-blue:#101A3B;
        --light-blue: #0491EA;
        --secondary-blue: #0491EA;
    } 

/* ---------- HEADER WRAPPER ---------- */
.v-header {
    width: 100%;
    background: linear-gradient(90deg, #0026ff, #a000f0, #d40000);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

/* ---------- LOGO + SEARCH GROUP ---------- */
.left-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.v-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* ---------- SEARCH BAR ---------- */
.search-box {
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 40px;
    width: 420px;
    padding: 0 15px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
}

.search-box button {
    background: none;
    border: none;
    color: #4a00ff;
    font-size: 18px;
    cursor: pointer;
}

/* ---------- NAV ITEMS ---------- */
.v-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

/* ---------- NOTIFICATION BADGE ---------- */
.notification .badge {
    background: #ff3b3b;
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 10px;
    position: absolute;
    top: 4px;
    left: 55px; 
    font-weight: bold;
}

body{
    font-family: "Poppins" !important;
    font-weight: 400 !important;
}
body{
  overflow-x: hidden;
  background: none !important;
  background-image: none !important;
  background-color: none !important;
}
/* -----------------------------------------
   RESPONSIVE HEADER (TABLET DOWN)
------------------------------------------*/
/* =========================================================
   RESPONSIVE HEADER - UPDATED FOR MOBILE
========================================================= */

@media (max-width: 992px) {
    /* Hide desktop navigation */
    .v-nav {
        display: none !important;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }
    
    /* Adjust header layout for mobile */
    .v-header {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
        min-height: 70px;
    }
    
    /* Keep logo and search box in left section */
    .left-section {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
    }
    
    /* Adjust search box for mobile */
    .search-box {
        flex: 1;
        width: auto;
        max-width: 400px;
        margin-right: 50px; /* Space for hamburger button */
    }
    
    /* Mobile dropdown menu */
    .mobile-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #0026ff, #a000f0, #d40000);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 999;
        flex-direction: column;
        gap: 15px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .mobile-dropdown.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
}

@media (max-width: 768px) {
    /* Mobile header with logo, search, and hamburger */
    .v-header {
        padding: 15px 18px;
        flex-direction: row;
        align-items: center;
    }
    
    .left-section {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
    
    /* Adjust search box for smaller screens */
    .search-box {
        width: 100%;
        max-width: none;
        margin-right: 60px; /* More space for hamburger */
    }
    
    .search-box input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Mobile menu button position */
    .mobile-menu-btn {
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
    }
    
    /* Mobile dropdown adjustments */
    .mobile-dropdown {
        padding: 15px;
    }
    
    .mobile-nav-item {
        padding: 12px 15px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Super small screens */
    .left-section {
        gap: 12px;
    }
    
    .v-logo {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .search-box {
        margin-right: 45px;
    }
    
    .search-box input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .mobile-menu-btn {
        right: 12px;
        font-size: 22px;
    }
    
    .mobile-dropdown {
        padding: 12px;
        gap: 10px;
    }
    
    .mobile-nav-item {
        padding: 10px 12px;
        font-size: 14px;
        gap: 12px;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
        width: 22px;
    }
}

/* Mobile Navigation Items */
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.mobile-nav-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Badge adjustments for mobile */
.mobile-nav-item .message-badge,
.mobile-nav-item .notification-badge {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff3b3b;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
}

/* Hide mobile search box in dropdown since we have it in header */
.mobile-search-box {
    display: none !important;
}

/* Active state for mobile nav items */
.mobile-nav-item.active {
    background: rgba(255,255,255,0.2);
    border-left: 3px solid white;
}

/* Mobile dropdown animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* -----------------------------------------
   RESPONSIVE HEADER (MOBILE – SEARCH BELOW)
------------------------------------------*/
@media (max-width: 768px) {

    .v-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px 18px;
    }

    /* Logo + navigation go first */
    .left-section {
        width: 100%;
        justify-content: space-between;
    }

    .search-box {
        width: 100%;
        margin-top: 10px;
    }

    /* Center the nav icons */
    .v-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .nav-item {
        font-size: 12px;
    }

    .nav-item i {
        font-size: 18px;
    }
}

/* -----------------------------------------
   SUPER SMALL MOBILE (IPHONE SE, etc.)
------------------------------------------*/
@media (max-width: 480px) {

    .left-section {
        gap: 15px;
    }

    .v-logo {
        width: 40px;
        height: 40px;
    }

    .search-box input {
        padding: 8px 8px;
        font-size: 14px;
    }

    .search-box {
        padding: 0 12px;
    }

    .v-nav {
        gap: 15px;
    }

    .nav-item i {
        font-size: 17px;
    }
}

/* sub header css  */
/* SUBHEADER WRAPPER */
.v-subheader a{
text-decoration: none;
}
.v-subheader {
    width: 100%;

    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 70px; /* under main header */
    z-index: 900;
}

/* inside container */
.subheader-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
    max-width: 1400px;
    margin: auto;
}

/* MODULE TITLE */
.module-title {
    display: flex;
    align-items: center;
    gap: 8px;
     background: linear-gradient(135deg,var(--primary-blue),var(--light-blue));
    /* color: var(--primary-blue); */
    --webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    font-weight: bold;
}

.module-title i {
    font-size: 20px;
     background: linear-gradient(135deg,var(--primary-blue),var(--light-blue));
    /* color: var(--primary-blue); */
    --webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* MAIN NAV */
.sub-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* NAV ITEM */
.sub-nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 6px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.sub-nav-item i {
    font-size: 15px;
     background: linear-gradient(135deg,var(--primary-blue),var(--light-blue));
    /* color: var(--primary-blue); */
    --webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
}

/* Active link */
/* .sub-nav-item.active, */
.sub-nav-item:hover {
transform: translateY(-4px);
transition: 0.3s ease;   
border-bottom: 1px  solid  var(--light-blue);
}

/* MOBILE TOGGLE BUTTON */
.subheader-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: var(--primary-blue);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .sub-nav {
        position: absolute;
        left: 0;
        top: 60px;
        width: 100%;
        background: #fff;
        padding: 15px;
        border-bottom: 1px solid #ddd;
        flex-direction: column;
        display: none;
    }

    .sub-nav.open {
        display: flex !important;
    }

    .sub-nav-item {
        width: 100%;
        padding: 12px;
        justify-content: flex-start;
        border-radius: 6px;
    }

    .subheader-toggle {
        display: block;
    }
}

/* footer  code css  */

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, var(--primary-blue),var(--light-blue));
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://media.istockphoto.com/id/1001327622/photo/hand-holding-smart-phone-with-black-friday-sale-on-screen-device-over-blur-store-background.webp?a=1&b=1&s=612x612&w=0&k=20&c=aVyY6LwGVgFj99tunwsZv1rFiEKJezwNV1qvh8DfSow=');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    color: white;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Animation for footer appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links li:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
}

/* @media (min-width: 1200px) {
  html {
    font-size: calc(100% + 4px);
  }
} */
/* @media (min-width: 1200px) {
  * {
    font-size: calc(1em + 2px);
}

}  */
/* @media (min-width: 1200px) {
    
img {
    transform: scale(1.12);
    margin-bottom: 2rem;
}
.hero-section img{
    
transform: scale(1.2);
margin-left: 2rem;
}
 nav li a{
    font-size: calc(100em + 4px);
}
}  */


    /* ---------- Custom Scrollbar ---------- */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--v-blue);
      background: linear-gradient(145deg , #101A3B, #0491EA, #101A3B);
      /* background: url("../img/banner.png" ) no-repeat center center/cover; */
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--v-purple);
    }



  /* new  */
  /* =========================================================
   MOBILE MENU STYLES
========================================================= */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #0026ff, #a000f0, #d40000);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-dropdown.active {
    display: flex;
}

/* Mobile Navigation Items */
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.mobile-nav-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Badge adjustments for mobile */
.mobile-nav-item .message-badge,
.mobile-nav-item .notification-badge {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff3b3b;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
}

/* Mobile Search Box */
.mobile-search-box {
    width: 100%;
    margin-bottom: 15px;
    display: none;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
========================================================= */

/* For tablets and below, hide desktop nav, show mobile button */
@media (max-width: 992px) {
    .v-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-search-box {
        display: flex;
    }
    
    /* Adjust header layout for mobile */
    .v-header {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 20px;
        position: relative;
    }
    
    .left-section {
        width: auto;
    }
    
    /* Hide regular search box on mobile */
    .search-box {
        display: none;
    }
}

/* For very small mobile devices */
@media (max-width: 480px) {
    .mobile-dropdown {
        padding: 15px;
    }
    
    .mobile-nav-item {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .mobile-menu-btn {
        right: 15px;
        font-size: 22px;
    }
    
    .v-logo {
        width: 40px;
        height: 40px;
    }
}

/* Active state for mobile nav items */
.mobile-nav-item.active {
    background: rgba(255,255,255,0.2);
    border-left: 3px solid white;
}

/* Mobile dropdown animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-dropdown.active {
    animation: slideDown 0.3s ease forwards;
}

/* =========================================================
   RESPONSIVE HEADER - UPDATED FOR MOBILE
========================================================= */

@media (max-width: 992px) {
    /* Hide desktop navigation */
    .v-nav {
        display: none !important;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }
    
    /* Adjust header layout for mobile */
    .v-header {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
        min-height: 70px;
    }
    
    /* Keep logo and search box in left section */
    .left-section {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
    }
    
    /* Adjust search box for mobile */
    .search-box {
        flex: 1;
        width: auto;
        max-width: 400px;
        margin-right: 50px; /* Space for hamburger button */
    }
    
    /* Mobile dropdown menu */
    .mobile-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #0026ff, #a000f0, #d40000);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 999;
        flex-direction: column;
        gap: 15px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .mobile-dropdown.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
}

@media (max-width: 768px) {
    /* Mobile header with logo, search, and hamburger */
    .v-header {
        padding: 15px 18px;
        flex-direction: row;
        align-items: center;
    }
    
    .left-section {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
    
    /* Adjust search box for smaller screens */
    .search-box {
        width: 100%;
        max-width: none;
        margin-right: 60px; /* More space for hamburger */
    }
    
    .search-box input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Mobile menu button position */
    .mobile-menu-btn {
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
    }
    
    /* Mobile dropdown adjustments */
    .mobile-dropdown {
        padding: 15px;
    }
    
    .mobile-nav-item {
        padding: 12px 15px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Super small screens */
    .left-section {
        gap: 12px;
    }
    
    .v-logo {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .search-box {
        margin-right: 45px;
    }
    
    .search-box input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .mobile-menu-btn {
        right: 12px;
        font-size: 22px;
    }
    
    .mobile-dropdown {
        padding: 12px;
        gap: 10px;
    }
    
    .mobile-nav-item {
        padding: 10px 12px;
        font-size: 14px;
        gap: 12px;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
        width: 22px;
    }
}

/* Mobile Navigation Items */
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.mobile-nav-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Badge adjustments for mobile */
.mobile-nav-item .message-badge,
.mobile-nav-item .notification-badge {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff3b3b;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
}

/* Hide mobile search box in dropdown since we have it in header */
.mobile-search-box {
    display: none !important;
}

/* Active state for mobile nav items */
.mobile-nav-item.active {
    background: rgba(255,255,255,0.2);
    border-left: 3px solid white;
}

/* Mobile dropdown animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* mob  profile section  */

/* Mobile Profile Section */
.mobile-profile-section {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    margin-top: 10px;
}

.mobile-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 10px;
}

.mobile-profile-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-profile-info h4 {
    margin: 0;
    font-size: 16px;
    color: white;
}

.mobile-profile-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.mobile-profile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* new new  */
/* =========================================================
   FIX: SHOW LOGO + SEARCH + HAMBURGER ON MOBILE
========================================================= */

@media (max-width: 992px) {

  /* Header layout */
  .v-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* Left section holds logo + search */
  .left-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
  }

  /* LOGO always visible */
  .v-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  /* 🔥 FORCE SEARCH BAR VISIBLE ON MOBILE */
  .search-box {
    display: flex !important;
    align-items: center;
    flex: 1;
    max-width: 100%;
    margin: 0;
  }

  .search-box input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
  }

  .search-box button {
    padding: 8px 10px;
  }

  /* Hamburger stays on right */
  .mobile-menu-btn {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    flex-shrink: 0;
  }

  /* Hide desktop nav only */
  .v-nav {
    display: none !important;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .v-logo {
    width: 38px;
    height: 38px;
  }

  .search-box input {
    font-size: 13px;
    padding: 8px 10px;
  }

  .mobile-menu-btn {
    font-size: 22px;
  }
}



header .left-section span{
    font-style: italic;
    font-size: 1.6rem; 
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
@media (max-width: 480px) {
    header .left-section span{
        
        text-decoration: wavy;
        font-size: 14px; 
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
}

/* ===== GLOBAL LOADER ===== */
.global-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

.loader-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  animation: pulse 1.2s infinite;
}

.loader-content p {
  margin-top: 12px;
  font-size: 14px;
  color: #334155;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* new header  */
.vv-header {
  background: linear-gradient(90deg, #101A3B, #0491EA, #101A3B);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.vv-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
.vv-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.vv-logo-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: transparent;
  border-radius: 14px;
  padding: 3px; 
  /* padding: 6px; */
  border: 2px solid white;
}

.vv-brand-text {
  display: flex;
  flex-direction: column;
  color: white;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  opacity: 0.85;
}

/* SEARCH */
.vv-search {
  flex: 1;
  max-width: 420px;
  background: white;
  border-radius: 9px;
  display: flex;
  align-items: center;
  padding: 6px 14px;
}

.vv-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}

.vv-search button {
  background: none;
  border: none;
  color: #7c3aed;
  font-size: 16px;
  cursor: pointer;
}

/* RIGHT ICONS */
.vv-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.vv-icon {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

.vv-icon small {
  font-size: 11px;
  opacity: 0.85;
}

.vv-icon:hover {
  opacity: 0.9;
}

.badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
}

/* MOBILE */
.vv-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vv-search {
    display: none;
  }

  .vv-actions {
    display: none;
  }

  .vv-mobile-btn {
    display: block;
  }
}

@media (max-width:900px){
  .vv-actions.show {
    position: absolute;
    top: 80px;
    right: 10px;
    width: 50vw;
    background: white;
    color: #111;
    padding: 14px;
    border-radius: 16px;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .vv-actions.show .vv-icon {
    color: #111;
  }

  .vv-actions.show small {
    /* display: none; */
  }
}
/* =========================================================
   LINKEDIN-STYLE POPUPS (MESSAGES / NOTIFICATIONS / PROFILE)
   COLOR SYSTEM: BAYTAVERSE
========================================================= */

:root{
  --bv-blue-light:var(--primary-blue);
  --bv-blue-dark:#0064FF;
  --bv-purple-light:var(--primary-blue);
  --bv-purple-dark:var(--light-blue);
  --bv-primary:var(--light-blue);
  --bv-bg:#f4f6fb;
}

/* =========================================================
   COMMON POPUP BASE
========================================================= */
.messages-pop2,
.notifications-pop2,
.profiledropdown2{
  background:#fff;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
  z-index:3000;
  overflow:hidden;
  animation:popFade .18s ease;
}

@keyframes popFade{
  from{opacity:0;transform:translateY(6px);}
  to{opacity:1;transform:none;}
}

/* =========================================================
   MESSAGES — LINKEDIN STYLE (BOTTOM DOCK)
========================================================= */
.messages-pop2{
  position:fixed;
  bottom:20px;
  right:20px;
  width:340px;
  max-height:520px;
  display:none;
  flex-direction:column;
  background:#fff;
}

/* HEADER */
.messages-pop2 .pop-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  background:linear-gradient(90deg,var(--bv-blue-dark),var(--bv-primary));
  color:#fff;
  font-weight:600;
}

.messages-pop2 .pop-header button{
  background:rgba(255,255,255,.15);
  border:none;
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  cursor:pointer;
  margin-left:6px;
  font-size:12px;
}

.messages-pop2 .pop-header button:hover{
  background:rgba(255,255,255,.25);
}

/* LIST */
.messages-pop2 .pop-list{
  flex:1;
  overflow-y:auto;
  background:var(--bv-bg);
}

/* CONVERSATION ROW */
.messages-pop2 .pop-item{
  display:flex;
  gap:10px;
  padding:12px 14px;
  cursor:pointer;
  border-bottom:1px solid #e5e7eb;
  background:#fff;
}

.messages-pop2 .pop-item:hover{
  background:#f1f5ff;
}

/* AVATAR */
.messages-pop2 .pop-item::before{
  content:"";
  width:38px;
  height:38px;
  border-radius:50%;
  background:#c7d2fe;
  flex-shrink:0;
}

/* TEXT */
.messages-pop2 .pop-item strong{
  display:block;
  font-size:14px;
  font-weight:600;
  color:#0f172a;
}

.messages-pop2 .pop-item p{
  font-size:13px;
  color:#475569;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:240px;
}

/* =========================================================
   NOTIFICATIONS — LINKEDIN STYLE
========================================================= */
.notifications-pop2{
  position:absolute;
  top:80px;
  right:30px;
  width:360px;
  display:none;
}

/* HEADER */
.notifications-pop2 .pop-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  background:#f5f7ff;
  font-weight:700;
  color:#0f172a;
}

/* LIST */
.notifications-pop2 .pop-list{
  padding:8px;
  max-height:420px;
  overflow-y:auto;
}

/* ITEM */
.notifications-pop2 .pop-item{
  padding:12px 14px;
  border-radius:12px;
  margin-bottom:8px;
  background:#fff;
  border:1px solid #e5e7eb;
}

.notifications-pop2 .pop-item:hover{
  background:#f8faff;
}

/* TAGS */
.notifications-pop2 .tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  padding:3px 8px;
  border-radius:999px;
  margin-bottom:6px;
}

.tag.module{
  background:#e0ecff;
  color:var(--bv-blue-dark);
}

.tag.marketing{
  background:#f3e8ff;
  color:var(--bv-purple-dark);
}

.tag.info{
  background:#dcfce7;
  color:#166534;
}

/* TEXT */
.notifications-pop2 p{
  font-size:14px;
  color:#334155;
}

/* =========================================================
   PROFILE DROPDOWN — LINKEDIN STYLE
========================================================= */
.profiledropdown2{
  position:absolute;
  top:80px;
  right:30px;
  width:240px;
  display:none;
}

.profiledropdown2 a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  text-decoration:none;
  color:#0f172a;
  font-size:14px;
  border-bottom:1px solid #e5e7eb;
}

.profiledropdown2 a:last-child{
  border-bottom:none;
}

.profiledropdown2 a:hover{
  background:#f1f5ff;
  color:var(--bv-blue-dark);
}

/* =========================================================
   MOBILE ADJUSTMENTS
========================================================= */
@media(max-width:768px){

  .messages-pop2{
    right:10px;
    left:10px;
    width:auto;
    bottom:10px;
    max-height:60vh;
  }

  .notifications-pop2,
  .profiledropdown2{
    right:10px;
    width:calc(100% - 20px);
  }
}



/* =========================================================
   MOBILE BOTTOM SHEETS
========================================================= */

@media (max-width: 768px) {

  .notifications-pop2,
  .profiledropdown2 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: 75vh;
    border-radius: 16px 16px 0 0;
    animation: slideUpDock .25s ease-out;
  }

  .notifications-pop2 .pop-header,
  .profiledropdown2 .pop-header {
    padding: 16px;
    font-size: 16px;
  }

  .profiledropdown2 a {
    padding: 16px;
    font-size: 15px;
  }
}

/* ================================
   MODULES SIDEBAR
================================ */

.vv-modules-overlay{
  position: fixed;
  inset: 0;
  background: rgba(16,26,59,.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 998;
  /* display: none; */
  
}

.vv-modules{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 300px;
  background: linear-gradient(
    180deg,
    #101A3B,
    #0491EA 
  );
  color: #fff;
  transform: translateX(-100%);
  transition: transform .28s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

/* OPEN STATE */
.vv-modules.open{
  transform: translateX(0);
}
.vv-modules-overlay.show{
  opacity: 1;
  pointer-events: auto;
}

/* HEADER */
.modules-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.modules-header button{
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* NAV */
.modules-nav{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modules-nav a{
  color: #fff;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: background .2s ease;
}
.modules-nav a:hover{
  background: rgba(2,247,216,.18);
}

/* GROUP */
.modules-group{
  background: rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 10px;
}

.group-title{
  font-weight: 600;
  padding: 8px 10px;
  opacity: .95;
  display: flex;
  gap: 10px;
  align-items: center;
}

.modules-group a{
  font-size: 14px;
  padding-left: 36px;
}

/* MOBILE WIDTH */
@media(max-width:640px){
  .vv-modules{
    width: 85vw;
  }
}
