@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Background Circles */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 95, 0, 0.04);
    border: 1px solid rgba(255, 95, 0, 0.1);
}

.c1 { width: 400px; height: 400px; top: -10%; left: -5%; }
.c2 { width: 300px; height: 300px; bottom: 10%; right: -5%; }
.c3 { width: 150px; height: 150px; top: 40%; right: 20%; }

/* Custom Cursor */
#custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #ff5f00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
}
/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; padding: 30px 0; z-index: 1000; transition: transform 0.6s var(--transition), background 0.4s ease; }
.navbar--hidden { transform: translateY(-100%); }
.navbar.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 0; border-bottom: 1px solid #eee; }
.nav-container { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.logo img { height: 35px; }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--black); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

/* Founder Cards */
.founder-card {
    flex: 1;
    max-width: 260px;
}

.founder-img-wrapper {
    aspect-ratio: 1/1;
    border-radius: 50%; /* Circle Founders look great in light themes */
    overflow: hidden;
    background: #eee;
    border: 4px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-card:hover .team-img {
    transform: scale(1.1);
}

/* Specialist Cards */
.section-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::after {
    content: "";
    height: 1px;
    background: #e0e0e0;
    flex-grow: 1;
}

.spec-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.2rem;
    border-radius: 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: 0.3s ease;
}

.spec-card.vertical {
    flex-direction: column;
    text-align: center;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 95, 0, 0.1);
    border-color: rgba(255, 95, 0, 0.2);
}

.spec-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.vertical .spec-img {
    width: 90px;
    height: 90px;
}

.spec-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.spec-info p {
    color: #ff5f00;
    font-size: 0.75rem;
    font-weight: 600;
}

    /* Footer fix */
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    /* Hidden elements on mobile for performance */
    .footer-circles {
        display: none !important;
    }
    /* FOOTER */
.main-footer {
    background-color: #111; /* Sleek Dark Theme */
    color: #fff;
    padding: 60px 0 30px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 100;
    letter-spacing: -1px;
    margin: 0;
}

.footer-logo span {
    color: #f26522; /* Brand Orange */
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Legal Links */
.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    margin-right: 25px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #f26522;
}

/* Credits Section */
.footer-credits {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
}

.brand-text {
    color: #f26522;
    font-weight: 700;
}

.dev-text {
    color: #fff;
    font-weight: 700;
}

.credit-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Background Geometric Circles */
.footer-circles .f-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(242, 101, 34, 0.1);
    z-index: 1;
}

.c-left {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.c-right {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal a {
        margin: 0 10px;
    }
}
