:root {
    --dark-orange: #d97706;
    --deep-blue: #1e3a8a;
}

.navbar {
    background: linear-gradient(135deg, var(--dark-orange), var(--deep-blue));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    border-bottom: 3px solid var(--dark-orange);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 17px;
    padding: 10px 20px;
    margin: 0 6px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    background: rgba(217, 119, 6, 0.2);
    color: var(--dark-orange) !important;
    transform: translateY(-2px);
}

.btn-login {
    background-color: var(--dark-orange);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
}

.btn-login:hover {
    background-color: #b45309;
}

.btn-register {
    background-color: white;
    color: var(--dark-orange);
    border: 2px solid var(--dark-orange);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
}

.btn-register:hover {
    background-color: var(--dark-orange);
    color: white;
} 

.nav-link.dropdown-toggle {
    color: white !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.nav-link.dropdown-toggle:hover {
    color: #ffd700;
    text-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
    display: none;
    position: absolute;
    background: linear-gradient(135deg, var(--dark-orange), var(--deep-blue));
    min-width: 520px;
    padding: 18px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.4s ease-in-out forwards;
}

.dropdown-menu .dropdown-item {
    padding: 14px 22px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    border-radius: 6px;
    font-size: 16px;
    position: relative;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffd700;
    transform: translateX(8px);
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.pdf-link {
    color: white !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.pdf-link:hover {
    color: #ff9523 !important;
    text-shadow: 0px 0px 15px rgb(255, 153, 9);
    transform: scale(1.05);
}

.pdf-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #ffb088;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.pdf-link:hover::after {
    width: 100%;
    background: #ff3300; 
}

@media (max-width: 991px) {
    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler {
        outline: 2px solid black !important;
        box-shadow: none !important;
    }
}

:root {
    --primary-color: #ff7b00;
    --secondary-color: #0d2b45;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
} 

.footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 50px 0;
    color: var(--text-light);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-color);
}

.footer-logo {
    max-width: 140px;
    display: block;
    margin: 0 auto;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: left;
    padding-left: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-in-out;
}

.footer-links a i {
    font-size: 18px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.follow-us-section {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.footer-text {
    font-size: 15px;
    font-weight: 500;
    margin-top: 25px;
    opacity: 0.9;
}

.footer-link {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    bottom: -44px;
    left: 0;
    width: 100%;
}

.footer-bottom p {
    font-size: 16px;
    margin: 0;
    padding-bottom: 10px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
}

.footer .col-md-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .footer .footer-title {
        text-align: left;
        margin-left: 0;
        font-size: 22px; 
        font-weight: bold;
        color: var(--primary-color); 
        padding-bottom: 10px; 
        border-bottom: 2px solid var(--primary-color); 
    }

    .footer-links {
        text-align: left;
        margin-top: 15px;
    }

    .footer-links li {
        margin-bottom: 12px; 
    }

    .footer-links a i {
        font-size: 18px;
        margin-right: 10px;
    }

    .footer .col-md-3 {
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }
}

@media (min-width: 769px) {
    .footer .col-md-3 {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer .footer-title {
        font-size: 22px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        color: var(--primary-color);
        text-align: center;
    }

    .footer .footer-title {
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color); 
    }

    .footer-links {
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 18px;
        padding-left: 15px;
        padding-right: 15px;
    }

   
    .footer-links a:hover {
        text-decoration: underline;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

