/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Simple Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ffffff;
}

.gradient-mesh {
    display: none;
}

.floating-orbs {
    display: none;
}

/* Minimal Particles */
.particles-container {
    display: none;
}

/* Hero Content */
.hero-content {
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Professional Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

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

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.stat-item p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Professional Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Clean Visual */
.hero-visual {
    position: relative;
    height: 400px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 25px;
    filter: blur(15px);
    animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Minimal Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: #ffffff;
    animation: gentleFloat 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.floating-card i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 8px;
}

.floating-card h4 {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    color: #e2e8f0;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 12px;
    animation: fadeIn 2s ease-out;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #2563eb);
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0% { transform: translateY(-10px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Animated Stats Card */
.stats-card {
    position: absolute;
    bottom: 15%;
    right: 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: gentleFloat 8s ease-in-out infinite 6s;
    transition: all 0.4s ease;
}

.stats-card:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.progress-ring {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.progress-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 3;
}

.progress-fill {
    fill: none;
    stroke: #2563eb;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 157;
    stroke-dashoffset: 15;
    animation: progressFill 2s ease-out 1s both;
}

@keyframes progressFill {
    from {
        stroke-dashoffset: 157;
    }
    to {
        stroke-dashoffset: 15;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

.stat-visual p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Tech Badge */
.tech-badge {
    position: absolute;
    top: 10%;
    right: 20%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: gentleFloat 8s ease-in-out infinite 8s;
    transition: all 0.4s ease;
}

.tech-badge:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.badge-text h5 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
}

.badge-text p {
    font-size: 11px;
    margin: 0;
    color: #64748b;
}

/* Enhanced Visual */
.hero-visual {
    position: relative;
    height: 520px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

/* Enhanced Main Image */
.main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: floatMain 6s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(1.1) contrast(1.1);
}

.main-image:hover .hero-img {
    transform: scale(1.2) rotate(3deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

@keyframes floatMain {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-20px) rotate(1deg); }
}

/* Enhanced Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1e293b;
    animation: gentleFloat 8s ease-in-out infinite;
    transition: all 0.5s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-15px) scale(1.1) rotate(3deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.4);
    cursor: pointer;
}

.card-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.floating-card:hover .card-img {
    transform: scale(1.2) rotate(-8deg);
    border-color: rgba(37, 99, 235, 0.5);
}

.card-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #1e293b;
}

.card-content p {
    font-size: 12px;
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.card-1 {
    top: 12%;
    left: 2%;
    animation-delay: 0s;
}

.card-2 {
    top: 22%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 28%;
    left: 5%;
    animation-delay: 4s;
}
/* Typing Animation */
.typing-text {
    border-right: 3px solid #2563eb;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: #2563eb; }
    51%, 100% { border-color: transparent; }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 20px;
    color: rgba(37, 99, 235, 0.3);
    animation: floatIcon 15s linear infinite;
}

.tech-icon:nth-child(1) { left: 10%; animation-delay: 0s; }
.tech-icon:nth-child(2) { left: 20%; animation-delay: 3s; }
.tech-icon:nth-child(3) { left: 70%; animation-delay: 6s; }
.tech-icon:nth-child(4) { left: 80%; animation-delay: 9s; }

@keyframes floatIcon {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Interactive Glow Effect */
.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0;
}

/* Achievement Badges */
.achievement-badge {
    position: absolute;
    bottom: 15%;
    left: 8%;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    animation: slideInLeft 1s ease-out 2s both;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Pulse Animation for Stats */
.pulse-stat {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.2); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.4); }
}

/* Magnetic Effect for Buttons */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Enhanced Particle System */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    opacity: 0.1;
    animation: geometricFloat 20s linear infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #2563eb;
}

.shape-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7c3aed;
}

.shape-square {
    width: 18px;
    height: 18px;
    background: #16a34a;
    transform: rotate(45deg);
}

@keyframes geometricFloat {
    0% { transform: translateY(100vh) translateX(0px) rotate(0deg); }
    100% { transform: translateY(-100px) translateX(50px) rotate(360deg); }
}

/* Interactive Hover Zones */
.hover-zone {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.hero-visual:hover .hover-zone {
    opacity: 1;
    transform: scale(2);
}

/* Success Metrics Animation */
.metric-counter {
    display: inline-block;
    font-weight: 700;
    color: #2563eb;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .floating-card {
        min-width: 160px;
        padding: 14px;
    }
    
    .tech-badge {
        right: 5%;
        padding: 10px 16px;
    }
    
    .main-image {
        width: 320px;
        height: 250px;
    }
    
    .floating-icons {
        display: none;
    }
}
/* Force Call Now Button Hover */\na.btn-secondary:hover {\n    background: #3b82f6 !important;\n    border-color: #3b82f6 !important;\n    color: #ffffff !important;\n    transform: translateY(-4px) scale(1.02) !important;\n    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;\n}