@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    /* Professional Cartoon Palette (Round 2: Neubrutalism Pop) */
    --primary-color: #0065bd;
    /* Trustworthy Blue */
    --primary-dark: #004a8c;
    --accent-color: #FF6B6B;
    /* Coral Red - Warm & Pop */
    --accent-hover: #FF5252;
    --accent-yellow: #ccff00;
    /* Lime Yellow */
    --bg-color: #F4F7FE;
    --white: #ffffff;
    --text-color: #2c3e50;
    --text-light: #5a6b7c;

    /* Shapes & Effects */
    --border-radius: 20px;
    /* Slightly tighter for neubrutalism */
    --border-width: 3px;
    --border-color: #004a8c;

    /* Hard Shadows for Cartoon Feel */
    --shadow-hard: 6px 6px 0px var(--border-color);
    --shadow-hard-hover: 10px 10px 0px var(--border-color);
    --shadow-hard-sm: 4px 4px 0px var(--border-color);

    --transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9ff;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    /* Modern Abstract Mesh Gradient */
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 101, 189, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 168, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 101, 189, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(0, 168, 255, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1rem;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-hard-sm);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transform: translate(-2px, -2px);
}

.btn:hover {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0px var(--border-color);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-hard);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hard-hover);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: var(--white);
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-hard);
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 0 20px;
    border-radius: 50px;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
    background: transparent;
    display: block;
    padding: 0;
    border: none;
    box-shadow: none;
    transform: none;
    text-shadow: none;
    font-weight: 400;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--white);
    -webkit-text-stroke: 0;
    text-shadow: none;
}

.hero-content h2 {
    font-size: 1.6rem;
    color: var(--accent-yellow);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    text-shadow: none;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.services-grid .card {
    text-align: center;
    padding: 50px 30px;
}

.services-grid .icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: var(--white);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-hard-sm);
    transition: var(--transition);
}

.services-grid .card:hover .icon {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(15deg) scale(1.1);
}

/* Partners Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
    background: var(--white);
    border-top: var(--border-width) solid var(--border-color);
    border-bottom: var(--border-width) solid var(--border-color);
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.partner-logo {
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 40px;
    opacity: 0.8;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Team Section */
.team-grid .member-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-hard-sm);
    background: var(--white);
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 80px 0 30px;
    margin-top: 80px;
    color: var(--white);
    border-top: var(--border-width) solid var(--border-color);
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 25px;
    text-shadow: 2px 2px 0px var(--primary-dark);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        margin: 0;
        border-radius: 0;
        top: 0;
        padding: 15px 20px;
        border: none;
        border-bottom: var(--border-width) solid var(--border-color);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px;
        border-bottom: var(--border-width) solid var(--border-color);
        box-shadow: var(--shadow-hard);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 50px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

   