:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #EBF3FF;
    --secondary: #25D366;
    /* WhatsApp Green */
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 20px 40px rgba(0, 102, 255, 0.08);
    --shadow-hover: 0 30px 60px rgba(0, 102, 255, 0.12);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header:not(.site-header) {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

header:not(.site-header) .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-main);
}

nav ul li a:hover {
    color: var(--primary);
}

.btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    line-height: 1.35;
    min-height: 48px;
}

[data-lucide] {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    vertical-align: -0.125em;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background: var(--white);
    color: var(--text-main);
    border: 1px solid #E2E8F0;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background: linear-gradient(to right, #f4f5f5, #fafafe);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-proof {
    display: flex;
    gap: 30px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.proof-item i {
    color: var(--primary);
}

.hero-visual {
    position: relative;
    aspect-ratio: 651 / 528;
}

.hero-visual picture {
    display: block;
    aspect-ratio: 651 / 528;
}

.hero-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 651 / 528;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    /* Create a smooth fade on the left edge */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

/* Services */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header span {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

/* Trusted By Section */
.trusted-by {
    padding: 100px 0;
    background: var(--white);
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.5;
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: scale(1.06);
}

.trusted-logo-item img {
    height: 72px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.25);
    transition: var(--transition);
}

.trusted-logo-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.trusted-disclaimer {
    text-align: center;
    font-size: 10px;
    color: #B0BAC9;
    margin-top: 32px;
    font-style: italic;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

/* Row 1: 3 cards spanning 2 columns each */
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
    grid-column: span 2;
}

/* Row 2: 2 cards centered — 1 col offset + span 2 each */
.services-grid .service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid #F1F5F9;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

/* Highlight card for In House Training */
.service-card--highlight {
    background: linear-gradient(145deg, #0D1B3E 0%, #112255 40%, #1A3070 100%);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 215, 100, 0.2);
    box-shadow: 0 20px 50px rgba(13, 27, 62, 0.3);
}

.service-card--highlight h3 {
    color: #FFFFFF !important;
    font-size: 20px;
}

.service-card--highlight p {
    color: rgba(210, 225, 255, 0.85) !important;
    line-height: 1.7;
}

.service-card--highlight .service-icon {
    background: linear-gradient(135deg, rgba(255, 215, 100, 0.2) 0%, rgba(255, 215, 100, 0.08) 100%);
    color: #FFD764;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 100, 0.25);
}

.service-card--highlight .service-icon svg {
    color: #FFD764;
    stroke: #FFD764;
}

.service-card--highlight .feature-item {
    color: rgba(210, 225, 255, 0.9) !important;
    font-weight: 500;
}

.service-card--highlight .feature-item i {
    color: #FFD764 !important;
}

.service-card--highlight .service-link {
    color: #FFD764 !important;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.service-card--highlight .service-link:hover {
    color: #FFF0A0 !important;
}

.service-card--highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(13, 27, 62, 0.45);
    border-color: rgba(255, 215, 100, 0.4);
}

/* Badge In House Training */
.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 100, 0.25) 0%, rgba(255, 215, 100, 0.1) 100%);
    color: #FFD764;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 100, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFFFFF 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.05);
}

.service-icon img,
.service-icon i,
.service-icon svg {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--primary);
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: scale(1.02);
}

.portfolio-img {
    height: 180px;
    background: #eee;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats */
.stats {
    background: var(--primary);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
}

.quote-icon {
    color: var(--primary-light);
    font-size: 40px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.user-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.user-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #0047B3 100%);
    border-radius: 24px;
    padding: 60px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    gap: 15px;
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-rocket {
    position: absolute;
    right: 0px;
    bottom: -50px;
    width: 400px;
    z-index: 1;
}

/* Footer */
footer {
    background: #0B0E13;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-col p {
    color: #A0AEC0;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: #A0AEC0;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #A0AEC0;
}

.contact-info i {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #718096;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge,
    .hero h1,
    .hero p,
    .hero-btns,
    .hero-proof {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset nth-child column spans at tablet */
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-rocket {
        position: relative;
        right: auto;
        bottom: auto;
        width: 300px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0 60px;
    }

    nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
    }

    .services-grid,
    .portfolio-grid,
    .testimonial-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Reset nth-child column spans at mobile */
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 32px;
    }

    .cta-box {
        padding: 40px 20px;
    }
}
