/* Hero Section */
.hero-section {
    background: var(--dark-navy);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Floating code animations */
.floating-code {
    position: absolute;
    opacity: 0.1;
    font-family: monospace;
    font-size: 1rem;
    color: white;
    z-index: 1;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-1000px) rotate(360deg);
    }
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--deep-blue);
    text-align: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--gold-yellow);
}

.service-icon {
    font-size: 3rem;
    color: var(--bright-orange);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-blue);
}

/* Why Choose Us Section */
.why-us-section {
    background-color: var(--dark-navy);
    color: white;
    padding: 100px 0;
}

.usp-item {
    margin-bottom: 30px;
}

.usp-icon {
    font-size: 2rem;
    color: var(--gold-yellow);
    margin-bottom: 15px;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-yellow);
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonial-section {
    background: var(--orange-gold-gradient);
    padding: 80px 0;
    color: white;
}

.testimonial-slide {
    text-align: center;
    padding: 0 50px;
}

.client-logo {
    height: 60px;
    margin: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}