﻿/* General Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-us-content p {
        font-size: 1rem;
    }

    .industry-card {
        flex-basis: 90%;
        margin: 10px auto;
    }

    .service-card {
        flex-basis: 90%;
        margin: 10px auto;
    }

    .testimonial-card {
        margin: 20px auto;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .industry-focus-content h2,
    .service-highlights-content h2 {
        font-size: 1.5rem;
    }
}

/* Extra Small Devices (Phones, 576px and down) */
@media (max-width: 576px) {
    .hero-section {
        padding: 60px 10px;
/*        margin-top: 200px;*/
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .about-us-content p {
        font-size: 0.9rem;
    }

    .industry-card {
        flex-basis: 100%;
        margin: 10px 0;
    }

    .service-card {
        flex-basis: 100%;
        margin: 10px 0;
    }

    .testimonial-card {
        margin: 20px 0;
    }

    .cta-button {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .industry-focus-content h2,
    .service-highlights-content h2 {
        font-size: 1.2rem;
    }
}

.hero-section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    background-image: url('/Images/LandingPageMain.jpeg'); /* Background image */
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.5s ease-out;
}

.cta-button {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

    .cta-button:hover {
        background-color: #c0392b;
        transform: scale(1.05);
    }

.about-us-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.about-us-content {
    max-width: 800px;
    margin: 0 auto;
}

    .about-us-content h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .about-us-content p {
        font-size: 1.7rem;
        color: #555;
        line-height: 1.6;
    }

.industry-focus-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    background-image: url('../../Images/LandingPageIndustries1.png'); /* Background image */
    background-size: cover;
    background-position: center;
    color: #fff;
}

.industry-focus-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.industry-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.industry-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    flex-basis: 30%;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .industry-card i {
        font-size: 2.5rem;
        margin-bottom: 10px;
        /* Remove animation from icons */
        animation: none;
    }

    /*********PROCESS SECTION ***************/
/* Process Section */
.process-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
}

    .process-content h2 {
        font-size: 2.5rem;
        color: #1e2a38;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }

        .process-content h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color: #3a506b;
            display: block;
            margin: 10px auto 0;
        }

    .process-content p {
        font-size: 1.5rem;
        color: #555;
        margin-bottom: 40px;
        line-height: 1.8;
    }

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Prevents wrapping of cards */
}

.process-step {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    flex: 1;
    max-width: 220px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .process-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .process-step i {
        font-size: 3rem;
        color: #3a506b;
        margin-bottom: 15px;
    }

    .process-step h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #1e2a38;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .process-step p {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.6;
    }

    /*******************************/
/*
.service-highlights-section {
    background: #f2f2f2;
    padding: 60px 20px;
    text-align: center;
}

.service-highlights-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    flex-basis: 30%;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .service-card i {
        font-size: 2rem;
        color: #e74c3c;
        margin-bottom: 10px;
    }*/

/* Testimonials Section */
.testimonials-section {
    background: #f2f2f2;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
}

    .testimonials-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

    .testimonial-card p {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
    }

    .testimonial-card h4 {
        font-size: 1rem;
        color: #666;
        margin-top: 10px;
    }


.cta-section {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    /*background-image: url('https://via.placeholder.com/1920x400');*/ /* Background image */
    background-color: #032354;
    background-size: cover;
    background-position: center;
}

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

.cta-button {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

    .cta-button:hover {
        background-color: #c0392b;
        transform: scale(1.05);
    }

        

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}