* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
  }

  /* Hero Section */
  .hero-section {
    background-color:#3498db;
    color: white;
    padding: 60px 20px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }

  .hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }

  .hero-content {
    flex: 1;
    max-width: 50%;
    animation: fadeInLeft 1s ease-in-out;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-content h1 span {
    color: #ffc107;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-content a {
    color: #ffc107;
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .hero-content a:hover {
    color: #e6a600;
  }

  .cta-btn {
    background-color: #ffc107;
    color: black;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cta-btn:hover {
    background-color: #e6a600;
    transform: scale(1.05);
  }

  .hero-images {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-in-out;
  }

  .main-image-container {
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .main-image-container:hover {
    transform: scale(1.1);
  }

  .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Benefits Section */
  .benefits-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    text-align: center;
  }

  .benefit-box {
    flex: 1;
    max-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .benefit-box img {
    width: 60px;
    margin-bottom: 15px;
  }

  .benefit-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3498db;
  }

  .benefit-box p {
    font-size: 0.9rem;
    color: #555;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
    }

    .hero-content, .hero-images {
      max-width: 100%;
    }

    .main-image-container {
      width: 240px;
      height: 240px;
    }
  }

  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }

    .hero-content p {
      font-size: 0.85rem;
    }

    .main-image-container {
      width: 200px;
      height: 200px;
    }

    .benefit-box {
      max-width: 100%;
    }
  }

  /* Animations */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .challenges-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
  }

  .challenge-text {
    flex: 1;
    max-width: 50%;
    font-size: 1.2rem;
  }

  .challenge-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
  }

  .challenge-image img {
    height: auto;
    width: 451px;
    object-fit: cover;
    border-radius: 10px;
  }

  .challenge-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: space-between;
  }

  .challenge-icon {
    flex: 1 1 calc(45% - 10px);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color:#f4fafd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .challenge-icon img {
    width: 40px;
    height: 40px;
  }

  .challenge-icon h3 {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .challenges-section {
      flex-direction: column;
      padding: 20px;
    }

    .challenge-text,
    .challenge-image {
      max-width: 100%;
    }

    .challenge-icons {
      flex-direction: column;
    }

    .challenge-icon {
      flex: 1 1 100%;
    }
  }
  .outsource-section {
    text-align: center;
    background-color:#f4fafd;;
    padding: 50px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
  }

  .outsource-heading h1 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
  }

  .outsource-heading .highlight {
    color:#1e3a8a;
    
    font-weight: bold;
  }

  .outsource-heading p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
  }

  .outsource-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .outsource-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1;
    max-width: 30%;
  }

  .card-image img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image fits within the circle */
    border: 2px solid#3498db; /* Optional: Adds a border around the image */
  }

  .outsource-card h3 {
    font-size: 1.5rem;
    color:#3498db;
    margin-bottom: 10px;
  }

  .outsource-card p {
    font-size: 1rem;
    color: #555;
  }

  @media (max-width: 768px) {
    .outsource-cards {
      flex-direction: column;
      gap: 30px;
    }

    .outsource-card {
      max-width: 100%;
    }
  }
  /* Services Section */
.services-section {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.services-section h1 {
    font-size: 2.5rem;
    color:#3498db;
    
    margin-bottom: 20px;
}

.services-section h1 span {
    color: #1e3a8a;
    font-weight: bold;
}

.services-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background-color: #fff;
    border: 2px solid#3498db;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 10%; /* Makes the image circular */
    background-color:#ffffff66;
    padding: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    color:#3498db;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    text-align: left;
    padding-left: 25px;
    position: relative;
}

.service-card ul li:before {
    content: "✔";
    color:#1e3a8a;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 30px;
    }

    .service-card {
        padding: 15px;
    }

    .services-section h1 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card ul li {
        font-size: 0.9rem;
    }
}

/* Revenue Section */
.revenue-section {
    background-color:#f4fafd;
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1129px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.revenue-content {
    text-align: left;
    font-family: Arial, sans-serif;
}

.revenue-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color:#3498db;
    margin-bottom: 15px;
}

.revenue-content h1 span {
    color:#1e3a8a;
}

.revenue-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.revenue-content .source {
    font-size: 0.9rem;
    color:#3498db;
}

.revenue-content .source a {
    text-decoration: none;
    color:#3498db;
    font-weight: bold;
}

.revenue-content .source a:hover {
    text-decoration: underline;
}
/* VA Section */
.va-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  background-color: #f8f8f8;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1200px;
}

.va-content {
  flex: 1;
}

.va-content h2 {
  font-size: 2rem;
  color: #1e3a8a;
  font-weight: bold;
  margin-bottom: 10px;
}

.va-content h2 span {
  color: #3498db;
}

.va-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.va-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.va-point h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
}

.va-point p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.va-point a {
  color:#3498db;
  text-decoration: none;
  font-weight: bold;
}

.va-point a:hover {
  text-decoration: underline;
}

.va-image {
  flex: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.va-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.steps-section h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.steps-section h2 span {
    color: #3498db;
    font-weight: bold;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step-card {
    background-color: #f4fafd; 
    color: white;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: white;
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step-card h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color:#62b6ed;
}

.challenge-image {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
    width: 100%;
}

.challenge-image img {
    max-width: 100%; /* Ensures responsiveness */
    height: auto; /* Maintain aspect ratio */
    width: 451px; /* Default width */
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .challenge-image img {
        width: 90%; /* Adjust width for tablets */
    }
}

@media (max-width: 480px) {
    .challenge-image img {
        width: 80%; /* Adjust width for mobile */
    }
}

