/* Home Page Modern Professional Design */

/* Text Highlighting */
.text-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7bdb00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero Section */
.hero-modern {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(175, 244, 43, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(175, 244, 43, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(175, 244, 43, 0.08) 0%, transparent 50%);
    animation: heroGradientFlow 12s ease-in-out infinite;
}

@keyframes heroGradientFlow {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.8; transform: scale(1.05) rotate(120deg); }
    66% { opacity: 0.9; transform: scale(0.95) rotate(240deg); }
}

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

.hero-badge {
    background: rgba(175, 244, 43, 0.1);
    border: 1px solid rgba(175, 244, 43, 0.3);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.hero-title-modern {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-radius: 2px;
    animation: expandLine 2s ease-out 0.5s both;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}

.hero-subtitle-modern {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-description-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item-modern {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(175, 244, 43, 0.1), transparent);
    transition: left 0.6s;
}

.stat-item-modern:hover::before {
    left: 100%;
}

.stat-item-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(175, 244, 43, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-buttons-modern {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-modern {
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    color: var(--black-color);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

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

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

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(175, 244, 43, 0.4);
    color: var(--black-color);
}

.btn-secondary-modern {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    margin-top: 80px;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    padding: 8px;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-radius: 30px;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Floating Tech Icons */
.tech-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.tech-float:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-float-1 {
    top: 15%;
    right: 4%;
    animation-delay: 0s;
}

.tech-float-2 {
    top: 53%;
    left: 5%;
    animation-delay: 2s;
}

.tech-float-3 {
    bottom: 20%;
    right: 4%;
    animation-delay: 4s;
}

.tech-float-4 {
    top: 14%;
    left: 4%;
    animation-delay: 6s;
}

.tech-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    color: var(--black-color);
    font-size: 18px;
    font-weight: 600;
}

.tech-info h6 {
    margin: 0;
    color: var(--black-color);
    font-weight: 700;
    font-size: 14px;
}

.tech-info span {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-weight: 500;
}

/* About Section Modern */
.about-section-modern {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(175, 244, 43, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(175, 244, 43, 0.05) 0%, transparent 50%);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    background: rgba(175, 244, 43, 0.1);
    border: 1px solid rgba(175, 244, 43, 0.3);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(175, 244, 43, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(175, 244, 43, 0.2);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--black-color);
    font-size: 32px;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(10deg);
}

.about-card h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Value Proposition Modern */
.value-section-modern {
    background: var(--bg-secondary);
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: linear-gradient(135deg, rgba(175, 244, 43, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(175, 244, 43, 0.1), transparent);
    transition: left 0.8s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-20px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(175, 244, 43, 0.25);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.value-card h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 16px;
}

/* Services Section Modern */
.services-section-modern {
    background: var(--bg-primary);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card-modern {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(175, 244, 43, 0.2);
}

.service-header {
    padding: 40px 35px 30px;
    background: linear-gradient(135deg, rgba(175, 244, 43, 0.1) 0%, transparent 50%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--black-color);
    font-size: 28px;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.service-header h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.service-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-cta {
    margin-top: auto;
}

.service-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-btn:hover {
    background: var(--primary-color);
    color: var(--black-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 244, 43, 0.3);
}

/* Testimonials Modern */
.testimonials-modern {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(175, 244, 43, 0.2);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    color: #ffc107;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    font-weight: 700;
    font-size: 20px;
}

.author-info h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* CTA Section Modern */
.cta-section-modern {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(175, 244, 43, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(175, 244, 43, 0.08) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon-modern {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.cta-title-modern {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-grid,
    .value-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tech-float {
        position: relative;
        margin: 20px auto;
        width: fit-content;
    }
    
    .tech-float-1,
    .tech-float-2,
    .tech-float-3,
    .tech-float-4 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-image-section {
        margin-top: 50px;
    }
    
    .about-card,
    .value-card,
    .service-card-modern,
    .testimonial-card-modern {
        padding: 30px 25px;
    }
    
    .section-header-modern {
        margin-bottom: 50px;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease both;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease both;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease both;
}

.scale-in {
    animation: scaleIn 0.6s ease both;
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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