@import 'tailwindcss';
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    font-family: 'Quicksand';
    min-height: 100vh;
    padding: 0;    
    cursor: default;
}
input{
    font-family: 'Quicksand';
}

button{
    cursor: pointer;
    font-family: 'Quicksand';
}
.main-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* max-width: 1440px ; */
    /* width: 100%; */
    position: relative;
    margin: 0 auto;
}
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    background-color: white;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}


.website-logo img{
    width: 200px;
    height: 100px;
    object-fit: cover;
}


.navbar-container {
    max-width: 1440px;   /* content limit */
    margin: 0 auto;      /* center content */
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 40px;
}


.navbar-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #FFFFFF;
}




.footer{
    position: relative;
    width: 100%;              /* full screen background */
    background-color: #413894;
    color: white;
    z-index: 10;
    padding-top: 40px;
    padding-bottom: 40px;
    height: 328px;
}

.footer-container {
   max-width: 1440px;        /* content constraint */
    margin: 0 auto;           /* center horizontally */
    height: 100%;
    display: flex;
    justify-content: space-between; /* adjust as per layout */
    align-items: flex-start;        /* or center, depending on design */
    padding: 0 42px; 
}

.footer-logo{
    width: 293px;
    height: 147px;
}

.footer-logo h1{
    font-size: 28.8px;
    font-weight: 600;
    color: #FFFFFF;     
    font-style: semibold;
    font-family: 'Inter';
}   

.footer-logo p{
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    width: 276px;
    text-align: left;
}

.footer-logo-social-media{
    display: flex;
    gap: 16px;
    margin-top: 19px;
}

.footer-logo-social-media-item{
    width: 39.37px;
    height: 39.37px;
    background-color: #483EA3;
    border: 2px solid #4D43B1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 19.68px;

}





.footer-program-menu{
    margin-left: 57px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#res{
    margin-left: 154px;
}
#contact{
    margin-left: 209px;
}

.footer-program-menu-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 24px;    
}
.footer-program-menu-item{
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
}
.footer-program-menu-item:hover {
    color: #FFAA3E;
}

.footer-copyright{
    position: absolute;
    bottom: 24.14px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
}



body.marketing-page .navbar{
    background-color: #3D348B;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 10; */
}
body.about-us-page .navbar{
    background-color: #413894;
    
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 10; */
}

body.contact-us-page .navbar{
    background-color: #FFFFFF;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 10; */
}

.navbar-logo h1{
    font-size: 28.8px;
    font-weight: 600;
    color: #FFFFFF;     
    font-family: 'Inter';
}

.navbar-logo1 h1{
    font-size: 28.8px;
    font-weight: 600;
    color: #1E1E1E;     
    font-family: 'Inter';
}

.navbar-menu{
    display: flex;
    gap: 20px;
    padding: 8px 0px;
}



.navbar-menu a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color:#A5A5A5;
    padding: 10px 16px;
}

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

.navbar-menu a.active{
    border: 1.5px solid #FF930A;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: white;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-menu a.team-contact.active {
    color: #1E1E1E; /* Special text color */
}
.navbar-logo h1.team-contact.active {
    color: #1E1E1E; 
}


.navbar-login{
    display: flex;
    gap: 16px;
}
.navbar-login>a{
    height: 44px;
    border-radius: 12px;
    background-color:#3D348B;
    border:1.5px solid #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
}
.navbar-login> a:nth-child(2){
    background-color: #FFFFFF;
    color: #3D348B;
    padding: 11px 18px;

}
.mobile-login {
    display: none;
}


.footer-logo-img {
    width: 200px;
    height: 37px;
    object-fit: cover;
}



@media screen and (max-width: 767px) {
    .main-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 393px ;
        width: 100%;
        position: relative;
        margin: 0 auto;
    }

    .navbar-container {
    max-width: 393px;   /* content limit */
    margin: 0 auto;      /* center content */
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 26px;
}
.website-logo{
    height: 40px;
}

.website-logo img {
    width: 200px;
    height: 54px;
    object-fit: cover;
}





    .footer{
        position:relative;
        /* width: 100%; */
        min-width: 393px !important;              /* full screen background */
        height: 754px;
        padding-top:24px;
        padding-left:24px;
        padding-right: 40px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .footer-container {
   max-width: 393px;        /* content constraint */
    margin: 0;           /* center horizontally */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: unset;
    gap: 40px;
    align-items: flex-start;        /* or center, depending on design */
    padding: 0; 
}
    .footer-logo{
        width: 293px;
        height: auto;
    }

    .footer-program-menu{
        margin-left: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 164px;
    }

    #res{
        position: absolute; 
        top: 268px;
        right:44px;
        margin-left: 0;
        width: 141px;
        height: 166px;
    }

    #contact{
        margin-left: 0;
        /* width: 211px; */
        width: auto;
        height: 130px;
    }
    .footer-program-menu-title{
        font-size: 22px;
        line-height: 22px;    
    }
    #diff{
        line-height: 22px;
    }


   .navbar {
        height: auto;
        width: 100%;
        /* width: 393px; */
    }

    /* Hamburger */
    .navbar-toggle {
        display: block;
    }

    /* Mobile menu positioned absolutely */
    .navbar-menu {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Directly under navbar */
        left: 0;
        width: 393px;
        background:#FFFFFF;
        flex-direction: column;
        padding: 20px;
        /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.15); */
        box-shadow: 0px 0px 24px 0px #E2E2E2;
        z-index: 999;
    }

    .navbar-menu.show {
        display: flex; /* Show when toggled */
        gap: 0px;
        padding: 0px;
    }

    /* Mobile login inside menu */
    .navbar-login {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .navbar-login.show {
        display: flex;
    }

    .desktop-login {
        display: none;
    }
    .mobile-login {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }




 .navbar-toggle-light {
    color: #FFFFFF;
}
.navbar-toggle-dark {
    color: #1E1E1E;
}

/* Links */
    .navbar-menu a {
        padding: 24px 24px;
        font-size: 16px;
        font-weight: 600;
        color: #000000;
    }
    .navbar-menu a.active {
        padding: 24px 24px;
        font-size: 16px;
        font-weight: 600;
        color: #000000;
        background-color: #FFAA3E33;
        border: 1.5px solid #FF930A;
        border-radius: 0%;
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

       .navbar-login>a{
    height: 44px;
    border-radius: 12px;
    background-color:#3D348B;
    border:1.5px solid #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    }
    .navbar-login> a:nth-child(2){
    background-color: #FFFFFF;
    color: #3D348B;
    padding: 11px 18px;
    border: 1.5px solid #E2E2E2;

}


  

  









}