/* ==================================
   HOME2.CSS - Unified Stylesheet
   Generated: 2025-11-10 02:58:55
   ================================== */

/* ========== GLOBAL CURSOR FIXES ========== */
/* Prevent I-beam cursor on all interactive elements */
a, button, input[type="button"], input[type="submit"], input[type="reset"],
.home2-cta-button, .home2-btn, .badge, [role="button"], 
a *, button *, .home2-cta-button *, .home2-btn *, .badge * {
    cursor: pointer !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ========== FROM: main.css ========== */
/* --------------------------------
   File: main.css for homepage2
   Description: Main stylesheet for homepage2
   Author: GitHub Copilot
   Date: April 25, 2025
   -------------------------------- */

/*------------------------------------*\
  #HOME2 VARIABLES
\*------------------------------------*/
:root {    /* Colors */
    --home2-color-primary: #1E40AF;
    --home2-color-primary-dark: #1E3A8A;
    --home2-color-secondary: #60A5FA;
    --home2-color-tertiary: #8B5CF6;
    --home2-color-accent: #3B82F6;
    --home2-color-text: #111827;
    --home2-color-text-light: #6B7280;
    --home2-color-background: #F9FAFB;
    --home2-color-white: #FFFFFF;
    --home2-color-gray-100: #F3F4F6;
    --home2-color-gray-200: #E5E7EB;
    --home2-color-gray-300: #D1D5DB;
    --home2-color-success: #10B981;
    --home2-color-warning: #F59E0B;
    --home2-color-danger: #EF4444;
    --home2-color-bg-light: #F8FAFC;
    --home2-color-card-bg: #FFFFFF;

    /* Typography */
    --home2-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --home2-title-size: clamp(2.5rem, 5vw, 4rem);
    --home2-heading-size: clamp(1.75rem, 3vw, 2.5rem);
    --home2-subheading-size: clamp(1.25rem, 2vw, 1.75rem);
    --home2-text-size: 1rem;
    --home2-small-size: 0.875rem;

    /* Spacing */
    --home2-section-spacing: clamp(4rem, 10vw, 8rem);
    --home2-element-spacing: clamp(1.5rem, 5vw, 3rem);

    /* Effects */
    --home2-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --home2-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --home2-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --home2-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --home2-shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* Animations */
    --home2-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --home2-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --home2-transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --home2-transition-bezier: cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --home2-radius-sm: 0.25rem;
    --home2-radius: 0.5rem;
    --home2-radius-md: 0.75rem;
    --home2-radius-lg: 1rem;
    --home2-radius-xl: 1.5rem;
    --home2-radius-2xl: 2rem;
    --home2-radius-full: 9999px;

    /* Glow Effects */
    --home2-glow-primary: rgba(96, 165, 250, 0.7);
    --home2-glow-secondary: rgba(30, 64, 175, 0.5);
    --home2-glow-accent: rgba(255, 255, 255, 0.8);
    --home2-particle-color: rgba(96, 165, 250, 0.3);
}

/*------------------------------------*\
  #GENERAL STYLES
\*------------------------------------*/
.home-page-2 {
    font-family: var(--home2-font-sans);
    color: var(--home2-color-text);
    background-color: var(--home2-color-background);
    line-height: 1.6;
}

.home2-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.home2-section {
    padding: var(--home2-section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.home2-section-title {
    font-size: var(--home2-heading-size);
    font-weight: 900; /* Increased from 700 to 900 for bolder text */
    margin-bottom: 1rem;
    color: #000000 !important; /* Changed to pure black with !important to override gradients */
    line-height: 1.3;
    -webkit-text-fill-color: #000000 !important; /* Override gradient text */ 
    background: none; /* Remove any background gradients */
    background-clip: initial; /* Reset background clipping */
    text-fill-color: #000000 !important; /* Standard property */
}

.home2-section-subtitle {
    font-size: var(--home2-subheading-size);
    color: var(--home2-color-text-light);
    margin-bottom: var(--home2-element-spacing);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home2-section-badge {
    display: inline-block;
    padding: 0.35em 1em;
    background: var(--home2-color-primary); /* Changed from gradient to solid color */
    color: #FFFFFF !important; /* Ensuring text is pure white across all sections */
    border-radius: var(--home2-radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--home2-shadow);
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5); /* Adding text shadow for better readability */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Adding subtle border */
}

/* Style for the badge with glow effect */
.home2-badge-glow {
    position: relative;
    overflow: hidden; /* Ensuring the glow effect stays within the badge */
}

.home2-badge-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    animation: pulse-glow 4s infinite;
}

/*------------------------------------*\
  #IMPORTS
\*------------------------------------*/
/* Import all homepage2 component stylesheets */
@import url('hero-section.css');
@import url('features-section.css');
@import url('newsletter-section.css');
@import url('blog-section.css');
@import url('animations.css');
@import url('cursor-effects.css');
@import url('home2-mobile-fixes.css');


/* ========== FROM: hero-section.css ========== */
/* --------------------------------
   File: hero-section.css for homepage2
   Description: Enhanced styles for the hero section of homepage2
   Author: GitHub Copilot
   Date: April 25, 2025
   -------------------------------- */

/* ========== FROM: hero-section.css ========== */
/* --------------------------------
   File: hero-section.css for homepage2
   Description: Enhanced styles for the hero section of homepage2
   Author: GitHub Copilot
   Date: April 25, 2025
   -------------------------------- */

/*------------------------------------*\
  #HERO SECTION
\*------------------------------------*/
.home2-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--home2-color-white, #ffffff);
    padding: 0;
    overflow: visible; /* Changed from hidden to visible for particles */
    /* Ensure section is visible immediately */
    opacity: 1;
    animation: home2-fade-in 0.8s ease-out forwards;
}

.home2-hero-content {
    display: flex;
    flex-direction: row-reverse; /* Reverse the order compared to homepage1 */
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    /* Ensure content animates in */
    opacity: 1;
    animation: home2-slide-up 1s ease-out 0.2s both;
}

.home2-hero-text {
    flex: 1;
    /* Remove conflicting animations - let JS handle this */
}

.home2-hero-title {
    font-size: var(--home2-title-size, clamp(2.5rem, 5vw, 4rem));
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--home2-color-primary, #1E40AF), var(--home2-color-secondary, #60A5FA));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    animation: home2-gradient-shift 8s ease infinite alternate;
    text-shadow: 0px 0px 40px rgba(79, 70, 229, 0.3);
    /* Ensure title is visible */
    opacity: 1;
    white-space: nowrap; /* Force title to stay on one line */
}

/* Badges Wrapper */
.home2-badges-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* Founder Badge - Cyan Neon (GenStaff Brand #00E6FF) - Elegant */
.home2-founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 230, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 230, 255, 0.25);
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(0, 230, 255, 0.15), 
                0 0 25px rgba(0, 230, 255, 0.08),
                inset 0 0 15px rgba(0, 230, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.home2-founder-badge:hover {
    background: rgba(0, 230, 255, 0.12);
    border-color: rgba(0, 230, 255, 0.35);
    box-shadow: 0 0 18px rgba(0, 230, 255, 0.25), 
                0 0 35px rgba(0, 230, 255, 0.12),
                inset 0 0 20px rgba(0, 230, 255, 0.08);
    transform: translateY(-2px);
}

.home2-founder-badge .badge-text {
    color: #00c4d9;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-shadow: 0 0 6px rgba(0, 230, 255, 0.2);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Verified Badge - Orange variant (n8n) - Elegant */
.home2-verified-badge {
    background: rgba(251, 146, 60, 0.08);
    border-color: rgba(251, 146, 60, 0.25);
    box-shadow: 0 0 12px rgba(251, 146, 60, 0.15), 
                0 0 25px rgba(251, 146, 60, 0.08),
                inset 0 0 15px rgba(251, 146, 60, 0.05);
}

.home2-verified-badge:hover {
    background: rgba(251, 146, 60, 0.12);
    border-color: rgba(251, 146, 60, 0.35);
    box-shadow: 0 0 18px rgba(251, 146, 60, 0.25), 
                0 0 35px rgba(251, 146, 60, 0.12),
                inset 0 0 20px rgba(251, 146, 60, 0.08);
}

.home2-verified-badge svg {
    color: #ea7c2b;
    filter: drop-shadow(0 0 4px rgba(251, 146, 60, 0.2));
    cursor: pointer;
}

.home2-verified-badge .badge-text {
    color: #ea7c2b;
    text-shadow: 0 0 6px rgba(251, 146, 60, 0.2);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Enhanced typing effect styles */
.home2-hero-tagline {
    display: block;
    clear: both;
    color: var(--home2-color-primary, #1E40AF);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    /* Ensure tagline is visible */
    opacity: 1;
}

.home2-typing-text {
    position: relative; 
    min-height: 24px;
    display: inline-block;
    /* Ensure typing text is always visible */
    opacity: 1 !important;
}

.home2-typing-text::after {
    content: "|";
    font-weight: 700;
    color: var(--home2-color-primary, #1E40AF);
    animation: home2-cursor-blink 0.8s infinite;
    position: relative;
    margin-left: 2px;
}

.home2-hero-tagline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--home2-color-primary, #1E40AF), var(--home2-color-accent, #3B82F6));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.home2-hero-tagline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.home2-hero-description {
    font-size: 1.125rem;
    color: var(--home2-color-text-light, #6B7280);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
    /* Ensure description is visible */
    opacity: 1;
}

/* Hero meta badges */
.home2-hero-meta a:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Enhanced CTA buttons */
.home2-hero-cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.home2-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--home2-radius);
    font-weight: 500;
    transition: all var(--home2-transition);
    text-decoration: none;
    box-shadow: var(--home2-shadow);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

/* Glow effect for primary button */
.home2-glow-effect {
    position: relative;
    z-index: 1;
}

.home2-btn-glowing-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.home2-glow-effect:hover .home2-btn-glowing-circle {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
}

/* Removed unused classes: ripple-effect, btn-ripple */

/* About Button - Elegant White */
.home2-cta-about {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1E40AF !important;
    border: 2px solid rgba(30, 64, 175, 0.2);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.15);
}

.home2-cta-about:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(30, 64, 175, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.25);
}

.home2-cta-about .home2-btn-icon {
    font-size: 1.25rem;
}

/* Contact Button - Blue Gradient */
.home2-cta-contact {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}

.home2-cta-contact:hover {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
}

.home2-cta-contact .home2-btn-icon {
    font-size: 1.25rem;
}

/* Button Icons */
.home2-btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.home2-cta-button:hover .home2-btn-icon {
    transform: scale(1.2);
}

/* Enhanced hero image styles with 3D tilt effect */
.home2-hero-parallax-wrapper {
    perspective: 1000px;
    margin-bottom: 1rem;
}

.home2-hero-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 2;
}

.home2-tilt-effect-container {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 400px;
    position: relative;
    margin: 0 auto;
    will-change: transform;
}

.home2-hero-image-container {
    max-width: 400px;
    position: relative;
    margin: 0 auto;
}

.home2-hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--home2-radius-xl);
    box-shadow: var(--home2-shadow-lg);
    position: relative;
    z-index: 1;
    display: block;
    transform: translateZ(20px);
    transition: transform 0.5s ease;
}

/* Spotlight effect on image */
.home2-hero-image-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--home2-radius-xl);
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%), 
        rgba(255, 255, 255, 0.18) 0%, 
        rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.home2-tilt-effect-container:hover .home2-hero-image-spotlight {
    opacity: 1;
}

.home2-hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--home2-color-primary), var(--home2-color-secondary));
    border-radius: var(--home2-radius-xl);
    opacity: 0.5;
    z-index: 0;
    transform: translateZ(0);
    transition: all 0.5s ease;
}

.home2-tilt-effect-container:hover .home2-hero-image-bg {
    transform: translateZ(-10px) translateX(10px) translateY(10px);
    opacity: 0.65;
}

/* Tech indicators with enhanced animation */
.home2-hero-tech-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20; /* Tang d�ng k? d? vu?t qua m?i ph?n t? kh�c */
    pointer-events: none;
}

.home2-tech-indicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: var(--home2-radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--home2-color-primary);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    pointer-events: auto;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.home2-tech-indicator:hover {
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.25);
    transform: translateY(-5px);
}

.home2-tech-indicator[data-tech="GenStaff Founder"] {
    top: 35%;
    right: 10%; 
    animation: home2-float-indicator 5s infinite alternate;
}

.home2-tech-indicator[data-tech="Marketer"] {
    top: 20%;
    right: 30%;
    animation: home2-float-indicator 7s 2s infinite alternate;
}

.home2-tech-indicator[data-tech="n8n"] {
    bottom: 15%;
    right: 15%;
    animation: home2-float-indicator 6s 1s infinite alternate;
}

.home2-tech-indicator[data-tech="Automation"] {
    top: 50%;
    right: 25%;
    animation: home2-float-indicator 7s 1.5s infinite alternate;
}

.home2-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--home2-color-primary);
    position: relative;
}

.home2-indicator-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.3);
    animation: home2-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Floating background elements */
.home2-hero-float {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--home2-color-primary), var(--home2-color-secondary));
    opacity: 0.1;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.home2-hero-float-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 0;
    animation: home2-float 25s infinite alternate ease-in-out;
}

.home2-hero-float-2 {
    width: 250px;
    height: 250px;
    bottom: 5%;
    right: 5%;
    animation: home2-float 20s infinite alternate-reverse ease-in-out;
}

.home2-hero-float-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation: home2-float 22s infinite alternate ease-in-out;
}

/* Particle container for background particles */
.home2-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    overflow: visible !important;
}

/* �?m b?o canvas particle d?y d? k�ch thu?c v� hi?n th? d�ng */
.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
}

/* Animated Shapes */
.home2-shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.home2-animated-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--home2-color-primary-transparent), var(--home2-color-secondary-transparent));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(15px);
    opacity: 0.1;
}

.home2-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: 10%;
    animation: home2-shape-morph 25s infinite alternate, home2-float 20s infinite alternate;
}

.home2-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 10%;
    animation: home2-shape-morph 20s infinite alternate-reverse, home2-float 15s infinite alternate-reverse;
}

.home2-shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    animation: home2-shape-morph 15s infinite alternate, home2-float 12s infinite alternate;
}

.home2-shape-4 {
    width: 180px;
    height: 180px;
    bottom: 5%;
    left: 5%;
    animation: home2-shape-morph 18s infinite alternate-reverse, home2-float 14s infinite alternate;
}

/* Scroll indicator */
.home2-hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--home2-color-text-light);
    font-size: 0.875rem;
    z-index: 5;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: home2-fade-in 1s ease 2s both;
}

.home2-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--home2-color-primary);
    border-bottom: 2px solid var(--home2-color-primary);
    transform: rotate(45deg);
    animation: home2-bounce 2s infinite;
    filter: drop-shadow(0 0 5px rgba(79, 70, 229, 0.3));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .home2-hero-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .home2-hero-text {
        order: 2;
        margin-top: 2rem;
    }
    
    .home2-hero-image-wrapper {
        order: 1;
    }
    
    .home2-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .home2-hero-cta-container {
        justify-content: center;
    }
    
    .home2-tech-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .home2-hero-section {
        min-height: auto;
        padding: 5rem 0 7rem; /* Increased bottom padding to make room for scroll indicator */
    }
    
    .home2-hero-title {
        font-size: 2.5rem;
    }
    
    .home2-hero-float {
        opacity: 0.05;
    }
    
    .home2-hero-cta-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 3rem; /* Added margin to separate from scroll indicator */
    }
    
    .home2-cta-button {
        width: 100%;
    }
    
    /* Optimize hero image size for mobile */
    .home2-hero-mobile-optimized .home2-hero-image-container {
        max-width: 300px; /* Smaller image on mobile */
    }
    
    /* Adjust scroll indicator for mobile */
    .home2-hero-scroll-indicator {
        bottom: 1rem;
    }
}

/* Enhanced animations */
@keyframes home2-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes home2-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 20px) rotate(5deg);
    }
    100% {
        transform: translate(-20px, 40px) rotate(-5deg);
    }
}

@keyframes home2-float-indicator {
    0% {
        transform: translateZ(40px) translateY(0);
    }
    100% {
        transform: translateZ(40px) translateY(-10px);
    }
}

@keyframes home2-pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px);
    }
}

@keyframes home2-shape-morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% {
        border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    }
    66% {
        border-radius: 80% 20% 50% 50% / 75% 50% 50% 25%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes home2-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes home2-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

@keyframes home2-cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes home2-ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes home2-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home2-slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home2-slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes home2-title-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home2-underline-expand {
    0% {
        transform: scaleX(0);
        transform-origin: right;
    }
    100% {
        transform: scaleX(1);
        transform-origin: right;
    }
}

