
body, html {
    overflow-x: hidden !important;
}
/* Header Styles */
header {
    width: 100%;
    background-color: #e9e9e9;
    color: #fff;
    /* position: fixed; */
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0px;
    align-items: center;
    transition: max-height 0.6s ease;
}

nav ul li a {
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #020000;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 6px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FF9900;
}

ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #FF9900;
    transition: width 0.3s ease;
}
nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}
.neon-pulse {
    background: #EBBD33;
    border: 2px solid #FF9900;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
    overflow: visible;
    border-radius: 14px;
}
nav .btn {
    position: relative;
    padding: 10px 20px;
    color: #000;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
nav .btn:hover{
    background-color: #EBBD33;
}
.neon-pulse::before,
.neon-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid #FF9900;
    border-radius: inherit;
    animation: pulseOut 2s ease-out infinite;
    opacity: 0;
}

.neon-pulse::after {
    animation-delay: 1s;
}

@keyframes pulseOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.hamburger {
    display: none; /* keep your original */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease; /* add smooth animation */
}

/* Cross (X) when active */
.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0; /* middle line disappears */
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



/* Footer css start */
.site-footer {
    background-image: url('/front/img/group.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: #111;
    font-size: 15px;
    margin-top: 15em;
    padding-bottom: 20px;
}
.site-footer .container, .footer-bottom .container{
    max-width: 1250px;
}

.footer-brand {
    border-radius: 12px;
    display: inline-block;
}

.brand-title {
    color: #f9a11b;
    margin: 0;
    font-weight: 700;
}

.brand-tagline {
    color: #fff;
    font-size: 13px;
    margin: 5px 0 0;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

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

.footer-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-list a {
    color: #111;
    text-decoration: none;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
}

.footer-social a:hover {
    opacity: 0.85;
}

.footer-list i {
    margin-right: 8px;
    font-size: 19px;

}
.footer-social {
    text-align: center;
    margin-top: -10px;
}
.site-footer .footer-title{
    font-family: "Poppins", Sans-serif;
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 30px;
    padding-bottom: 20px;
}
.contact-info li:not(:last-child) {
    padding-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    margin-top: 3px; /* aligns icon with first line */
    flex-shrink: 0;
}

.contact-item a {
    line-height: 1.6;
    display: block;
}
.contact-column {
    padding-left: 45px;
}

.nav-column {
    padding-left: 60px;
}
.footer-bottom {
    background-color: #373737;
    padding: 20px 0px;
}
.footer-bottom p, .footer-bottom a {
    font-family: "Inter", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
}
.footer-bottom .divider{
    color: #fff;
}
/* Footer css end */

@media only screen and (max-width: 1200px){
    nav ul {
        gap: 18px;
    }
}
@media only screen and (max-width: 1024px){
    nav ul {
        padding-left: 0px;
    }
}



/* Mobile Menu */
@media (max-width: 998px) {
    nav ul {
        position: absolute;
        top: 165px;
        left: 0;
        width: 100%;
        background-color: #333;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        display: none;
    }

    nav ul li {
        margin: 0;
    }
    nav ul.active li{
        width: 100%;
        padding: 10px 20px;
    }
    nav ul.active {
        display: unset !important;
    }
    nav ul.active li a{
        color: #000;
    }

    nav ul.active {
        max-height: 300px;
        background-color: #fff;
        gap: 0px;
    }
    nav ul.active li:hover {
        background-color: #EBBD33;
    }
    nav ul.active li:hover a{
        color: #fff !important;
    }

    .hamburger {
        display: flex;
        background-color: #EBBD33;
        padding: 10px 7px;
        gap: 4px;
    }
    .neon-pulse::before, .neon-pulse::after{
        display: none;
    }
    .neon-pulse{
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 !important;
        text-transform: capitalize !important;
    }
    nav .btn:hover{
        background-color: transparent !important;
    }

}

@media only screen and (max-width: 767px){
    .logo {
        width: 270px;
    }

    .logo img {
        width: 100%;
        margin-left: -10px;
    }
    header .container{
        padding: 0px 10px;
    }
    nav ul.active{
        top: 115px !important;
    }
    .footer-brand img{
        width: 100%;
        margin-left: -20px;
    }
    .contact-column, .nav-column {
        padding-left: 0px;
    }
    .site-footer .footer-title{
        padding-top: 0px;
        padding-bottom: 10px;
        font-size: 22px;
    }
    .footer-social {
        text-align: left;
        padding-top: 10px;
    }
    .footer-brand{
        width: 270px;
    }
    .contact-info li:not(:last-child) {
        padding-bottom: 10px;
    }
    .site-footer {
        padding: 0px 10px 20px;
    }
    .site-footer br{
        display: none;
    }
    nav .btn{
        font-size: 17px;
    }
    nav ul li a:hover::after {
        display: none;
    }
    nav ul.active{
        transition: max-height 0.3s ease;
    }
}

.authForm{width: 500px;
padding: 30px;
margin: 5em auto 0;
background: #fffefb;
border-radius: 10px;
}
