@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #041827;
    color: #ededed;
}

/* LOGO */
.logo{
    font-size: 25px;
    font-weight: 600;
    color: #ededed;
    text-decoration: none;
}



/* HOME */
.home{
    min-height: 100vh;
    background: url('bg2.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

/* CONTENT */
.home-content{
    max-width: 600px;
}

.home-content h1{
    font-size: 52px;
    line-height: 1.2;
}

.home-content h3{
    font-size: 32px;
    color: #00abf0;
    margin: 10px 0;
}

.home-content p{
    font-size: 16px;
    margin: 20px 0;
}

/* BUTTONS */
.btn-box{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-box a{
    position: relative;
    width: 150px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    color: #041827;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
    z-index: 1;
}

.btn-box a::before {
    z-index: 0; /* behind link */
}

.btn-box a:nth-child(2){
    background: transparent;
    color: #00abf0;
}

.btn-box a:nth-child(2):hover {
    color: #041827 !important;
    background: #00abf0;  /* force it to change on hover */
}

.btn-box a:hover{
    background: #041827;
    color: #00abf0;
}

/* SOCIAL ICONS */
.home-sci{
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.home-sci a{
    width: 40px;
    height: 40px;
    border: 2px solid #00abf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00abf0;
    font-size: 20px;
    transition: .4s;
}

.home-sci a:hover{
    background: #00abf0;
    color: #041827;
}


.navbar {
    background: transparent;
}

/* NAV LINKS */
.navbar .nav-link {
    color: #ffffff !important; /* ensures white text */
    font-size: 18px;
    margin: 10px 0;
    transition: color 0.3s; /* smooth hover */
    text-decoration: none !important; /* remove underline if any */
}

/* HOVER AND ACTIVE LINK */
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #00abf0 !important; /* blue on hover or active */
}

@media (max-width: 770px) {
    body {
        background: #0a1f3c; /* dark blue color */
        background-image: none !important; /* remove image */ 
    }
    .home-content {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
    padding-right: 30px;
                    }
}
@media (max-width: 1000px) {
    
    .home {
        background: #041827 !important; /* dark blue */
    }
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none; /* remove default focus shadow */
}

/* Toggle shadow when menu is expanded */
.navbar-toggler:not(.collapsed) {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* MOBILE NAVBAR CENTER FIX */
@media (max-width: 991px) {

    /* Center the whole menu */
    .navbar-collapse {
        text-align: center;
    }

    /* Center nav list */
    .navbar-nav {
        align-items: center;
        margin: 0 auto;
    }

    /* Remove side margins & center links */
    .navbar-nav .nav-link {
        margin: 10px 0 !important;
        padding: 8px 0;
        text-align: center;
    }

    /* REMOVE DESKTOP RIGHT MARGIN ON MOBILE */
    .navbar-nav .me-5 {
        margin-right: 0 !important;
    }
}
