html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin-bottom: 60px;
}*/
.Menu_Text {
    color: white !important;
}



body {
    margin: 0;
    height: 100vh;
    margin-bottom: 60px;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white;
    background: linear-gradient(-45deg, #007bff, #00c6ff, #1e3c72, #2a5298);
    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
    font-family: Arial, sans-serif;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.PillArea {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: transparent !important;
    border: 1px solid #e9ecef !important;
    border-radius: 4.25rem !important;
}

.tagline {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

.left {
    display: inline-block;
    margin-right: 10px;
    animation: slideLeft 4s ease-in-out infinite;
}

.right {
    display: inline-block;
    animation: slideRight 4s ease-in-out infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }

    20% {
        transform: translateX(0);
        opacity: 1;
    }

    60% {
        transform: translateX(0);
        opacity: 1;
    }

    80% {
        transform: translateX(-120%);
        opacity: 0;
    }

    100% {
        transform: translateX(-120%);
        opacity: 0;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }

    20% {
        transform: translateX(0);
        opacity: 1;
    }

    60% {
        transform: translateX(0);
        opacity: 1;
    }

    80% {
        transform: translateX(120%);
        opacity: 0;
    }

    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}


.hero-section {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        animation: fadeInDown 1s ease forwards;
    }

    .hero-section p {
        font-size: 1.2rem;
        margin-top: 15px;
        animation: fadeInUp 1s ease forwards;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}




.stats-section {
    padding: 60px 15px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 14px;
    color: #c0c0c0;
}