/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}


/* Hero Section */
.hero-section {
    background-image: url('consaltant.avif'); /* Add your background image here */
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1em;
}

.hero-btn:hover {
    background-color: #0056b3;
}

/* Services Section */
.container-home {
    padding: 20px;
    display: flex;
    justify-content: center;
  }
  .services {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the service boxes */
    max-width: 1000px; /* Optional: limit the width of the section */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
  }
.services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.services-section h2 {
    color: #007BFF;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
}

.service-box {
   
    width: 45%;
    background-color: #f9f9f9;
    margin: 20px 0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

  

.service-box:hover {
    transform: translateY(-10px);
}

.service-box h3 {
    color: #007BFF;
    margin-bottom: 15px;
}

.service-box p {
    color: #555;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: #0056b3;
}

/* Call to Action Section */
.cta-section {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 15px 30px;
    background-color: white;
    color: #007BFF;
    border-radius: 5px;
    font-size: 1em;
}

.cta-btn:hover {
    background-color: #e6e6e6;
}
