/* Header navigation */
/* Dropdown Menu Styles */
    .dropdown-mega {
        position: relative;
    }

    .dropdown-mega > .dropdown-menu {
        width: fit-content !important;
        max-width: fit-content !important;
        left: 50% !important;
        transform: translateX(-50%);
    }

    .dropdown-mega-content {
        padding: 20px;
        width: fit-content;
    }

    .dropdown-mega-content .row {
        margin: 0;
        display: flex;
        gap: 40px;
        width: fit-content;
    }

    .dropdown-mega-content .col-auto {
        padding: 0;
        width: fit-content;
        flex: 0 0 auto;
    }

    .dropdown-mega-sub-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0088cc;
        display: block;
        padding: 0 0 10px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(0,136,204,0.1);
        white-space: nowrap;
    }

    .dropdown-mega-sub-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dropdown-mega-sub-nav li {
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .dropdown-mega-sub-nav li a {
        color: #666;
        font-size: 0.95rem;
        padding: 5px 0;
        transition: all 0.2s ease;
        display: block;
    }

    .dropdown-mega-sub-nav li a:hover {
        color: #0088cc;
        padding-left: 5px;
        text-decoration: none;
    }

    /* General dropdown menu positioning */
    .dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: 0;
    }

    /* School register menu specific styles */
    .school-register-menu {
        width: fit-content !important;
        min-width: 300px;
        padding: 0;
        border: none;
        box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }

    /* Register content styles */
    .register-content {
        padding: 25px;
        text-align: center;
        background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        border-radius: 6px;
    }

    .register-icon {
        font-size: 2.5rem;
        color: #0088cc;
        margin-bottom: 15px;
    }

    .register-content h4 {
        color: #0088cc;
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0 0 12px;
        letter-spacing: -0.02em;
    }

    .register-content p {
        color: #444;
        font-size: 1.15rem;
        margin: 0 0 20px;
        line-height: 1.5;
    }

    .register-button {
        display: inline-block;
        background: linear-gradient(to bottom, #0088cc, #0077b3);
        color: #fff !important;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 1.1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        text-align: center;
        line-height: 1.2;
    }

    .register-button:hover {
        background: linear-gradient(to bottom, #0099e6, #0088cc);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        text-decoration: none;
    }

    @media (max-width: 991px) {
        .dropdown-mega > .dropdown-menu,
        .dropdown-menu {
            left: 0 !important;
            transform: none !important;
            width: 100% !important;
        }

        .dropdown-mega-content {
            padding: 15px;
            width: 100%;
        }
        
        .dropdown-mega-content .row {
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }
        
        .dropdown-mega-content .col-auto {
            width: 100%;
        }

        .school-register-menu {
            width: 100% !important;
        }

        .register-content {
            padding: 20px;
        }

        .register-content h4 {
            font-size: 1.3rem;
        }

        .register-content p {
            font-size: 1.1rem;
        }

        .register-button {
            width: 100%;
            padding: 10px 20px;
        }
    }

/* Footer */
.blog-section {
    background: #1D2127;
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.blog-section h4 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.blog-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.blog-section p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.blog-image-container {
    max-width: 50%;
    margin: 20px auto;
    text-align: center;
    transition: transform 0.3s ease;
}

.blog-image-container:hover {
    transform: translateY(-5px);
}

.blog-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .blog-section {
        padding: 30px 15px;
    }
    
    .blog-section h4 {
        font-size: 1.8rem;
    }
    
    .blog-section p {
        font-size: 1rem;
    }
    
    .blog-image-container {
        max-width: 75%;
    }
}

@media (max-width: 576px) {
    .blog-section h4 {
        font-size: 1.5rem;
    }
    
    .blog-image-container {
        max-width: 100%;
    }
}

.footer {
    background: #1D2127;
    color: #ffffff;
    padding-top: 40px;
}

.footer h5 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.footer .list-icons li {
    margin-bottom: 12px;
}

.footer .list-icons li a {
    color: #b4b4b4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .list-icons li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer .list-icons li i {
    color: #3498db;
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-copyright {
    background: #15191f;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-copyright p {
    margin: 0;
    color: #b4b4b4;
    font-size: 0.9rem;
}

.social-icons {
    margin-top: 30px;
    text-align: center;
}

.social-icons a {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer {
        padding-top: 30px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
    }
    
    .footer .list-icons li {
        margin-bottom: 10px;
    }
    
    .social-icons {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding-top: 20px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}