* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    background: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the image still while you scroll */
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Navbar link styles */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 0.85rem;
}

.navbar-nav .active-link{
    border-bottom: 2px solid #ff0155;
}

/* The specific pink/magenta button */
.btn-custom {
    background-color: #ff0155 !important; /* Magenta/Pink shade */
    color: white !important;
    border: none;
}



/* Ensure buttons have white borders as seen in image */
.btn-outline-light {
    border-width: 1px;
    font-size: 0.9rem;
}
.btn-outline-light:hover {
    background-color: #ff0155 !important; 
    color: white !important;
    border-color: #ff0155 !important;
}



h1,h2,h3,h4,h5,p{
    color: white !important;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    color: white !important;
}
.custom-list li
{
    line-height: 40px;
}
.custom-list li::before {
    content: "\f058"; /* FontAwesome Unicode for a circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff006e;
    margin-right: 10px;
}
.glass-effect
{
    background: rgba(55, 55, 55, 0.1); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.075);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); 
}
.lead-form {
    border-radius: 20px;
    padding: 2rem;
    color: white;
}
.form-control {
    background: radial-gradient(79.31% 91.33% at 58.42% -29.63%, rgba(191, 195, 203, 0.1) 0%, rgba(18, 20, 22, 0.17) 100%) !important;
    border-radius: 4px !important;
    box-shadow: 2px 2px 20px 0px #000000 !important;
    border: 1px solid transparent !important;
    font-size: 12px o !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: 0em !important;
    text-align: left !important;
    color: #fff !important;
    color-scheme: dark !important;
}
.form-control option{
    color: black !important;
}
.video-container
{
    max-width: 600px;
}

.text-custom-color
{
    color: #ff0155;
}





/* Welcome Text */
.login-info .welcome {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 10px;
}

/* Big Title */
.login-info .welcome-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Paragraph */
.login-info .welcome-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Pink Highlight */
.text-pink {
    color: #ff2e93 !important;
    font-weight: 600;
}

/* Icon List */
.loginlist {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.loginlist li {
    text-align: center;
    width: 100px;
}

/* Glass Icon Box */
.loginlist .img-box i {
    font-size:28px;
    color:white;
    height:70px;
    width:70px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}

.loginlist .img-box:hover i{
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}


.loginlist p {
    font-size: 13px;
    margin-top: 5px;
    opacity: 0.85;
}


@media (max-width: 576px) {
    .video-container
    {
        width: 90%;
    }
    .loginlist li {
        text-align: center;
        width: 80px;
    }
    .loginlist .img-box i {
        font-size:18px;
        height:50px;
        width:50px;
        margin: 0 auto 4px;
    }


}