/* Footer Styles from style.css for About page */
footer {
    background: #1a093a;
    color: #b3a6e7;
    padding: 48px 0 0 0;
    margin-top: 60px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}
.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 24px;
}
.footer-section h2, .footer-section h3 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 12px;
}
.footer-divider {
    height: 2px;
    width: 40px;
    background: #7c3aed;
    margin-bottom: 16px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: #b3a6e7;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section ul li a:hover {
    color: #AD77FF;
}
.copyright {
    font-size: 0.95rem;
    color: #7c3aed;
    margin-bottom: 8px;
}
.footer-contact-item {
    margin-bottom: 8px;
    font-size: 1rem;
}
.footer-contact-item span {
    font-size: 1.2em;
    margin-right: 6px;
}
.footer-social-label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}
.footer-social a {
    background: #222;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* about-footer-navbar.css: Custom styles for About page navbar and footer */

/* Navbar styles */

#navbar {
    background: #000;
    box-shadow: 0 2px 8px rgba(124,58,237,0.08);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo span {
    font-weight: bold;
    font-size: 1.3rem;
    color: #AD77FF;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}
.nav-links li a {
    color: #AD77FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #fff;
}
.hamburger {
    display: none;
}
@media (max-width: 900px) {
    .nav-links.desktop-nav {
        display: none;
    }
    .nav-links.mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #000;
        box-shadow: 0 2px 8px rgba(124,58,237,0.08);
        padding: 1rem 0;
        z-index: 99;
    }
    .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
}

/* Footer styles */

.footer-container {
    background: #1a0b2e;
    color: #fff;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    border-top: 8px solid #7209b7;
}
.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-section {
    flex: 1 1 260px;
    margin-bottom: 2rem;
    min-width: 220px;
}
.footer-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.footer-section.about h3 {
    margin-bottom: 0.8rem;
}
.footer-section.about p {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #d1c4e9;
}
.footer-section.services ul,
.footer-section.quick-links ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 1.1rem;
    font-size: 1.5rem;
}
.footer-section ul li a {
    color: #AD77FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-section ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-contact-item {
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #d1c4e9;
}
.footer-social-label {
    margin-top: 1.5rem;
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.7rem;
}
.footer-social img {
    width: 40px;
    height: 40px;
    background: #232323;
    border-radius: 8px;
    padding: 6px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s, background 0.2s;
}
.footer-social img:hover {
    filter: brightness(0.8) invert(0.7) sepia(1) hue-rotate(270deg) saturate(5);
    background: #AD77FF;
}
.footer-section.about {
    flex: 1.5 1 320px;
}
.footer-section.about h3,
.footer-section.services h3,
.footer-section.quick-links h3,
.footer-section.get-in-touch h3 {
    border-bottom: 3px solid #AD77FF;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 18px;
}
.footer-section.about h3 {
    border-bottom: 3px solid #AD77FF;
    margin-bottom: 18px;
}
.footer-section.about p {
    margin-bottom: 18px;
}
@media (max-width: 1100px) {
    .footer-main {
        flex-direction: column;
        gap: 0;
    }
    .footer-section {
        margin-bottom: 2rem;
    }
}
