/* Hero Section Wheel Styles */
.wheelWrapper {
    position: relative;
    height: 50vh;
    max-height: 520px;
    min-height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheelWrapper .wheel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 520px;
    height: auto;
    z-index: 1;
}

.wheelWrapper .wheel .frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}

.wheelWrapper .wheel .circle {
    position: absolute;
    width: 75%;
    height: auto;
    animation: spinner 2s ease-in-out infinite;
}

.wheelWrapper .wheel .circle.animationOne {
    animation: spinToOne 4s ease-in-out 1 forwards;
}

@keyframes spinToOne {
    0% { transform: rotate(0); }
    70% { transform: rotate(680deg); }
    80% { transform: rotate(670deg); }
    100% { transform: rotate(675deg); }
}

.wheelWrapper .wheel .circle.animationTwo {
    animation: spinToTwo 4.5s ease-in-out 1 forwards;
}

@keyframes spinToTwo {
    0% { transform: rotate(3deg); }
    70% { transform: rotate(1129deg); }
    80% { transform: rotate(1120deg); }
    100% { transform: rotate(1125deg); }
}

@keyframes spinner {
    0% { transform: rotate(3deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(3deg); }
}

.wheelWrapper .wheel .button {
    position: absolute;
    width: 20%;
    height: auto;
    min-width: 100px;
    min-height: 100px;
    z-index: 100;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .wheelWrapper {
        height: 40vh;
        min-height: 250px;
    }

    .wheelWrapper .wheel {
        max-width: 400px;
    }

    .wheelWrapper .wheel .circle {
        width: 80%;
    }

    .wheelWrapper .wheel .button {
        width: 25%;
        min-width: 80px;
        min-height: 80px;
    }
}

@media (max-width: 767.98px) {
    .wheelWrapper {
        height: 35vh;
        min-height: 200px;
    }

    .wheelWrapper .wheel {
        max-width: 300px;
    }

    .wheelWrapper .wheel .circle {
        width: 80%;
    }

    .wheelWrapper .wheel .button {
        width: 30%;
        min-width: 60px;
        min-height: 60px;
    }

    #hero .cta-wrapper h2 {
        font-size: 2rem;
    }

    #hero .cta-wrapper p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .wheelWrapper {
        height: 30vh;
        min-height: 150px;
    }

    .wheelWrapper .wheel {
        max-width: 250px;
    }

    .wheelWrapper .wheel .circle {
        width: 75%;
    }

    .wheelWrapper .wheel .button {
        width: 35%;
        min-width: 50px;
        min-height: 50px;
    }

    #hero .cta-wrapper h2 {
        font-size: 1.5rem;
    }

    #hero .cta-wrapper p {
        font-size: 0.875rem;
    }

    #hero .button-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    #hero .button-group .btn {
        width: 100%;
    }
}

/* Hero Section CTA Styles */
#hero .cta-wrapper {
    padding: 2rem 0;
    border-radius: 10px;
    margin: 0 1rem;
}

#hero .cta-wrapper h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark);
}

#hero .cta-wrapper p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto;
}

#hero .button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Why Choose Us Section Styles */
#why-choose-us {
    background: var(--white);
}

.why-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-item i {
    display: block;
    margin-bottom: 1.5rem;
}

.why-item h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--dark);
}

.why-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--light);
    padding: 15px 0;
    z-index: 1000;
    border-top: 1px solid var(--primary);
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* Services Section Styles */
#services {
    background: var(--white);
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(40, 120, 235, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card i {
    display: block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

//* Countdown Timer Section Styles */
#countdown-timer {
    background: var(--light);
    padding: 4rem 0;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.countdown-value {
    display: block;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 767.98px) {
    #countdown-timer {
        padding: 2rem 0;
    }

    .countdown-wrapper {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }

    #countdown-timer h1.display-5 {
        font-size: 2rem;
    }

    #countdown-timer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .countdown-item {
        padding: 0.75rem 1rem;
        max-width: 250px;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .countdown-label {
        font-size: 0.85rem;
    }

    #countdown-timer h1.display-5 {
        font-size: 1.5rem;
    }

    #countdown-timer p {
        font-size: 0.9rem;
    }

    #countdown-timer .btn {
        width: 100%;
        padding: 0.75rem;
    }
}
/* How It Works Section Styles */
#how-it-works {
    background: var(--light);
    padding: 4rem 0;
}

.step-card {
    background: #ffffff;
    border: 1px solid rgba(40, 120, 235, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.step-card i {
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-features li {
    margin-bottom: 0.5rem;
}

.step-features i {
    margin-right: 0.5rem;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.number-grid span {
    background: var(--light);
    border: 1px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.win-prize {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.win-prize span {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #d4af37;
    display: block;
}

.win-prize p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--dark);
    margin: 0;
}

/********** Template CSS **********/
:root {
    --primary: #019dda;
    --secondary: #ff9200;
    --light: #ECF4FF;
    --dark: #120F2D;
    --white: #ffffff;
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary,
.btn-primary:hover,
.btn-secondary:hover {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 15, 45, .5);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-indicators {
    align-items: flex-end;
}

.carousel-indicators [data-bs-target] {
    width: 5px;
    height: 25px;
}

.carousel-indicators .active {
    height: 45px;
}

.hero-header {
    background: linear-gradient(rgba(18, 15, 45, .5), rgba(18, 15, 45, .5)), url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(18, 15, 45, .5), rgba(18, 15, 45, .5)), url(../img/carousel-2.jpg) top right no-repeat;
    background-size: cover;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 5px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.blog-date {
    position: absolute;
    width: 90px;
    height: 65px;
    top: 75px;
    left: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--secondary);
}

.blog-date::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -25px;
    left: 0;
    border: 13px solid;
    border-color: transparent #D34351 #D34351 transparent;
    z-index: -1;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 15, 45, 0.8);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: auto;
    font-family: 'Jost', sans-serif;
}

.modal.age-verification {
    display: flex;
}

.modal .content {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal .content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.modal .content p {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: 'Open Sans', sans-serif;
}

.modal .content .buttonWrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.modal .content .button {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    transition: background 0.3s ease;
    text-transform: none;
    font-style: normal;
}

.modal .content .button:hover {
    background: var(--secondary);
}

/* Wheel Button Styles */
.wheelWrapper .wheel .button.start {
    cursor: pointer;
    width: 20%;
    height: auto;
    min-width: 100px;
    min-height: 100px;
    z-index: 100;
}

.buttonWrapper .button.start {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.buttonWrapper .button.start:hover {
    background: var(--secondary);
}

.buttonWrapper .button.start i {
    font-size: 1.25rem;
}

.buttonWrapper .button.start span {
    font-size: 1.125rem;
    text-transform: none;
    font-style: normal;
}

   .services-container {
            background: var(--light);
            padding: 4rem 0;
            font-family: 'Open Sans', sans-serif;
        }

        .services-container h2 {
            font-family: 'Jost', sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            color: var(--dark);
            text-align: center;
            margin-bottom: 1rem;
        }

        .services-container .intro-text {
            text-align: center;
            font-size: 1.125rem;
            color: var(--dark);
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .service-section {
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin: 2rem auto;
            padding: 2rem;
            max-width: 900px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

     

        .service-section h3 {
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .service-section h3 i {
            color: var(--primary);
            font-size: 2rem;
        }

        .service-section p {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .service-advantages {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .service-advantages li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .service-advantages li i {
            color: var(--secondary);
            font-size: 1.25rem;
        }

        .service-section .btn {
            display: inline-block;
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .service-section .btn:hover {
            background: var(--secondary);
        }

        @media (max-width: 767.98px) {
            .services-container {
                padding: 2rem 0;
            }

            .service-section {
                margin: 1rem;
                padding: 1.5rem;
            }

            .service-section h3 {
                font-size: 1.5rem;
            }

            .service-section p {
                font-size: 0.95rem;
            }

            .service-advantages li {
                font-size: 0.95rem;
            }
        }



/* Registration Section */
.registration-section {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 600px;
}

.registration-section h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--secondary);
    color: white;
}
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--dark);
    border: 1px solid var(--light);
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.popup-content p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
    .registration-section {
        margin: 1rem;
        padding: 1.5rem;
    }

    .registration-section h2 {
        font-size: 1.5rem;
    }

    .form-group label,
    .form-group input,
    .popup-content p {
        font-size: 0.95rem;
    }

    .popup-content h3 {
        font-size: 1.25rem;
    }
}


/* Login Section */
.login-section {
    background: var(--light);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 500px;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login-section h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--dark);
    margin: 0;
}


.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--secondary);
    color: white;
}


.btn-signup {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-signup:hover {
    background: var(--primary);
    color: white;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-message {
    display: none;
    color: #e63946;
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 767.98px) {
    .login-section {
        margin: 1rem;
        padding: 1.5rem;
    }

    .login-header {
        flex-direction: column;
        gap: 1rem;
    }

    .login-section h2 {
        font-size: 1.5rem;
    }

    .error-message {
        font-size: 0.95rem;
    }
}

/* Navbar User Icon */
.navbar-nav .nav-link i.fa-user {
    font-size: 1.5rem;
    padding: 0rem 1.5rem;
    transition: color 0.3s ease;
}



@media (max-width: 991.98px) {
    .navbar-nav .nav-link i.fa-user {
        padding: 1rem;
    }
}