/* MITNEXT Header Styles - With Dropdown */
.mn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.mn-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.mn-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mn-logo:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mn-logo-img {
    height: 40px;
    transition: all 0.3s ease;
}

/* Navigation Styles */
.mn-navbar {
    display: flex;
    align-items: center;
}

.mn-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
}

.mn-nav-item {
    position: relative;
}

.mn-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mn-nav-link:hover {
    color: #00f5ff;
}

.mn-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00f5ff;
    transition: width 0.3s ease;
}

.mn-nav-link:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.mn-dropdown {
    position: relative;
}

.mn-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    width: 220px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
    list-style: none;
}

.mn-dropdown:hover .mn-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mn-dropdown-item {
    padding: 0;
    margin: 0;
}

.mn-dropdown-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #b8b8c0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mn-dropdown-link:hover {
    color: white;
    background: rgba(0, 245, 255, 0.1);
    transform: translateX(5px);
}

.mn-dropdown-icon {
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mn-dropdown:hover .mn-dropdown-icon {
    transform: rotate(180deg);
}

/* CTA Button */
.mn-cta-item {
    margin-left: 20px;
}

.mn-btn-quote {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.mn-btn-quote:hover {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.mn-btn-icon {
    margin-left: 8px;
    font-size: 0.9em;
}

/* Mobile Menu Button */
.mn-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mn-nav-item {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .mn-mobile-btn {
        display: block;
    }

    .mn-navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #0a0a12;
        transition: all 0.5s ease;
        padding: 30px;
        overflow-y: auto;
    }

    .mn-navbar.active {
        left: 0;
    }

    .mn-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .mn-nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .mn-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: transparent;
        margin-top: 10px;
        display: none;
        padding-left: 15px;
    }

    .mn-dropdown:hover .mn-dropdown-menu {
        display: block;
    }

    .mn-cta-item {
        margin: 20px 0 0;
    }
}

/* Footer Styles */
.footer {
    background: #1a1a2e;
    color: #ffffff;
    position: relative;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col {
    position: relative;
    margin-bottom: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    background: linear-gradient(90deg, #00f5ff, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-col p {
    color: #b8b8c0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #00f5ff;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #2a52be);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #b8b8c0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: #00f5ff;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #b8b8c0;
}

.footer-contact li i {
    margin-right: 10px;
    color: #00f5ff;
    margin-top: 3px;
}

.footer-bottom {
    background: #0a0a12;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #696969;
    font-size: 0.9rem;
}

.footer-links {
    color: #696969;
}

.footer-links a {
    color: #696969;
    font-size: 0.9rem;
}


