 header {
            background: var(--white);
            box-shadow: 0 2px 10px var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            color: var(--primary);
            font-size: 20px;
            font-weight: bold;
        }
        
        .logo-tagline {
            color: var(--secondary);
            font-size: 10px;
            margin-top: 2px;
        }
        
        .desktop-menu {
            display: flex;
            list-style: none;
        }
        
        .desktop-menu li {
            margin-left: 30px;
        }
        
        .desktop-menu a {
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        
        .desktop-menu a:hover {
            color: var(--primary);
        }
        
        .desktop-menu a:hover:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }
        
        .menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
            padding: 10px;
        }
        
        .mobile-menu {
            display: none;
            background: var(--white);
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px var(--shadow);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu li {
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .mobile-menu a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
        }
        
        .mobile-menu a:hover {
            background: var(--light-gray);
            color: var(--primary);
        }
        .main-footer {
    background: #1a2536;
    color: #ffffff;
    padding: 70px 0 25px;
    margin-top: 80px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Columns */
.footer-col {
    padding: 10px;
}

/* Logo Section */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-logo .logo-sub {
    font-size: 11px;
    color: #60a5fa;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-description {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 320px;
}

/* Footer Headings */
.footer-heading {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after {
    width: 80px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 16px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-menu li:hover {
    transform: translateX(5px);
}

.footer-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d1dceb;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #60a5fa;
}

.footer-menu i {
    width: 22px;
    text-align: center;
    color: var(--secondary);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-menu a:hover i {
    transform: scale(1.1);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #d1dceb;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    transition: transform 0.3s ease;
}

.contact-info p:hover {
    transform: translateX(3px);
}

.contact-info i {
    color: var(--secondary);
    font-size: 18px;
    min-width: 22px;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.contact-info p:hover i {
    color: var(--accent);
}

.contact-info span {
    flex: 1;
    color: #d1dceb;
    font-size: 15px;
    line-height: 1.5;
}

/* Social Media */
.social-media {
    margin-top: 30px;
}

.social-heading {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 19px;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Specific colors on hover */
.social-icon:nth-child(1):hover { 
    background: #1877f2; 
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-icon:nth-child(2):hover { 
    background: #1da1f2; 
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
}

.social-icon:nth-child(3):hover { 
    background: #0077b5; 
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.social-icon:nth-child(4):hover { 
    background: #e4405f; 
    box-shadow: 0 10px 20px rgba(228, 64, 95, 0.3);
}

.social-icon:nth-child(5):hover { 
    background: #ff0000; 
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.social-icon:nth-child(6):hover { 
    background: #ea4335; 
    box-shadow: 0 10px 20px rgba(234, 67, 53, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 25px;
}

.copyright {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ============= RESPONSIVE IMPROVEMENTS ============= */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-description {
        max-width: 500px;
        margin: 0 auto 25px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    
    
    .footer-col:hover .footer-heading::after {
        width: 70px;
        
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
        text-align: left;
    }
    
    .footer-logo .logo-main {
        font-size: 24px;
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-menu {
        text-align: left;
    }
    
    .footer-menu a {
        justify-content: flex-start;
        padding: 8px 0;
    }
    
    .footer-menu li:hover {
        transform: translateX(5px);
    }
    
    .footer-menu li {
        margin-bottom: 12px;
    }
    
    .contact-info {
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-info p {
        justify-content: flex-start;
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .contact-info p:hover {
        transform: translateX(3px);
    }
    
    .contact-info i {
        margin-top: 2px;
    }
    
    .social-media {
        text-align: left;
    }
    
    .social-heading {
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 20px;
        text-align: left;
    }
    
    .footer-links {
        justify-content: flex-start;
        gap: 20px;
    }
    
    .copyright {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 15px;
    }
    
    .footer-top {
        gap: 35px;
    }
    
    .footer-logo .logo-main {
        font-size: 22px;
    }
    
    .footer-heading {
        font-size: 17px;
    }
    
    .social-icons {
        gap: 12px;
        justify-content: flex-start;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .footer-links a {
        padding: 5px 0;
    }
    
    .copyright {
        font-size: 13px;
    }
}

/* For very small devices (below 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-logo .logo-main {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-menu a {
        font-size: 15px;
    }
    
    .contact-info p {
        font-size: 14px;
        gap: 10px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-col {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }

.social-icon {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.social-icon:nth-child(1) { animation-delay: 0.4s; }
.social-icon:nth-child(2) { animation-delay: 0.5s; }
.social-icon:nth-child(3) { animation-delay: 0.6s; }
.social-icon:nth-child(4) { animation-delay: 0.7s; }
.social-icon:nth-child(5) { animation-delay: 0.8s; }
.social-icon:nth-child(6) { animation-delay: 0.9s; }

/* Optional: Add a subtle pattern overlay */
.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}