* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding-top: 80px;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    color: black;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1%;
}

/* Logo Styles */
.logo {
    width: 40px;
    height: 35px;
    border-radius: 15px;
    margin-right: 2rem;
}

.logo:hover {
    color: #ddd;
    transition: color 0.3s ease;
}

.logo-text {
    font-size: 15px;
    margin-bottom: 10%;
    margin-left: 1%;
    font-weight: 600;
    color: black;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f19292;
}

/* Underline Animation */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger Animation to Cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background-color: black;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 5%;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f19292;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 3px 10px;
    }

    .nav-container {
        height: 20px;
    }

    .nav-logo {
        margin-top: 5%;
    }

    body {
        padding-top: 60px;
    }

    .mobile-menu {
        top: 60px;
        margin: 0 2%;
        z-index: 1001;
        /* Ensure this is also set in media query */
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 25px 20px;
    }

    .nav-logo {
        margin-top: 5%;
    }

    .mobile-menu {
        margin: 0 1%;
        padding: 1.5rem;
    }

    .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .navbar {
        padding: 20px 20px;
    }

    .nav-logo {
        margin-bottom: 3%;
    }

    .mobile-menu {
        border-radius: 0 0 50% 50%;
        padding: 4rem;
    }

    .mobile-nav-links li {
        margin: 0.8rem 0;
    }

    .mobile-nav-links a {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

/* Large screens */
@media screen and (min-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 3rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

@media (orientation: landscape) {
    .nav-links {
        top: 60px;
    }
}


/* ===== CSS VARIABLES & ROOT STYLES ===== */
:root {
    /* Color System - 6 Color Ramps */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;

    --secondary-50: #f0fdfa;
    --secondary-100: #ccfbf1;
    --secondary-200: #99f6e4;
    --secondary-300: #5eead4;
    --secondary-400: #2dd4bf;
    --secondary-500: #14b8a6;
    --secondary-600: #0d9488;
    --secondary-700: #0f766e;
    --secondary-800: #115e59;
    --secondary-900: #134e4a;

    --accent-50: #fff7ed;
    --accent-100: #ffedd5;
    --accent-200: #fed7aa;
    --accent-300: #fdba74;
    --accent-400: #fb923c;
    --accent-500: #f97316;
    --accent-600: #ea580c;
    --accent-700: #c2410c;
    --accent-800: #9a3412;
    --accent-900: #7c2d12;

    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-200: #bbf7d0;
    --success-300: #86efac;
    --success-400: #4ade80;
    --success-500: #22c55e;
    --success-600: #16a34a;
    --success-700: #15803d;
    --success-800: #166534;
    --success-900: #14532d;

    --warning-50: #fffbeb;
    --warning-100: #fef3c7;
    --warning-200: #fde68a;
    --warning-300: #fcd34d;
    --warning-400: #fbbf24;
    --warning-500: #f59e0b;
    --warning-600: #d97706;
    --warning-700: #b45309;
    --warning-800: #92400e;
    --warning-900: #78350f;

    --error-50: #fef2f2;
    --error-100: #fee2e2;
    --error-200: #fecaca;
    --error-300: #fca5a5;
    --error-400: #f87171;
    --error-500: #ef4444;
    --error-600: #dc2626;
    --error-700: #b91c1c;
    --error-800: #991b1b;
    --error-900: #7f1d1d;

    /* Neutral Colors */
    --neutral-50: #fafafa;
    --neutral-100: #f4f4f5;
    --neutral-200: #e4e4e7;
    --neutral-300: #d4d4d8;
    --neutral-400: #a1a1aa;
    --neutral-500: #71717a;
    --neutral-600: #52525b;
    --neutral-700: #3f3f46;
    --neutral-800: #27272a;
    --neutral-900: #18181b;

    /* Spacing System (8px base) */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* Typography */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Line Heights */
    --line-height-heading: 1.2;
    --line-height-body: 1.5;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Dark Shadows for white sections */
    --shadow-dark-sm: 0 1px 2px 0 rgb(255 255 255 / 0.1);
    --shadow-dark-md: 0 4px 6px -1px rgb(255 255 255 / 0.15), 0 2px 4px -2px rgb(255 255 255 / 0.1);
    --shadow-dark-lg: 0 10px 15px -3px rgb(255 255 255 / 0.2), 0 4px 6px -4px rgb(255 255 255 / 0.1);
    --shadow-dark-xl: 0 20px 25px -5px rgb(255 255 255 / 0.25), 0 8px 10px -6px rgb(255 255 255 / 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-body);
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    overflow-x: hidden;
}

/* ===== ANIMATIONS & KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(var(--space-8));
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-var(--space-8));
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(var(--space-8));
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-var(--space-2));
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Blue box-shadow for light sections */
.section,
.intro-section-home,
.services-section-home,
.industries-section,
.blog-section,
.service-boxes-section {
    box-shadow: 0 4px 24px 0 rgba(43, 174, 235, 0.15);
}

/* Stronger blue box-shadow for dark sections */
.about-section,
.careers-section,
.case-studies-section,
.contact-section,
.resource-cta-section,
.footer {
    box-shadow: 0 8px 40px 0 rgba(43, 174, 235, 0.35);
}

.section {
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out;
}

.section-title.center {
    text-align: center;
}

.section-text {
    font-size: 1.125rem;
    line-height: var(--line-height-body);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    min-height: 100vh;
}

.flex-container.reverse {
    flex-direction: row-reverse;
}

.content-box {
    flex: 1;
    animation: fadeInLeft 0.8s ease-out;
}

.image-box,
.video-box {
    flex: 1;
    animation: fadeInRight 0.8s ease-out;
}

.image-box-about {
    flex: 1;
    animation: fadeInLeft 0.8s ease-out;
}

/* ===== SECTION BACKGROUNDS - ALTERNATING BLACK & WHITE ===== */

/* Section 1: Home - White */
.intro-section-home {
    background-color: white;
    color: var(--neutral-900);
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-radius: 15px;
}

.intro-section-home .section-title,
.intro-section-home .main-title-home {
    color: var(--neutral-900);
}

.intro-section-home .section-text,
.intro-section-home .intro-text-home {
    color: var(--neutral-600);
}

/* Section 2: About - Black */
.about-section {
    background-color: black;
    color: white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.about-section .section-title {
    color: white;
}

.about-section .section-text {
    color: var(--neutral-300);
}

.about-section .about-content-item {
    background: var(--neutral-800);
    color: white;
    box-shadow: var(--shadow-dark-md);
}

.about-section .about-content-item:hover {
    box-shadow: var(--shadow-dark-lg);
    background: var(--neutral-700);
}

.about-section .about-content-item h4 {
    color: white;
}

.about-section .about-content-item p {
    color: var(--neutral-300);
}

/* Section 3: Services - White */
.services-section-home {
    background-color: white;
    color: var(--neutral-900);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.services-section-home .section-title {
    color: var(--neutral-900);
}

.services-section-home .services-intro {
    color: var(--neutral-600);
}

.services-section-home .service-content-card {
    background: white;
    color: var(--neutral-900);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
}

.services-section-home .service-content-card:hover {
    box-shadow: var(--shadow-xl);
}

.services-section-home .service-content-card h3 {
    color: var(--neutral-900);
}

.services-section-home .service-description {
    color: var(--neutral-600);
}

/* Section 4: Careers - Black */
.careers-section {
    background-color: black;
    color: white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.careers-section .careers-main-title,
.careers-section .careers-subtitle {
    color: white;
}

.careers-section .careers-intro {
    color: var(--neutral-300);
}

.careers-section .form-section {
    background: var(--neutral-800);
    color: white;
    box-shadow: var(--shadow-dark-xl);
}

.careers-section .form-group-home label {
    color: var(--neutral-200);
}

.careers-section .form-group-home input,
.careers-section .form-group-home textarea {
    background: var(--neutral-700);
    border-color: var(--neutral-600);
    color: white;
}

.careers-section .form-group-home input::placeholder,
.careers-section .form-group-home textarea::placeholder {
    color: var(--neutral-400);
}

.careers-section .form-group-home input:focus,
.careers-section .form-group-home textarea:focus {
    background: var(--neutral-600);
    border-color: var(--primary-400);
}

.careers-section .file-upload-label {
    border-color: var(--neutral-600);
    color: var(--neutral-300);
    background: var(--neutral-700);
}

.careers-section .file-upload-label:hover {
    border-color: var(--primary-400);
    background: var(--neutral-600);
}

.careers-section .attachments-info-home,
.careers-section .recaptcha-notice {
    color: var(--neutral-400);
}

.careers-section .recaptcha-notice a {
    color: var(--primary-400);
}

/* Section 5: Industries - White */
.industries-section {
    background-color: white;
    color: var(--neutral-900);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.industries-section .section-title {
    color: var(--neutral-900);
}

.industries-section .industries-intro {
    color: var(--neutral-600);
}

.industries-section .industry-content-card {
    background: white;
    color: var(--neutral-900);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
}

.industries-section .industry-content-card:hover {
    box-shadow: var(--shadow-xl);
}

.industries-section .industry-content-card h3 {
    color: var(--neutral-900);
}

.industries-section .industry-description {
    color: var(--neutral-600);
}

.industries-section .industry-services h4 {
    color: var(--neutral-800);
}

.industries-section .industry-services li {
    color: var(--neutral-600);
}

.industries-section .industry-outcome {
    background: var(--success-50);
    border-left-color: var(--success-500);
}

.industries-section .industry-outcome strong {
    color: var(--success-700);
}

/* Section 6: Case Studies - Black */
.case-studies-section {
    background-color: black;
    color: white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.case-studies-section .section-title {
    color: white;
}

.case-studies-section .section-text {
    color: var(--neutral-300);
}

.case-studies-section .testimonial {
    background: var(--neutral-800);
    border-left-color: var(--primary-400);
}

.case-studies-section .testimonial blockquote {
    color: var(--neutral-200);
}

.case-studies-section .testimonial cite {
    color: var(--primary-400);
}

/* Section 7: Blog - White */
.blog-section {
    background-color: white;
    color: var(--neutral-900);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.blog-section .section-title {
    color: var(--neutral-900);
}

.blog-section .section-text {
    color: var(--neutral-600);
}

.blog-section .blog-item {
    background: white;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
}

.blog-section .blog-item:hover {
    box-shadow: var(--shadow-lg);
}

.blog-section .blog-item h4 {
    color: var(--neutral-900);
}

.blog-section .blog-item p {
    color: var(--neutral-600);
}

/* Section 8: Contact - Black */
.contact-section {
    background-color: black;
    color: white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-text {
    color: var(--neutral-300);
}

.contact-section .contact-info-card {
    background: var(--neutral-800);
    color: white;
    box-shadow: var(--shadow-dark-md);
}

.contact-section .contact-info-card:hover {
    box-shadow: var(--shadow-dark-lg);
    background: var(--neutral-700);
}

.contact-section .contact-info-card h3 {
    color: white;
}

.contact-section .contact-detail strong {
    color: var(--neutral-200);
}

.contact-section .contact-detail p {
    color: var(--neutral-300);
}

.contact-section .contact-icon {
    background: var(--neutral-700);
}

.contact-section .social-links-section h4 {
    color: white;
}

/* Service Boxes Section - White */
.service-boxes-section {
    background-color: white;
    color: var(--neutral-900);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.service-boxes-section .section-title {
    color: var(--neutral-900);
}

.service-boxes-section .service-box {
    background: white;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
}

.service-boxes-section .service-box:hover {
    box-shadow: var(--shadow-xl);
}

.service-boxes-section .service-box h3 {
    color: var(--neutral-900);
}

.service-boxes-section .service-box p {
    color: var(--neutral-600);
}

/* Resource CTA Section - Black */
.resource-cta-section {
    background-color: black;
    color: white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.resource-cta-section .section-title {
    color: white;
}

.resource-cta-section .resource-box,
.resource-cta-section .cta-box {
    background: var(--neutral-800);
    color: white;
    box-shadow: var(--shadow-dark-lg);
}

.resource-cta-section .resource-box:hover,
.resource-cta-section .cta-box:hover {
    box-shadow: var(--shadow-dark-xl);
    background: var(--neutral-700);
}

.resource-cta-section .resource-box h3,
.resource-cta-section .cta-box h3 {
    color: white;
}

.resource-cta-section .resource-box p,
.resource-cta-section .cta-box p {
    color: var(--neutral-300);
}

/* ===== HOME SECTION SPECIFIC STYLES ===== */
.main-title-home {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    color: var(--neutral-900);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.intro-text-home {
    font-size: 1.25rem;
    line-height: var(--line-height-body);
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.value-proposition-home {
    background: rgba(0, 0, 0, 0.05);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.value-proposition-home h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
}

.value-proposition-home ul {
    list-style: none;
}

.value-proposition-home li {
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
    color: var(--neutral-700);
}

.value-proposition-home li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-500);
    font-weight: var(--font-weight-bold);
}

.mobile-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    transition: transform var(--transition-normal);
}

.section-video:hover {
    transform: scale(1.05);
}

.mobile-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    transition: transform var(--transition-normal);
}

.mobile-slider img:hover {
    transform: scale(1.05);
}

/* ===== BUTTONS ===== */
.cta-button-home,
.cta-button,
.service-button,
.resource-button,
.submit-btn,
.signup-button {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-button-home:hover,
.cta-button:hover,
.service-button:hover,
.resource-button:hover,
.submit-btn:hover,
.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

.cta-button-home:active,
.cta-button:active,
.service-button:active,
.resource-button:active,
.submit-btn:active,
.signup-button:active {
    transform: translateY(0);
}

.animated-button {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.animated-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button-animation {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.animated-button:hover .button-animation {
    left: 100%;
}

/* ===== ABOUT SECTION GRID ===== */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.about-content-item {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease-out;
}

.about-content-item:hover {
    transform: translateY(-4px);
}

.about-content-item h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.about-content-item p {
    line-height: var(--line-height-body);
}

/* ===== SERVICES SECTION ===== */
.services-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--space-12);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.services-content-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.service-content-card {
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
}

.service-content-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.emoji-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 2;
}

.service-content-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    text-align: center;
}

.service-description {
    line-height: var(--line-height-body);
    text-align: center;
}

/* ===== CAREERS SECTION ===== */
.careers-hero {
    text-align: center;
    margin-bottom: var(--space-16);
}

.careers-main-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.8s ease-out;
}

.careers-subtitle {
    font-size: 2rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-400);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.careers-intro {
    font-size: 1.125rem;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.form-section {
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.form-container {
    width: 100%;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: var(--space-4);
}

.form-group-home {
    margin-bottom: var(--space-6);
    flex: 1;
}

.form-group-home label {
    display: block;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-2);
}

.form-group-home input,
.form-group-home textarea {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group-home input:focus,
.form-group-home textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group-home textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: var(--space-6);
    border: 2px dashed var(--neutral-300);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.attachments-info-home {
    margin-top: var(--space-2);
    font-size: 0.875rem;
}

.recaptcha-notice {
    margin-top: var(--space-4);
    font-size: 0.875rem;
    text-align: center;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-intro {
    text-align: center;
    font-size: 1.125rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.industries-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.industry-content-card {
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease-out;
}

.industry-content-card:hover {
    transform: translateY(-6px);
}

.industry-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid var(--primary-200);
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-content-card h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    text-align: center;
}

.industry-description {
    margin-bottom: var(--space-6);
    text-align: center;
}

.industry-services {
    margin-bottom: var(--space-6);
}

.industry-services h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.industry-services ul {
    list-style: none;
}

.industry-services li {
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
}

.industry-services li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: var(--font-weight-bold);
}

.industry-outcome {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--success-500);
}

/* ===== CASE STUDIES SECTION ===== */
.testimonial {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin: var(--space-8) 0;
    border-left: 4px solid var(--primary-500);
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: var(--space-3);
}

.testimonial cite {
    font-weight: var(--font-weight-medium);
}

/* ===== BLOG SECTION ===== */
.blog-preview {
    margin: var(--space-8) 0;
    width: 100%;
}

.blog-item {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    transition: all var(--transition-normal);
}

.blog-item:hover {
    transform: translateX(var(--space-2));
}

.blog-item h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-2);
}

/* ===== CONTACT SECTION ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.contact-info-card {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-4px);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
}

.contact-detail {
    margin-bottom: var(--space-3);
}

.contact-detail strong {
    display: block;
    margin-bottom: var(--space-1);
}

.social-links-section {
    margin-top: var(--space-8);
}

.social-links-section h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    font-size: 1.5rem;
    text-decoration: none;
}

.social-link.twitter {
    background: var(--neutral-100);
    color: var(--neutral-800);
}

.social-link.whatsapp {
    background: #25d366;
    color: white;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.email {
    background: #ea4335;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== SERVICE BOXES SECTION ===== */
.service-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.service-box {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease-out;
}

.service-box:hover {
    transform: translateY(-8px);
}

.service-box .mobile-slider {
    height: 200px;
    border-radius: 0;
}

.service-box h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    padding: var(--space-4) var(--space-6) var(--space-2);
}

.service-box p {
    padding: 0 var(--space-6) var(--space-4);
    line-height: var(--line-height-body);
}

.service-box .service-button {
    margin: 0 var(--space-6) var(--space-6);
    width: calc(100% - var(--space-12));
}

/* ===== RESOURCE CTA SECTION ===== */
.resource-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.resource-box,
.cta-box {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease-out;
}

.resource-box:hover,
.cta-box:hover {
    transform: translateY(-6px);
}

.resource-box .mobile-slider,
.cta-box .mobile-slider {
    height: 200px;
    border-radius: 0;
}

.resource-box h3,
.cta-box h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    padding: var(--space-4) var(--space-6) var(--space-2);
}

.resource-box p,
.cta-box p {
    padding: 0 var(--space-6) var(--space-4);
    line-height: var(--line-height-body);
}

.resource-box .resource-button,
.cta-box .cta-button {
    margin: 0 var(--space-6) var(--space-6);
    width: calc(100% - var(--space-12));
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-12);
}

.newsletter-section {
    flex: 1;
    width: 100%;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    color: white;
}

.footer-paragraph {
    color: var(--neutral-300);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-body);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
}

.email-input {
    flex: 1;
    padding: var(--space-3);
    border: 1px solid var(--neutral-600);
    border-radius: var(--radius-lg);
    background: var(--neutral-800);
    color: white;
    font-size: 1rem;
}

.email-input::placeholder {
    color: var(--neutral-400);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-500);
}

.nav-links-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-nav .nav-list {
    display: flex;
    gap: var(--space-8);
    list-style: none;
}

.footer-nav a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-nav a:hover {
    color: white;
}

.copyright-section {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--neutral-700);
}

.copyright-text {
    color: var(--neutral-400);
    margin-bottom: var(--space-2);
}

.powered-by {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

/* ===== CONTACT WIDGET ===== */
.contact-widget {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 1000;
}

.contact-main-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite;
}

.contact-main-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    color: white;
    font-size: 1.5rem;
}

.social-icon {
    font-size: 1.5rem;
}

.contact-links {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(var(--space-4));
    transition: all var(--transition-normal);
}

.contact-widget:hover .contact-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-icons {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-icons:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }

    .flex-container {
        gap: var(--space-8);
    }

    .main-title-home {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .services-content-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-6);
    }

    .industries-content-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Mobile Styles (< 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }

    .section {
        padding: var(--space-16) 0;
    }

    .flex-container {
        flex-direction: column;
        gap: var(--space-8);
        min-height: auto;
    }

    .flex-container.reverse {
        flex-direction: column;
    }

    .main-title-home {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-text-home,
    .section-text {
        font-size: 1rem;
    }

    .mobile-slider {
        height: 250px;
    }

    .value-proposition-home {
        padding: var(--space-4);
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .services-content-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .service-content-card {
        padding: var(--space-6);
    }

    .form-row {
        flex-direction: column;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .industries-content-grid {
        grid-template-columns: 1fr;
    }

    .service-boxes-grid,
    .resource-cta-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-nav .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-4);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-widget {
        bottom: var(--space-4);
        right: var(--space-4);
    }

    .careers-main-title {
        font-size: 2.5rem;
    }

    .careers-subtitle {
        font-size: 1.5rem;
    }

    .form-section {
        padding: var(--space-8);
    }

    .emoji-overlay {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

/* Mobile Portrait (< 480px) */
@media (max-width: 480px) {
    .main-title-home {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .careers-main-title {
        font-size: 2rem;
    }

    .mobile-slider {
        height: 200px;
    }

    .service-content-card,
    .industry-content-card {
        padding: var(--space-4);
    }

    .form-section {
        padding: var(--space-4);
    }

    .contact-widget {
        bottom: var(--space-3);
        right: var(--space-3);
    }

    .contact-main-button {
        width: 50px;
        height: 50px;
    }

    .social-icons {
        width: 40px;
        height: 40px;
    }

    .emoji-overlay {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .intro-section-home {
        min-height: auto;
        padding: var(--space-8) 0;
    }

    .flex-container {
        min-height: auto;
    }

    .mobile-slider {
        height: 200px;
    }

    .main-title-home {
        font-size: 2rem;
        margin-bottom: var(--space-4);
    }

    .value-proposition-home {
        padding: var(--space-4);
        margin-bottom: var(--space-4);
    }
}

/* Accessibility & Focus States */
*:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

    .about-section .about-content-item,
    .services-section-home .service-content-card,
    .industries-section .industry-content-card {
        border: 2px solid currentColor;
    }

    .contact-section .contact-info-card,
    .resource-cta-section .resource-box,
    .resource-cta-section .cta-box {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {

    .contact-widget,
    .animated-button,
    .cta-button-home,
    .service-button,
    .resource-button {
        display: none;
    }

    .section {
        padding: var(--space-4) 0;
    }

    * {
        color: black !important;
        background: white !important;
    }
}