/* Web Development Service Page Enhancements */

/* Enhanced Hero Section */
.enhanced-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b  50%, #334155 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* Hero Background Elements */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Floating Code Snippets */
.floating-code-snippets {
    position: absolute;
    width: 100%;
    height: 100%;
}

.code-snippet {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #60a5fa;
    animation: float 6s ease-in-out infinite;
}

.snippet-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.snippet-2 {
    top: 20%;
    right: 55%;
    animation-delay: 1s;
}

.snippet-3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.snippet-4 {
    top: 80%;
    right: 25%;
    animation-delay: 3s;
}

.snippet-5 {
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cream-white);
    animation: floatRotate 8s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    right: 50%;
    animation-delay: 0s;
    color: #61dafb;
}

.icon-2 {
    top: 45%;
    left: 8%;
    animation-delay: 1.5s;
    color: #f7df1e;
}

.icon-3 {
    top: 20%;
    right: 20%;
    animation-delay: 3s;
    color: #1572b6;
}

.icon-4 {
    top: 25%;
    right: 30%;
    animation-delay: 4.5s;
    color: #e34f26;
}

.icon-5 {
    top: 85%;
    left: 15%;
    animation-delay: 6s;
    color: #339933;
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #06b6d4, transparent);
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

/* Hero Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 1;
}

/* Hero Content Styling */
.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #60a5fa;
    margin-bottom: 2rem;
    animation: slideInFromLeft 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white !important;
    animation: slideInFromLeft 1s ease-out 0.2s both;
}

.highlight-gradient {
    background: linear-gradient(45deg, var(--accent-blue), var(--primary-light), var(--cream-white));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: slideInFromLeft 1s ease-out 0.4s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInFromLeft 1s ease-out 0.6s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInFromLeft 1s ease-out 0.8s both;
}

.cta-button.primary {
    background: var(--accent-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid #4A90E2;
    position: relative;
    overflow: hidden;
}

.cta-button.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: left 0.5s ease;
}

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

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.cta-button.secondary {
    background: var(--cream-white);
    color: black;
    padding: 1rem 2rem;
    border: 2px solid rgba(143, 188, 248, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: rgba(226, 232, 240, 0.1);
    border-color: rgba(226, 232, 240, 0.5);
    transform: translateY(-1px);
}


/* Hero Image Container */
.hero-image-container {
    position: relative;
    animation: slideInFromRight 1s ease-out 0.4s both;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: 1;
}

.decoration-dots {
    position: absolute;
    top: 30%;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: rotate 20s linear infinite;
}

.decoration-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 40%, rgba(59, 130, 246, 0.2) 50%, transparent 60%);
    animation: pulse 3s ease-in-out infinite;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.main-hero-img {
    width: 100%;
    height: auto;
    /* border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3); */
}

/* Hero Section Enhancements */
.hero-background-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(74, 144, 226, 0.1) 0%,
        rgba(15, 23, 42, 0.8) 50%,
        rgba(15, 23, 42, 1) 100%
    );
    z-index: 1;
    height: 150%;
}

/* Floating Achievement Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.achievement-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 1%;
    left: -50px;
    animation-delay: 0s;
}

.card-2 {
    top: 3%;
    right: -50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 1%;
    left: -50px;
    animation-delay: 4s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, var(--accent-blue), var(--dark-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.card-content {
    color: #1e293b;
}

.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    /* animation: bounce 2s infinite; */
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1rem;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Technology Proficiency Section */
.tech-proficiency {
    padding: 5rem 0;
    position: relative;
}

/* Comprehensive Services Section */
.comprehensive-services {
    padding: 5rem 0;
    background: #f8fafc;
}

.expanded-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card.featured-service {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--dark-blue));
}

.service-card.featured-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-blue), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card.featured-service h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card.featured-service > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.9rem;
}

.service-features i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

/* Service Breakdown Section */
/* .service-breakdown {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.breakdown-title {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.breakdown-category h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.breakdown-category h4 i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    line-height: 1.5;
}

.breakdown-item strong {
    color: var(--dark-blue);
    display: block;
    margin-bottom: 0.5rem;
} */

/* Service Process Section */
/* .service-process {
    margin-top: 4rem;
}

.process-title {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-blue), var(--dark-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
} */

/* Technology Proficiency Section */
.tech-proficiency {
    padding: 5rem 0;
    position: relative;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.tech-category h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-category h3 i {
    font-size: 1.3rem;
    color: var(--cream-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--cream-white);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
}

.tech-item span {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.tech-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: white;
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Enhanced Timeline Styles */
.enhanced-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--dark-blue));
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.4s; }
.timeline-step:nth-child(4) { animation-delay: 0.6s; }
.timeline-step:nth-child(5) { animation-delay: 0.8s; }

.step-indicator {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--accent-blue);
    margin: 0 2rem;
    flex-shrink: 0;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--dark-blue);
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.step-header h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin: 0;
}

.step-duration {
    background: var(--accent-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #475569;
    font-size: 0.95rem;
}

.step-features i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

/* Retainer Package Styling */
.package-card.retainer {
    border: 2px solid var(--accent-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.package-card.retainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--dark-blue));
}

.retainer-badge {
    background: var(--accent-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tech-item {
        padding: 1rem 0.5rem;
    }
    
    .tech-icon {
        font-size: 2rem;
    }
    
    .timeline-connector {
        left: 60px;
    }
    
    .timeline-step {
        flex-direction: row !important;
        padding-left: 140px;
    }
    
    .timeline-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .step-indicator {
        position: absolute;
        left: 0;
        margin: 0;
        width: 80px;
        height: 80px;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Comprehensive Services Responsive */
    .expanded-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-breakdown {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .breakdown-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .breakdown-title,
    .process-title {
        font-size: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        padding-left: 100px;
    }
    
    .step-indicator {
        width: 60px;
        height: 60px;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    /* Comprehensive Services Mobile */
    .service-breakdown {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .breakdown-title,
    .process-title {
        font-size: 1.3rem;
    }
    
    .breakdown-item {
        padding: 0.75rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

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

/* Grid Overlay Enhancement */
.box-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

/* Professional Button Enhancements */
.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

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

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

/* Responsive Design for Enhanced Hero */
@media (max-width: 768px) {
    .enhanced-hero {
        min-height: 90vh;
        text-align: center;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .floating-code-snippets,
    .floating-tech-icons {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-cards .achievement-card {
        display: none;
    }
    
    .orb {
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    radial-gradient(circle at 0 0, rgba(158, 187, 255, 0.656) 2px, transparent 2px),
    radial-gradient(circle at 30px 0, rgba(158, 187, 255, 0.656) 2px, transparent 2px),
    radial-gradient(circle at 0 30px, rgba(158, 187, 255, 0.656) 2px, transparent 2px),
    radial-gradient(circle at 30px 30px, rgba(158, 187, 255, 0.656) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0;
    mask: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.2) 70%, rgba(255,255,255,0.0) 90%,rgba(255,255,255,0.0), transparent 100%);
    z-index: 0;
}

