﻿/*
.header-gradient {
    background: linear-gradient(90deg, #2563eb, #16a34a, #db2777);
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -20px);
    }

    50% {
        transform: translate(-20px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 1.1rem;
}

.sticky-header {
    backdrop-filter: blur(16px);
    transition: all 0.3s ease-in-out;
}
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -20px);
    }

    50% {
        transform: translate(-20px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.floating-dot {
    @apply absolute w-2 h-2 rounded-full opacity-60 bg-gradient-to-r from-green-500 to-blue-500;
    animation: float 6s infinite ease-in-out;
}

.animate-spin-slow {
    animation: spin 60s linear infinite;
}

.animate-spin-reverse {
    animation: spinReverse 50s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}*/

.header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, white 30%, #003974 30%);
    padding: 10px 30px;
}

.logo-section {
    display: flex;
    align-items: center;
}

    .logo-section img {
        height: 100px;
        width: 624px;
        margin-right: 10px;
    }

.logo-text h4 {
    margin: 0;
    font-weight: 700;
}

.logo-text small {
    color: #333;
    font-weight: 600;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 0%;
        background-color: #ff7b29;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.btn-orange {
    background-color: #ff7b29;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
}

    .btn-orange:hover {
        background-color: #e86b1f;
    }

.footer {
    background-color: #072b72;
    color: white;
    padding: 40px 20px;
}

    .footer h5 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #ff7b29;
    }

    .footer a {
        color: #cfd9e6;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #ff7b29;
        }

    .footer i {
        color: #ff7b29;
        margin-right: 10px;
    }

    .footer .logo h4 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .footer .logo small {
        font-size: 14px;
        color: #cfd9e6;
    }

@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }

    .footer .col-md-3, .footer .col-md-4 {
        margin-bottom: 20px;
    }
}
.fa-bell.blink {
    animation: blink 1s infinite;
    color: #dc3545;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}