@import url('https://fonts.googleapis.com/css2?family=Balthazar&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Navbar Styles */
body {
    font-family: Arial, sans-serif;
    /* line-height: 1.6; */
}


/* Marquee */
marquee {
    display: block;
    padding: 7px 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #fda31b;
    margin-bottom: 0;
}




/* Optional animation for marquee fade effect */
@keyframes marquee-fade {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}


/* Optional animation for marquee fade effect */
@keyframes marquee-fade {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Navbar Styles */
.ams-navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    transition: background-color 0.3s ease;
}

/* Logo Section */
.ams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ams-logo {
    display: flex;
    align-items: center;
}

.ams-logo-img img {
    height: 50px;
    width: auto;
}

.ams-sname a {
    font-family: "Open Sans", Times, serif;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1.5rem;
    color: #333;
    margin-left: 10px;
    font-weight: bold;
}


/* Toggler Button */
.ams-toggler {
    border: none;
    background: transparent;
    display: none;
}

.ams-toggler-icon {
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: #333;
    position: relative;
}

.ams-toggler-icon::before,
.ams-toggler-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.ams-toggler-icon::before {
    top: -8px;
}

.ams-toggler-icon::after {
    top: 8px;
}

/* Navbar Collapse */
.ams-navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

.ams-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.ams-nav-item {
    margin: 0 10px;
}

.ams-nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.ams-nav-link:hover {
    color: #000;
}

/* Apply Button */
.ams-btn-apply {
    background-color: #fda31b;
    border-radius: 50px 50px 0px 50px;
    color: #000;
    font-weight: bold;
    padding: 5px 15px;
    text-decoration: none;
}

.ams-btn-apply:hover {
    background-color: #e0a800;
    color: #fff;
}

/* Responsive Styles for Hamburger Menu */
@media (max-width: 991px) {
    .ams-toggler {
        display: block;
        margin-left: auto; /* Aligns the hamburger on the left */
    }

    .ams-navbar-collapse {
        display: none; /* Initially hidden */
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        position: absolute; /* Ensures it does not overlap other elements */
        top: 70px; /* Pushes the menu below the navbar */
        left: 0;
        background-color: #fff; /* Background for better visibility */
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
    }

    .ams-navbar-collapse.active {
        display: flex; /* Show the menu when active */
    }

    .ams-nav-list {
        /* background-color: #fda31b3b; */
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .ams-nav-item {
        width: 100%;
        margin: 0;
        text-align: left;
    }

    .ams-nav-link {
        padding: 20px 20px;
        display: block;
        width: 100%;
        color: #333;
    }

    .ams-btn-apply {
        background-color: transparent; /* Make the background consistent with other buttons */
        color: inherit;               /* Use the same text color as other buttons */
        font-weight: normal;          /* Remove bold styling */
        padding: 20px 20px;           /* Match padding with other buttons */
        text-align: left;             /* Align text to the left */
        border-radius: 0;             /* Remove border radius */
        width: auto;                  /* Ensure it doesn't stretch unnecessarily */
    }
}


@media (max-width: 576px) {
    .ams-sname a {
        font-size: 1.2rem;
    }

    .ams-logo-img img {
        height: 40px;
    }
}