:root {
    --primary: #1e3a8a;
    --secondary: #3b82f6;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ✅ RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    background: var(--bg);
}

/* ✅ NAVBAR */
header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ✅ LOGO WRAP (ICON + TEXT TOGETHER) */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ✅ Small Icon Logo */
.logo-icon {
    height: 42px;
    width: auto;
}

/* ✅ Text Logo */
.logo-text {
    height: 38px;
    width: auto;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text);
}

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

.login-btn {
    background: var(--primary);
    color: white !important;
    padding: 0.55rem 1.4rem;
    border-radius: 10px;
}

/* ✅ SECTION GLOBAL */
section {
    width: 100%;
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.section-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
}

/* ✅ BUTTONS GLOBAL */
.btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

/* ✅ FOOTER GLOBAL */
footer {
    background: radial-gradient(circle at top, #1e3a8a, #0f172a);
    color: white;
    padding: 80px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ✅ Glow Orbs */
footer::before,
footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.35);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    animation: footerGlow 7s ease-in-out infinite;
}

footer::before {
    top: -120px;
    left: -100px;
}

footer::after {
    bottom: -150px;
    right: -120px;
    animation-delay: 3s;
}

@keyframes footerGlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(40px);
    }
}

/* ✅ Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 0 2rem;
}

/* ✅ Brand */
.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.85;
    font-size: 14px;
}

/* ✅ Footer Links */
.footer-links a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
}

/* ✅ Social Buttons */
.socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.socials a {
    padding: 10px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
}

.socials a:hover {
    background: rgba(59, 130, 246, 0.75);
    transform: translateY(-4px);
}

/* ✅ Footer Bottom */
footer .copyright {
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.7;
}

/* ✅ MOBILE RESPONSIVE GLOBAL */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 15px;
        width: 220px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 14px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    section {
        padding: 80px 0;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}
