/* Custom Header and Footer Styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Top Bar — Vibrant (same as About Us) — layout unchanged, only colors */
.custom-topbar {
    background: linear-gradient(90deg, #1a1033 0%, #4c1d95 35%, #7c3aed 65%, #ff6a00 100%);
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', Arial, sans-serif;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-topbar-left, .custom-topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.custom-topbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.custom-topbar i {
    margin-right: 5px;
}

/* Main Header — Vibrant same as About (layout unchanged, only colors + accents) */
.custom-header {
    background: linear-gradient(90deg, #ffffff 0%, #f5f3ff 40%, #fff7ed 100%);
    border-bottom: 1px solid #ede9fe;
    box-shadow: 0 8px 24px rgba(26,16,51,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', Arial, sans-serif;
}
.custom-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 45%, #ff6a00 75%, #facc15 100%);
    opacity: 1;
}

.custom-logo img {
    height: 60px; /* Adjust based on actual logo */
    max-width: 100%;
    filter: none;
}
.custom-logo a {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.custom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.custom-nav a {
    text-decoration: none;
    color: #1a1033;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
    position: relative;
    padding-bottom: 4px;
}
.custom-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #ff6a00);
    transition: width 0.25s ease;
    border-radius: 999px;
}
.custom-nav a:hover {
    color: #ff6a00;
}
.custom-nav a:hover::after {
    width: 100%;
}

.custom-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.custom-header-btn {
    background: linear-gradient(135deg, #ff6a00 0%, #ec4899 100%);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px rgba(124,58,237,0.22);
}

.custom-header-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #ff6a00 100%);
    box-shadow: 0 6px 18px rgba(124,58,237,0.28);
    transform: translateY(-1px);
}

.custom-search-icon {
    font-size: 16px;
    color: #7c3aed;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #f5f3ff;
    border: 1px solid #ede9fe;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.custom-search-icon:hover {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}

.mobile-menu-btn {
    display: none;
    background: #f5f3ff;
    border: 1px solid #ede9fe;
    font-size: 18px;
    color: #1a1033;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    place-items: center;
    transition: all 0.2s ease;
}
.mobile-menu-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #ff6a00);
    color: #fff;
    border-color: transparent;
}


/* Footer — Vibrant (same as About Us CTA/hero) — layout unchanged, only colors */
.custom-footer {
    background: radial-gradient(700px 380px at 12% 0%, rgba(236,72,153,0.16), transparent 60%), radial-gradient(700px 380px at 88% 10%, rgba(6,182,214,0.14), transparent 60%), linear-gradient(180deg, #0f172a 0%, #1a1033 55%, #1e1b4b 100%);
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    border-top: 4px solid #facc15;
    padding: 60px 5% 40px;
}

.custom-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.custom-footer-col h3 {
    color: #facc15;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.custom-footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #facc15;
}

.custom-footer-col p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.custom-footer-socials {
    display: flex;
    gap: 15px;
}

.custom-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.06);
}

.custom-footer-socials a:hover {
    background-color: #facc15;
    color: #1a1033;
    border-color: #facc15;
}

.custom-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer-links li {
    margin-bottom: 12px;
}

.custom-footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.custom-footer-links a::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    margin-right: 8px;
    color: #facc15;
}

.custom-footer-links a:hover {
    color: #facc15;
}

.custom-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

.custom-contact-info i {
    color: #cccccc;
    margin-right: 15px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

@media (max-width: 992px) {
    .custom-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: transparent;
        border-top: 1px solid #ede9fe;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(90deg, #7c3aed, #ff6a00) 1;
        box-shadow: 0 12px 28px rgba(26,16,51,0.12);
        padding: 16px 5% 20px;
        z-index: 999;
    }
    .custom-nav.active {
        display: block;
    }
    .custom-nav ul {
        flex-direction: column;
        gap: 14px;
    }
    .custom-nav a {
        display: flex;
        align-items: center;
        padding: 10px 14px;
        background: #f5f3ff;
        border: 1px solid #ede9fe;
        border-radius: 12px;
    }
    .custom-nav a::after { display: none; }
    .custom-nav a:hover {
        background: linear-gradient(90deg, #ede9fe, #fff7ed);
        border-color: #ddd6fe;
    }
    .custom-header {
        position: relative;
    }
    .custom-footer-grid {
        grid-template-columns: 1fr;
    }
    .custom-topbar {
        flex-direction: column;
        gap: 8px;
        padding: 10px 5%;
    }
    .custom-topbar-left, .custom-topbar-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        text-align: center;
    }
    .custom-header {
        padding: 10px 5%;
    }
    .custom-logo img {
        height: 45px;
    }
    .custom-header-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .custom-topbar-right {
        display: none; /* Hide less important links on very small screens */
    }
    .custom-topbar-left {
        font-size: 12px;
        gap: 10px;
    }
}
