* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #EC407A;
    --text-color: #ffffff;
    --heading-font: 'Roboto', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --main-color:#2196F3;
    --max-width:1300px;

}

html,body {
    width: 100%;
    font-family: var(--body-font);
}



/* --- Header Styles --- */

header{
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    z-index: 2000;
    
}

.top-bar {
            background-color: var(--main-color);
            color: var(--text-color);
            padding: 5px 0;
        }

        .top-bar-content {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 3001;
        }


        .contact-info {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        .contact-item>a{
            text-decoration: none;
            color: #fff !important;
        }
        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 25px;
            height: 25px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--main-color);
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }



.container{    
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 97%;
    
}
.logo{

    z-index: 3001;
}
.logo img {
    height: auto;
    max-height: 100px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu li{
    position: relative;
}
.nav-menu li::after{
    content: "|";
    position: absolute;
    right: -17px;
    color: #dadada;
    top: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    /* padding: .5rem 1.2rem; */
    padding-bottom: .4rem ;
    letter-spacing: 0.05em;
    transition: 0.3s;
    font-weight: 500;
    position: relative;
    
}

/* underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* hover in */
.nav-menu a:hover::after {
    
    transform: scaleX(1);
}

/* hover out → right side */
.nav-menu a:not(:hover)::after {
    transform-origin: right;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    position: relative;
    z-index: 3001; 

}

.hamburger span {
    width: 30px;
    position: relative;
    height: 2px;
    color: var(--text-color);
    background-color: var(--text-color);
    transition: all 0.4s ease;
    z-index: 9;
}


.hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



.nav-menu.is-open {
    transform: translateY(0);
    background-color: var(--bg-color); 
}


.hover-reveal {
    position: relative;
    display: inline-block;
    overflow: hidden; 
    text-decoration: none;
    color: #ffffff; 
    
    font-size: 1.5rem;
    line-height: 1.2;
}


.hover-reveal span {
    display: block;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}


.hover-reveal::before {
    content: attr(data-hover); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    transform: translateX(-100%); 
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    color: #ffffff; 
}




.hover-reveal:hover span {
    transform: translateX(100%);
}


.hover-reveal:hover::before {
    transform: translateX(0);
}


.policy_sec{
    padding-left: .5rem;
    display: flex;
    gap: 15px;


    
    
}
.policy_sec a{
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}


/* --- Mobile Responsive Fixes (968px and below) --- */
@media screen and (max-width: 968px) {

    

       .top-bar-content {
        
                justify-content: center;
                text-align: center;
            }

            .contact-info {
                justify-content: center;
                gap: 15px;
            }

            .contact-item {
                font-size: 12px;
            }

            .social-icons {
                margin-top: 10px;
            }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color); /* Solid Black BG */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        /* Slide from Top Logic */
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 3000;
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-menu a {
        border-right: none;
        border-bottom: 2px solid #dadada;
        font-size: 1.4rem;
        font-family: var(--heading-font);
    }
}


@media (max-width:480px) {
    .logo img{
        height: 55px;
    }
      .contact-info {
        
                gap: 25px;
            }
    .contact-item{
        gap: 5px;
    }
        .container{
        padding: .2rem 1.2rem;
        }


        .top-bar-content{
                gap: .6rem;
            }

        .nav-menu li::after{
            content: none;
        }

        .policy_sec a{
            font-size: 8px;
        }

        

}

