
/* Navbar Links */
.navbar .nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: #0dcaf0 !important;
    }

/* Dropdown on Hover (Desktop only) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
     
        align-content: inherit;
    }
}
/* Stylish dropdown animation */
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    margin-top: 0.5rem;
    border-radius: 10px;
}

    /* Show dropdown on hover */
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown:focus-within .dropdown-menu,
    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Dropdown hover style */
    .dropdown-menu .dropdown-item:hover {
        background: #0dcaf0;
        color: #fff;
        border-radius: 5px;
    }

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 {
  margin-bottom: 0px;
}
/* Modern Footer */
.modern-footer {
    /*background: linear-gradient(135deg, #2e0249 0%, #570a57 100%);*/
    background: linear-gradient(135deg, #2e0249 0%, #c300a9 100%);
    color: #fff;
    position: relative;
    margin-top: 100px;
    padding-bottom: 20px;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: #2e0249; /* Matches footer background start */
}

.modern-footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffc107; /* Gold/Yellow accent */
}

.modern-footer .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.modern-footer .footer-link:hover {
    color: #ffc107;
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #ffc107;
    color: #2e0249;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #fff;
    color: #2e0249;
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    margin-right: 10px;
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
}


