/* ===== NEW MODERN STYLES ===== */

/* Global Variables */
:root {
    --primary-color: #3498ff;
    --secondary-color: #a742f5;
    --accent-color: #00e5ff;
    --dark-bg: #0a0e17;
    --card-bg: #111827;
    --text-light: #ffffff;
    --text-muted: #8b95a5;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --header-height: 80px;
    --header-height-scrolled: 70px;
}

/* ===== MODERN NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(52, 152, 255, 0.03), rgba(167, 66, 245, 0.03));
    z-index: -1;
    opacity: 0.5;
}

header.scrolled {
    height: var(--header-height-scrolled);
    background-color: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo img {
    height: 38px;
    filter: drop-shadow(0 0 8px rgba(52, 152, 255, 0.5));
    transition: all 0.3s ease;
}

.logo span {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 32px;
}

header.scrolled .logo span {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 8px 0;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-muted);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-light);
    transform: translateY(-2px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-buttons .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-light);
}

.nav-buttons .btn-outline:hover {
    border-color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--primary-color);
    background: rgba(52, 152, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-buttons .btn-primary:hover {
    background: #2a7ad9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-light);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(52, 152, 255, 0.3);
}

.mobile-menu-btn span:nth-child(1) {
    top: 6px;
    width: 70%;
    right: 0;
    left: auto;
}

.mobile-menu-btn span:nth-child(2) {
    top: 14px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 22px;
    width: 70%;
    right: 0;
    left: auto;
}

.mobile-menu-btn.active span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

/* Mobile navigation */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
        transition-delay: calc(0.05s * var(--item-index, 0));
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* ===== MODERN CTA BANNER ===== */
.cta-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 8rem auto 0;
    max-width: 1400px;
    width: 90%;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 255, 0.05), rgba(52, 152, 255, 0.02));
    z-index: 0;
}

/* Responsive styles for CTA banner */
@media (max-width: 992px) {
    .cta-banner {
        margin-top: 6rem;
        border-radius: 20px;
    }
    
    .cta-content {
        padding: 4rem 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        margin-top: 4rem;
        border-radius: 15px;
    }
    
    .cta-content {
        padding: 3rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-banner .btn-primary,
    .cta-banner .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* ===== MODERN FOOTER ===== */
.modern-footer {
    position: relative;
    padding: 5rem 2rem 1rem;
    margin-top: 8rem;
    background-color: var(--card-bg);
    width: 100%;
    overflow: hidden;
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--card-bg);
    overflow: hidden;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(52, 152, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(167, 66, 245, 0.05) 0%, transparent 20%),
        linear-gradient(30deg, rgba(52, 152, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(52, 152, 255, 0.02) 87.5%);
    background-size: auto, auto, 30px 30px;
    opacity: 0.7;
    z-index: 0;
    animation: footerPatternShift 30s linear infinite;
}

@keyframes footerPatternShift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 50px 50px, -50px -50px, 30px 30px; }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.footer-logo img {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(52, 152, 255, 0.4));
    transition: all 0.3s ease;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(90deg, #ffffff, #a0e9ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-links h4::before,
.footer-contact h4::before,
.footer-social h4::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-radius: 6px;
    position: relative;
}

.cta-banner .btn-primary:hover {
    background: #2a7ad9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-banner .btn-primary:hover i {
    transform: translateX(3px);
}

.cta-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-radius: 6px;
}

.cta-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ===== MODERN NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(52, 152, 255, 0.03), rgba(167, 66, 245, 0.03));
    z-index: -1;
    opacity: 0.5;
}

header.scrolled {
    height: var(--header-height-scrolled);
    background-color: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo img {
    height: 38px;
    filter: drop-shadow(0 0 8px rgba(52, 152, 255, 0.5));
    transition: all 0.3s ease;
}

.logo span {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 32px;
}

header.scrolled .logo span {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 8px 0;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-muted);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-light);
    transform: translateY(-2px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-buttons .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-light);
}

.nav-buttons .btn-outline:hover {
    border-color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--primary-color);
    background: rgba(52, 152, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-buttons .btn-primary:hover {
    background: #2a7ad9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-light);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(52, 152, 255, 0.3);
}

.mobile-menu-btn span:nth-child(1) {
    top: 6px;
    width: 70%;
    right: 0;
    left: auto;
}

.mobile-menu-btn span:nth-child(2) {
    top: 14px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 22px;
    width: 70%;
    right: 0;
    left: auto;
}

.mobile-menu-btn.active span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

/* ===== MODERN CTA BANNER ===== */
.cta-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 8rem auto 0;
    max-width: 1400px;
    width: 90%;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 255, 0.05), rgba(52, 152, 255, 0.02));
    z-index: 0;
}

/* Responsive styles for CTA banner */
@media (max-width: 992px) {
    .cta-banner {
        margin-top: 6rem;
        border-radius: 20px;
    }
    
    .cta-content {
        padding: 4rem 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        margin-top: 4rem;
        border-radius: 15px;
    }
    
    .cta-content {
        padding: 3rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-banner .btn-primary,
    .cta-banner .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* ===== MODERN FOOTER ===== */
.modern-footer {
    position: relative;
    padding: 5rem 2rem 1rem;
    margin-top: 8rem;
    background-color: var(--card-bg);
    width: 100%;
    overflow: hidden;
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--card-bg);
    overflow: hidden;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(52, 152, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(167, 66, 245, 0.05) 0%, transparent 20%),
        linear-gradient(30deg, rgba(52, 152, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(52, 152, 255, 0.02) 87.5%);
    background-size: auto, auto, 30px 30px;
    opacity: 0.7;
    z-index: 0;
    animation: footerPatternShift 30s linear infinite;
}

@keyframes footerPatternShift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 50px 50px, -50px -50px, 30px 30px; }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.footer-logo img {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(52, 152, 255, 0.4));
    transition: all 0.3s ease;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(90deg, #ffffff, #a0e9ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-links h4::before,
.footer-contact h4::before,
.footer-social h4::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-links a::before,
.footer-contact a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-light);
    transform: translateX(10px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    width: 6px;
    height: 6px;
    opacity: 1;
    left: -10px;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(52, 152, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(52, 152, 255, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 180px;
    margin-top: 3rem;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: waveFloat 8s ease-in-out infinite alternate;
    min-width: 100vw;
}

@keyframes waveFloat {
    0% { transform: scaleX(1) scaleY(1); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(0.98) scaleY(1.02); }
}

.footer-copyright {
    text-align: center;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove the black background */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Responsive footer styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 4rem 1.5rem 1rem;
        margin-top: 6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4::before,
    .footer-contact h4::before,
    .footer-social h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-links a:hover,
    .footer-contact a:hover {
        transform: translateY(-5px);
    }
    
    .footer-social {
        justify-content: center;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-radius: 6px;
    position: relative;
}

.cta-banner .btn-primary:hover {
    background: #2a7ad9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-banner .btn-primary:hover i {
    transform: translateX(3px);
}

.cta-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-radius: 6px;
}

.cta-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
    0% { background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 100% 100%, 100% 100%, 100% 100%; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.cta-banner .btn-primary {