* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* hides unwanted horizontal scroll */
    width: 100%;
}


.background-blue {
    background: linear-gradient(to right bottom, #000000, #003f7d);
}

.navbar {
    margin-bottom: 30px !important;
    padding: 10px 20px !important;
}


@media (max-width:1024px) {

    .navbar-brand span,
    .ue-logo {
        margin-bottom: 30px !important;
    }

    .navbar-toggler-icon {
        filter: invert(100%) brightness(200%);
    }

}
.navbar-brand {
    font-weight: bold !important;
    color: white;
    display: flex;
    align-items: center !important;
    margin-left: 30px !important;
    margin-right: 40px !important;
}

.navbar-brand span {
    margin-top: 5px;
    color: white;
    font-size: 25px;
    align-items: center;
}

.navbar-brand img {
    height: 45px;
    width: 45px;
    margin-right: 8px !important;
}

.nav-link {
    color: white !important;
    font-size: 17px !important;
    font-family: 'Inter', sans-serif;
}

.navbar-nav .nav-item {
    margin-right: 15px !important;
    /* Adjust as needed */
}

.nav-link.active {
    font-weight: bold;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional: Smooth transition */
.dropdown-menu {
    display: none;
    transition: all 0.3s ease-in-out;
}



.btn-phone {
    /* background-color: black; */
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.5); 
    border-radius: 50px;
    padding: 12px 24px !important;
    height: 55px !important;
    width: 220px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 1.1rem !important; 
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
    position: relative !important;
    overflow: hidden;
    font-family: 'Poppins', sans-serif !important;
}

.btn-phone i {
    margin-right: 10px !important;
    font-size: 1.2rem !important;
}

.btn-phone::before {
    content: "";
    position: absolute;
    inset: 0px; /* Ensures border doesn't overlap */
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-phone:hover {
    background-color: #FFD700 !important;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 50px;
}

/* 
@media (max-width:768px) {
    .abc {
        width: 100vh !important;
    }
    .custom-card{
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 800px !important;
        margin-left: 100px !important;
    }
    .custom-card-image{
        width:700px !important;
        height: 400px !important;
    }
}

@media (max-width:1024px) {

    .abc {
        width: 1000px !important;
    }
    .custom-card{
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 800px !important;
        margin-left: 100px !important;
    }
    .custom-card-image{
        width:700px !important;
        height: 470px !important;
    }
} */


.heading-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.heading-section {
    position: relative;
    display: inline-block;
    margin-top: 30px;
}

.container{
    font-size: 22px;
    font-family:  'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.subtext {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 180px;
    display: block;
    
}

.underline-text {
    position: relative;
    display: inline-block;
}

.underline-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 5px;
    background-color: blue;
    animation: underline-animation 3s ease-in-out forwards;
}

/* Keyframes for left-to-right animation */
@keyframes underline-animation {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px); /* Start from 50px below */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }
}

.animated-text {
    animation: slideUp 1.5s ease-out;
}

.custom-card {
    background: #F5F9FF;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1250px;
    margin: -90px auto 100px auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.custom-card-image {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px;
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .custom-card {
        padding: 20px;
        margin-top: -40px;
    }

    .custom-card-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .custom-card {
        padding: 20px;
        border-radius: 20px;
    }

    .custom-card-image img {
        border-radius: 20px;
    }
}


/* @media (max-width:768px) {
    .custom-card{
        height: 520px;
    }
    .custom-card-image{
        width: 370px;
        height: 500px;
    }
}

@media (max-width:1024px) {
    .custom-card-image{
        width: 720px;
    }
} */


.foo-bg{
    background: linear-gradient(to right bottom, #000000, #003f7d);

}
/* 
@media (max-width:768px) {
.foo{
    width: 1000px;
}
} */