@font-face {
    font-family: 'Futura Cyrillic Book'; /* Custom font name */
    src: url('https://24101925.fs1.hubspotusercontent-na1.net/hubfs/24101925/Custom%20Fonts/FuturaCyrillicBook.woff') format('woff'); /* Font URL and format */
    font-weight: normal; /* Define font weight */
    font-style: normal; /* Define font style */
}


/* General Header Styling */
.custom-header {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
    max-width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between logo and nav/user sections */
    max-width: 1800px;
    margin: 0 auto; /* Center the container */
    width: 100%;
}

/* Logo Section */
.header-logo {
    display: flex;
    flex: 1; /* Allows the logo section to grow as needed */
}

 .logo {
    max-width: 300px;
    height: auto;
}

/* Navigation and User Section */
.header-nav-user {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between nav and user section */
}

/* Navigation Links */
.header-nav .nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .nav-link {
    text-decoration: none;
    font-size: 24px;
    font-family: 'Futura Cyrillic Book', Arial, sans-serif;
    color: #ffffff !important;
    font-weight: normal;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.header-nav .nav-link:hover {
    color: #A69160 !important; /* Gold hover effect */
}

/* User Section */
.header-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-user a {
  text-decoration: none;
}

.user-batch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  color: #ffffff;
  text-decoration: none; /* Removes underline from link */
}

.user-batch span {
font-size: 12px;
  color: white;
}


.user-icon img {
    width: 30px;
    object-fit: cover;
    text-align: center;
  }


.menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle .menu-line {
    width: 26px;
    height: 3px;
    border-radius: 25px;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover span {
   background-color: #c8a165; /* Gold hover effect */
}

/*/////////////////*/
/* mobile Nav */
/*/////////////////*/


/* Mobile Navigation Styles */
.mobile-nav {
    display: none; /* Hidden by default */
    position: absolute;
    top: 90px;
    right: 0;
    background: #000000;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin: 10px 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 18px;
    display: block;
    padding: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav-item:hover a {
    color: #A69160 !important;
}

/* Close Menu Button */
.close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ffffff !important;
    font-size: 30px;
    cursor: pointer;
    z-index: 1100;
    transition: color 0.3s ease;
    text-decoration: none;
}

.close-menu:hover {
    color: #A69160 !important;
    text-decoration: none;
  /* Gold hover effect */
}


/* Responsive Design: Hide Desktop Navigation, Show Hamburger Menu */

/* Hide Desktop Navigation, Show Hamburger Menu */
@media (max-width: 1024px) {
    .header-nav {
        display: none; /* Hide desktop navigation */
    }

    .menu-toggle {
        display: flex; /* Show hamburger menu */
    }

    .mobile-nav.active {
        display: block; /* Show mobile navigation */
    }
}

/* Hide Hamburger Menu, Show Desktop Navigation */
@media (min-width: 1025px) {
    .menu-toggle {
        display: none; /* Hide hamburger menu */
    }

    .header-nav {
        display: flex; /* Ensure desktop navigation is visible */
    }
}

/* For Small Screens (less than 500px) */
@media (max-width: 500px) {
    .logo {
        max-width: 100%; /* Smaller size for small screens */
        align-self: flex-start;
        text-align: left;
    }
}


