header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff; /* or your navbar background color */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* optional for nice shadow */
}
/* Navbar styles */
.navbar {
    position: relative;
    margin: 0 auto;
    max-width: 2000px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    font-family: "Roboto",sans-serif;
    z-index: 10;
}

.navbar-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.navbar-brand a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.navbar-brand img{
    position: relative;
    width: 120px;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-menu li a{
    color: #000;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}
.navbar-menu li a span{
    position: relative;
    left: 15px;
    text-align: center;
    color: #FF6F00;
}

.navbar-menu li a:hover {
    color: #ccc;
}

.contact-us-btn-large ,
.contact-us-btn-small{
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid #FF6F00;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contact-us-btn-large:hover {
    background-color: #FF6F00;
}
.contact-us-btn-small:hover {
    background-color: #FF6F00;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px 30px 0px 0px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: #FF6F00;
}


/* PopUp */
.popup-trigger {
    position: relative;
    cursor: pointer;
}

.popup-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* Arrow styling */
.popup-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.popup-trigger:hover .popup-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popup-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

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

.popup-list-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.popup-list-item::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
}

.popup-list-item:hover{
    color: #2563eb;
}

/*  PopUp Responsive styles */
@media (max-width: 768px) {
    .popup-content {
        width: 260px;
        left: auto;
        right: 0;
        transform: translateX(0);
    }

    .popup-content::before {
        left: 80%;
    }

    .popup-trigger:hover .popup-content {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 220px;
        right: -50px;
    }
}


/* Mobile Menu Styles */
@media (min-width: 969px) {
    .contact-us-btn-small{
        display: none;
    }
    .navbar-brand a {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .navbar-container {
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .contact-us-btn-large {
        display: none;
    }

    .contact-us-btn-small.active {
        display: inline-block;
        margin-top: 1rem;
    }

    .navbar-brand a {
        font-size: 2rem;
    }

}

@media (max-width: 640px) {
    .info-bar {
        font-size: 0.875rem;
        padding: 0.25rem;
        gap: 1rem;
    }

    .navbar-container {
        padding: 0.75rem 1rem;
    }

    .navbar-menu {
        padding: 0.75rem;
    }

    .contact-us-btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    .navbar-brand a {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .info-bar {
        flex-direction: row;
        gap: 1rem;
        padding: 0.5rem;
    }

    .navbar-brand a {
        font-size: 1.5rem;
    }
}




/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 150px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu li a {
    padding: 12px 16px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background-color: #fff;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: all 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px; /* Add a max height to allow smooth animation */
    }

    .dropdown-trigger {
        position: relative;
        left: 40px;
        width: 100%;
        text-align: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .dropdown-trigger .arrow{
        position: relative;
        left: -70px;
    }


    /* Add mobile toggle functionality */
    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }
}