/* ==========================================
   CORE CONNECT HR SOLUTIONS - MAIN STYLESHEET
   Color Theme: Green gradient from logo
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - From Logo */
    --primary-light: #4CAF50;
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-gradient: linear-gradient(135deg, #4CAF50 0%, #2E7D32 50%, #1B5E20 100%);

    /* Accent Colors */
    --accent-light: #81C784;
    --accent: #66BB6A;
    --accent-glow: rgba(76, 175, 80, 0.3);

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAF8;
    --gray-100: #F1F5F1;
    --gray-200: #E8EDE8;
    --gray-300: #C5D1C5;
    --gray-400: #9CAF9C;
    --gray-500: #6B7B6B;
    --gray-600: #4A5A4A;
    --gray-700: #2D3B2D;
    --gray-800: #1A251A;
    --gray-900: #0D150D;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(27, 94, 32, 0.08);
    --shadow-md: 0 5px 25px rgba(27, 94, 32, 0.12);
    --shadow-lg: 0 10px 50px rgba(27, 94, 32, 0.15);
    --shadow-xl: 0 20px 60px rgba(27, 94, 32, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--gray-700);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.4);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ==========================================
   NAVIGATION - DESKTOP
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 70px;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hide mobile-only elements on desktop */
.nav-menu-header,
.nav-menu-contact,
.nav-overlay,
.menu-logo,
.nav-close {
    display: none !important;
}

/* Hide SVG icons on desktop */
.nav-link svg {
    display: none;
}

/* Desktop nav links */
.nav-link {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(76, 175, 80, 0.1);
}

/* Desktop CTA button styling */
.nav-menu-cta {
    margin-left: 5px;
}

.nav-cta {
    background: var(--primary-gradient);
    color: var(--white) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
    background: var(--primary-gradient) !important;
}

/* Hide hamburger on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* Quick contact links - hidden on desktop */
.quick-contact-link {
    display: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-100) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: 20%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--primary-dark);
    bottom: 30%;
    right: 10%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(0, -50px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

/* Flashing GST Badge */
.gst-badge {
    position: absolute;
    top: 100px;
    right: 30px;
    background: linear-gradient(135deg, #fff 0%, #f0f9f0 100%);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    animation: gstPulse 2s ease-in-out infinite;
    border: 2px solid var(--primary);
}

.gst-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gst-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    font-family: monospace;
    animation: gstFlash 1.5s ease-in-out infinite;
}

@keyframes gstPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(46, 125, 50, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(46, 125, 50, 0.5);
    }
}

@keyframes gstFlash {
    0%, 100% {
        color: var(--gray-800);
    }
    50% {
        color: var(--primary);
    }
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--gray-600);
}

.title-highlight {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-subtitle.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    letter-spacing: 1px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* Hero Visual - Animated Illustration */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-illustration {
    position: relative;
    width: 400px;
    height: 400px;
}

.illustration-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.1));
    animation: pulse-ring 3s infinite ease-in-out;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.illustration-person {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: person-float 4s infinite ease-in-out;
}

.person-head {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    margin-bottom: 5px;
}

.person-body {
    width: 50px;
    height: 60px;
    border-radius: 25px 25px 10px 10px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.person-1 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.person-2 {
    bottom: 80px;
    left: 60px;
    animation-delay: -1.3s;
}

.person-3 {
    bottom: 80px;
    right: 60px;
    animation-delay: -2.6s;
}

@keyframes person-float {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-15px) translateX(-50%); }
}

.person-2, .person-3 {
    animation-name: person-float-side;
}

@keyframes person-float-side {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.connection-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.connection-lines svg {
    width: 100%;
    height: 100%;
}

.line-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-line 3s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes draw-line {
    0%, 100% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    color: var(--gray-600);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.15));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   STRENGTHS SECTION
   ========================================== */
.strengths {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.strengths::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.strengths::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.strength-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.strength-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.strength-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.icon-pulse {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: icon-pulse 2s infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.strength-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.strength-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================
   SERVICES SECTION - ANIMATED ORBIT
   ========================================== */
.services {
    padding: var(--section-padding);
    background: var(--off-white);
}

.services-orbit {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(76, 175, 80, 0.4);
    z-index: 10;
    animation: center-pulse 3s infinite ease-in-out;
}

@keyframes center-pulse {
    0%, 100% { box-shadow: 0 0 50px rgba(76, 175, 80, 0.4); }
    50% { box-shadow: 0 0 80px rgba(76, 175, 80, 0.6); }
}

.center-content {
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.center-content span {
    display: block;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px dashed rgba(76, 175, 80, 0.2);
}

.ring-1 {
    width: 350px;
    height: 350px;
    margin: -175px 0 0 -175px;
    animation: orbit-rotate 40s linear infinite;
}

.ring-2 {
    width: 500px;
    height: 500px;
    margin: -250px 0 0 -250px;
    animation: orbit-rotate 60s linear infinite reverse;
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 10px;
}

.service-node:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
    z-index: 20;
}

/* Counter-rotate nodes to keep them upright */
.ring-1 .service-node {
    animation: counter-rotate 40s linear infinite;
}

.ring-2 .service-node {
    animation: counter-rotate 60s linear infinite reverse;
}

@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.service-node:hover {
    animation-play-state: paused;
}

/* Position nodes around the orbit */
.node-1 { top: -50px; left: 50%; margin-left: -50px; }
.node-2 { top: 50%; right: -50px; margin-top: -50px; }
.node-3 { bottom: -50px; left: 50%; margin-left: -50px; }
.node-4 { top: 50%; left: -50px; margin-top: -50px; }

.node-5 { top: 0; left: 50%; margin-left: -50px; }
.node-6 { top: 25%; right: 0; margin-top: -50px; }
.node-7 { bottom: 25%; right: 0; margin-bottom: -50px; }
.node-8 { bottom: 0; left: 50%; margin-left: -50px; }

.node-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.node-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.node-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.2;
}

/* Mobile Services Grid - Hidden on Desktop */
.services-grid-mobile {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ==========================================
   SECTORS SECTION - ANIMATED TREE
   ========================================== */
.sectors {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.sectors-tree {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.tree-root {
    text-align: center;
    margin-bottom: 30px;
}

.root-node {
    display: inline-block;
    padding: 20px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: node-glow 3s infinite ease-in-out;
}

@keyframes node-glow {
    0%, 100% { box-shadow: var(--shadow-lg); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.5); }
}

.main-connector {
    width: 3px;
    height: 40px;
    background: var(--white);
    margin: 0 auto;
    animation: grow-down 0.5s ease forwards;
}

@keyframes grow-down {
    from { height: 0; }
    to { height: 40px; }
}

.tree-branches {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.branch-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sector-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fade-in-up 0.5s ease forwards;
}

.sector-branch:nth-child(1) { animation-delay: 0.2s; }
.sector-branch:nth-child(2) { animation-delay: 0.3s; }
.sector-branch:nth-child(3) { animation-delay: 0.4s; }
.sector-branch:nth-child(4) { animation-delay: 0.5s; }

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.branch-connector {
    width: 3px;
    height: 25px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.sector-node {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-normal);
    cursor: pointer;
    min-width: 180px;
}

.sector-node:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sector-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sector-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.sector-node span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* ==========================================
   PROCESS SECTION - ANIMATED TIMELINE
   ========================================== */
.process {
    padding: var(--section-padding);
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gray-200);
    border-radius: 2px;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: height 0.5s ease;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-marker {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gray-400);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
}

.process-step.visible .step-number {
    background: var(--primary-gradient);
    border-color: var(--primary);
    color: var(--white);
}

.marker-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: marker-pulse 2s infinite;
}

.process-step.visible .marker-pulse {
    animation-play-state: running;
}

@keyframes marker-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--gray-700);
    transition: var(--transition-normal);
}

.process-step.visible .step-content h3 {
    color: var(--primary-dark);
}

.step-content p {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ==========================================
   TRAINING SECTION
   ========================================== */
.training {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Parallax Background Image */
.training-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

/* Dark overlay for readability */
.training-parallax-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(240, 249, 240, 0.88) 50%,
        rgba(255, 255, 255, 0.92) 100%
    );
}

/* Green accent overlay */
.training-parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(76, 175, 80, 0.03) 0%,
        rgba(27, 94, 32, 0.06) 100%
    );
}

/* Floating Training Icons */
.training-bg-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.training-bg-icon {
    position: absolute;
    opacity: 0.08;
    color: var(--primary);
}

.training-bg-icon svg {
    width: 100%;
    height: 100%;
}

.training-bg-icon.icon-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 5%;
    animation: floatIcon 15s ease-in-out infinite;
}

.training-bg-icon.icon-2 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 8%;
    animation: floatIcon 18s ease-in-out infinite reverse;
}

.training-bg-icon.icon-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation: floatIcon 20s ease-in-out infinite;
}

.training-bg-icon.icon-4 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    right: 5%;
    animation: floatIcon 17s ease-in-out infinite reverse;
}

.training-bg-icon.icon-5 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 3%;
    animation: floatIcon 22s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-25px) rotate(-3deg);
    }
    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.training > .container {
    position: relative;
    z-index: 1;
}

.training-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.training-intro p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.training-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.training-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.training-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.training-card:hover::after {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.training-card .card-icon {
    width: 50px;
    height: 50px;
    margin: 0;
}

.training-card .card-icon svg {
    width: 24px;
    height: 24px;
}

.card-header h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
}

.training-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.training-list li {
    position: relative;
    padding-left: 25px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.training-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* ==========================================
   FOUNDER SECTION
   ========================================== */
.founder {
    padding: var(--section-padding);
    background: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-accent {
    position: absolute;
    inset: 0;
    border: 4px solid transparent;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-normal);
}

.image-frame:hover .frame-accent {
    opacity: 1;
}

.founder-info {
    padding: 20px 0;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.founder-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.founder-bio p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.founder-highlights {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.highlight-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.info-details h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-details p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    transition: var(--transition-normal);
    background: var(--white);
    padding: 0 5px;
}

.form-group textarea ~ label {
    top: 25px;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: 0;
    font-size: 0.85rem;
    color: var(--primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
}

.btn-submit svg.btn-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

.btn-submit:hover svg.btn-icon {
    transform: translateX(5px);
}

/* Form row for two columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* File Upload Styles */
.file-upload-group {
    margin-top: 5px;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    background: var(--gray-50);
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(76, 175, 80, 0.05);
}

.file-upload-wrapper.dragover {
    border-color: var(--primary);
    background: rgba(76, 175, 80, 0.1);
    transform: scale(1.01);
}

.file-upload-wrapper.has-file {
    border-style: solid;
    border-color: var(--primary);
    background: rgba(76, 175, 80, 0.05);
}

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

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.file-upload-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-upload-title {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1rem;
}

.file-upload-hint {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* File Selected State */
.file-selected {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-sm);
    pointer-events: auto;
}

.file-upload-wrapper.has-file .file-upload-content {
    display: none;
}

.file-upload-wrapper.has-file .file-selected {
    display: flex;
}

.file-selected > svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.file-name {
    flex: 1;
    font-weight: 500;
    color: var(--gray-700);
    text-align: left;
    word-break: break-all;
}

.file-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.file-remove:hover {
    background: #fee2e2;
}

.file-remove svg {
    width: 16px;
    height: 16px;
    color: var(--gray-500);
}

.file-remove:hover svg {
    color: #ef4444;
}

/* Form Note */
.form-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: -10px;
}

/* Submit Button Loading State */
.btn-submit {
    position: relative;
}

.btn-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Success Message */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
}

.form-success.show {
    display: flex;
}

.contact-form-wrapper:has(.form-success.show) .contact-form {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin: 0;
}

.form-success p {
    color: var(--gray-500);
    margin: 0;
    max-width: 300px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--gray-900);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-wrapper {
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo {
    height: 65px;
    width: auto;
}

.footer-tagline {
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 15px !important;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-contact p strong {
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

/* Tablets */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-illustration {
        width: 300px;
        height: 300px;
    }

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

    .about-cards .value-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .services-orbit {
        width: 450px;
        height: 450px;
    }

    .ring-1 {
        width: 280px;
        height: 280px;
        margin: -140px 0 0 -140px;
    }

    .ring-2 {
        width: 400px;
        height: 400px;
        margin: -200px 0 0 -200px;
    }

    .service-node {
        width: 85px;
        height: 85px;
    }

    .node-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }

    .node-label {
        font-size: 0.6rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-highlights {
        justify-content: center;
    }

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

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

/* ==========================================
   MOBILE REDESIGN - INTERACTIVE & MODERN
   ========================================== */

/* Floating Action Button - Hidden on Desktop */
.fab-container,
.back-to-top {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* ==========================================
       MOBILE NAVIGATION - COMPLETE OVERRIDE
       ========================================== */

    /* Show mobile-only elements - override desktop hiding */
    .nav-menu-header,
    .nav-menu-contact,
    .nav-overlay,
    .menu-logo,
    .nav-close,
    .quick-contact-link {
        display: flex !important;
    }

    /* Show SVG icons on mobile */
    .nav-link svg {
        display: block !important;
        width: 22px;
        height: 22px;
        color: var(--primary);
        flex-shrink: 0;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile menu panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Menu header with logo - full width */
    .nav-menu-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        background: var(--primary-gradient);
        position: sticky;
        top: 0;
        z-index: 10;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        list-style: none;
        border-bottom: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .menu-logo {
        background: var(--white);
        padding: 8px 12px;
        border-radius: var(--radius-sm);
    }

    .menu-logo img {
        height: 32px;
        width: auto;
    }

    /* Close button */
    .nav-close {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-close:active {
        transform: scale(0.9);
        background: rgba(255, 255, 255, 0.3);
    }

    .nav-close svg {
        width: 20px;
        height: 20px;
        color: var(--white);
        display: block !important;
    }

    /* Menu items animation */
    .nav-menu > li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

    .nav-menu.active > li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active > li:nth-child(2) { transition-delay: 0.05s; }
    .nav-menu.active > li:nth-child(3) { transition-delay: 0.1s; }
    .nav-menu.active > li:nth-child(4) { transition-delay: 0.15s; }
    .nav-menu.active > li:nth-child(5) { transition-delay: 0.2s; }
    .nav-menu.active > li:nth-child(6) { transition-delay: 0.25s; }
    .nav-menu.active > li:nth-child(7) { transition-delay: 0.3s; }
    .nav-menu.active > li:nth-child(8) { transition-delay: 0.35s; }
    .nav-menu.active > li:nth-child(9) { transition-delay: 0.4s; }
    .nav-menu.active > li:nth-child(10) { transition-delay: 0.45s; }

    /* Nav links styling */
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        display: flex !important;
        align-items: center;
        gap: 14px;
        border-radius: 0;
        border-bottom: 1px solid var(--gray-100);
        transition: all 0.2s ease;
        color: var(--gray-700);
        background: transparent;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(76, 175, 80, 0.08);
        color: var(--primary);
    }

    /* CTA button in menu */
    .nav-menu-cta {
        padding: 15px 20px;
        border-bottom: none !important;
        margin-left: 0;
    }

    .nav-menu-cta .nav-cta {
        width: 100%;
        margin: 0;
        padding: 14px 20px;
        border-radius: var(--radius-lg);
        justify-content: center;
        font-weight: 600;
        gap: 10px;
    }

    .nav-menu-cta .nav-cta svg {
        color: var(--white);
        display: block !important;
    }

    /* Contact info section */
    .nav-menu-contact {
        padding: 15px 20px 25px;
        background: var(--gray-100);
        border-bottom: none !important;
        flex-direction: column;
        gap: 10px;
    }

    .quick-contact-link {
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        background: var(--white);
        border-radius: var(--radius-md);
        font-size: 0.85rem;
        color: var(--gray-700);
        box-shadow: var(--shadow-sm);
        transition: all 0.2s ease;
    }

    .quick-contact-link:active {
        transform: scale(0.98);
        box-shadow: none;
    }

    .quick-contact-link svg {
        width: 18px;
        height: 18px;
        color: var(--primary);
        display: block !important;
    }

    /* Hamburger menu button */
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        flex-direction: column;
        gap: 5px;
        padding: 0;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hide hamburger when menu is open (close button is inside menu) */
    .nav-toggle.active {
        opacity: 0;
        pointer-events: none;
    }

    /* ==========================================
       MOBILE HERO - ENHANCED
       ========================================== */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 100px 0 40px;
        display: flex;
        align-items: center;
    }

    /* GST Badge - Mobile */
    .gst-badge {
        top: 75px;
        right: 10px;
        padding: 8px 12px;
        gap: 2px;
    }

    .gst-label {
        font-size: 0.6rem;
    }

    .gst-number {
        font-size: 0.75rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .title-line {
        font-size: 1.2rem;
        display: block;
        margin-bottom: 5px;
    }

    .title-highlight {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle.tagline {
        font-size: 1.2rem;
        margin-bottom: 30px;
        animation: pulse-text 2s infinite ease-in-out;
    }

    @keyframes pulse-text {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .hero-visual {
        display: none;
    }

    /* Mobile Stats - Card Style */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        background: var(--white);
        padding: 20px 15px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin: 0 -5px;
    }

    .stat-item {
        text-align: center;
        padding: 10px 5px;
        border-radius: var(--radius-md);
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(46, 125, 50, 0.1));
    }

    .stat-number {
        font-size: 1.6rem;
        display: block;
    }

    .stat-plus {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
        margin-top: 3px;
        line-height: 1.2;
    }

    .scroll-indicator {
        display: none;
    }

    /* ==========================================
       MOBILE SECTIONS - IMPROVED
       ========================================== */
    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* About Cards - Swipeable */
    .about-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 5px 20px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .about-cards::-webkit-scrollbar {
        display: none;
    }

    .about-cards .value-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 30px 25px;
    }

    /* Strengths - Horizontal Scroll */
    .strengths-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 5px 20px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .strengths-grid::-webkit-scrollbar {
        display: none;
    }

    .strength-item {
        flex: 0 0 260px;
        scroll-snap-align: center;
    }

    /* Services - Horizontal Scroll Cards */
    .services-orbit {
        display: none;
    }

    .services-grid-mobile {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 5px 20px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-grid-mobile::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 200px;
        scroll-snap-align: center;
        padding: 25px 20px;
    }

    .service-card:active {
        transform: scale(0.98);
    }

    /* Sectors - Compact Grid */
    .sectors-tree {
        padding: 0 10px;
    }

    .root-node {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .main-connector {
        height: 25px;
    }

    .tree-branches {
        gap: 20px;
    }

    .branch-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .branch-connector {
        display: none;
    }

    .sector-node {
        min-width: auto;
        padding: 12px 16px;
        gap: 10px;
    }

    .sector-icon {
        width: 35px;
        height: 35px;
    }

    .sector-icon svg {
        width: 18px;
        height: 18px;
    }

    .sector-node span {
        font-size: 0.85rem;
    }

    .sector-node:active {
        transform: scale(0.95);
    }

    /* Process Timeline - Mobile */
    .timeline-line {
        left: 20px;
        width: 3px;
    }

    .process-step {
        gap: 20px;
        padding-left: 10px;
    }

    .step-marker {
        width: 45px;
        height: 45px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 2px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    /* Training - Mobile Parallax Fix */
    .training-parallax-bg {
        background-attachment: scroll; /* Parallax doesn't work well on mobile */
    }

    .training-bg-icons {
        display: none; /* Hide floating icons on mobile for cleaner look */
    }

    /* Training - Collapsible Cards */
    .training-categories {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .training-card {
        padding: 20px;
    }

    .training-card .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .training-list li {
        font-size: 0.9rem;
        padding-left: 20px;
    }

    /* Founder - Mobile Layout */
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-name {
        font-size: 2rem;
    }

    .founder-title {
        font-size: 1rem;
    }

    .founder-bio p {
        font-size: 0.95rem;
        text-align: left;
    }

    .founder-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-content: center;
    }

    .highlight {
        background: var(--gray-100);
        padding: 15px 10px;
        border-radius: var(--radius-md);
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    .highlight-label {
        font-size: 0.75rem;
    }

    /* Contact - Mobile Friendly */
    .contact-content {
        gap: 30px;
    }

    .contact-info {
        gap: 15px;
    }

    .info-card {
        padding: 18px;
        gap: 15px;
    }

    .info-card:active {
        transform: scale(0.98);
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-details h4 {
        font-size: 0.9rem;
    }

    .info-details p {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: var(--radius-lg);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .btn-submit {
        padding: 16px 24px;
    }

    /* Form row - stack on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* File upload - mobile */
    .file-upload-wrapper {
        padding: 25px 15px;
    }

    .file-upload-icon {
        width: 45px;
        height: 45px;
    }

    .file-upload-icon svg {
        width: 20px;
        height: 20px;
    }

    .file-upload-title {
        font-size: 0.95rem;
    }

    .file-selected {
        padding: 12px;
        gap: 10px;
    }

    .file-selected > svg {
        width: 28px;
        height: 28px;
    }

    .file-name {
        font-size: 0.9rem;
    }

    .form-note {
        font-size: 0.75rem;
    }

    /* Footer - Mobile */
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo-wrapper {
        display: inline-block;
    }

    .footer-brand p {
        max-width: none;
        font-size: 0.9rem;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-links ul,
    .footer-services ul {
        gap: 10px;
    }

    .footer-bottom {
        padding: 20px 0;
        margin-bottom: 80px; /* Space for FAB */
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* ==========================================
       FLOATING ACTION BUTTON (FAB)
       ========================================== */
    .fab-container {
        display: block;
        position: fixed;
        bottom: 25px;
        right: 20px;
        z-index: 900;
    }

    .fab-main {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--primary-gradient);
        border: none;
        box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 2;
    }

    .fab-main:active {
        transform: scale(0.95);
    }

    .fab-main svg {
        width: 26px;
        height: 26px;
        color: var(--white);
        transition: all 0.3s ease;
    }

    .fab-icon-close {
        position: absolute;
        opacity: 0;
        transform: rotate(-90deg);
    }

    .fab-container.active .fab-icon-open {
        opacity: 0;
        transform: rotate(90deg);
    }

    .fab-container.active .fab-icon-close {
        opacity: 1;
        transform: rotate(0deg);
    }

    .fab-container.active .fab-main {
        background: var(--gray-700);
        transform: rotate(0deg);
    }

    .fab-options {
        position: absolute;
        bottom: 75px;
        right: 5px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fab-container.active .fab-options {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .fab-option {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        position: relative;
    }

    .fab-option:nth-child(1) { transition-delay: 0.1s; }
    .fab-option:nth-child(2) { transition-delay: 0.05s; }
    .fab-option:nth-child(3) { transition-delay: 0s; }

    .fab-container.active .fab-option:nth-child(1) { transition-delay: 0s; }
    .fab-container.active .fab-option:nth-child(2) { transition-delay: 0.05s; }
    .fab-container.active .fab-option:nth-child(3) { transition-delay: 0.1s; }

    .fab-option svg {
        width: 22px;
        height: 22px;
        color: var(--primary);
    }

    .fab-option:nth-child(3) svg {
        color: #25D366;
    }

    .fab-option:active {
        transform: scale(0.9);
    }

    .fab-option::before {
        content: attr(data-tooltip);
        position: absolute;
        right: 60px;
        background: var(--gray-800);
        color: var(--white);
        padding: 6px 12px;
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .fab-option:active::before {
        opacity: 1;
    }

    /* ==========================================
       BACK TO TOP BUTTON
       ========================================== */
    .back-to-top {
        display: flex;
        position: fixed;
        bottom: 25px;
        left: 20px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 900;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:active {
        transform: scale(0.9);
    }

    .back-to-top svg {
        width: 22px;
        height: 22px;
        color: var(--primary);
    }

    /* ==========================================
       TOUCH FEEDBACK UTILITIES
       ========================================== */
    .tap-highlight {
        -webkit-tap-highlight-color: rgba(76, 175, 80, 0.2);
    }

    /* Improve touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Smooth scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Small Mobile - Extra Optimizations */
@media (max-width: 380px) {
    .title-highlight {
        font-size: 1.9rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .about-cards .value-card,
    .strength-item,
    .service-card {
        flex: 0 0 250px;
    }

    .founder-highlights {
        gap: 10px;
    }

    .highlight {
        padding: 12px 8px;
    }

    .highlight-number {
        font-size: 1.3rem;
    }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll padding for fixed nav */
section {
    scroll-margin-top: 80px;
}

/* Selection color */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Focus states for accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .hero-bg-animation {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }

    section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
