* {
    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;
}



.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;
}


.container{
    margin-top: -70px;
}

.custom-cards {
    background: linear-gradient(to right bottom, #000000, #003f7d);
    border: none;
    border-radius: 20px !important;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    max-width: 550px;
    height: auto;
    margin-bottom: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.custom-cards:hover {
    transform: scale(0.98);
    background: linear-gradient(to right bottom, #003f7d, #023f85);
}

.card-title {
    color: white !important;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.fixture-image-group {
    gap: 20px;
}

.fixture-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .custom-cards {
        padding: 15px;
        border-radius: 15px !important;
    }

    .fixture-image {
        width: 140px;
        height: 140px;
    }

    .card-title {
        font-size: 22px;
    }
}
@media (max-width: 1024px) {
    .custom-cards {
        padding: 15px;
        border-radius: 15px !important;
    }

    .fixture-image {
        width: 170px;
        height: 140px;
    }

    .card-title {
        font-size: 22px;
    }
}



.foo-bg{
    background: linear-gradient(to right bottom, #000000, #003f7d);

}
/* @media (max-width:768px) {
.foo{
    width: 1000px;
}
} */