
body{
 margin:0;
 font-family: 'Poppins',sans-serif;
 background-color: #f9fbff;
 color: #333;
}

/* Container Section Layout */
.container-section{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 100px;
  background-color: #f3f8fd;
  flex-wrap: wrap;
}

.container-content{
  margin-top: 3%;
  flex: 1;
  max-width: 550px;
}

.container-content h3 {
  color: #0056b3;
  font-size: 18px;
  margin-bottom: 10px;
}
.container-content h1 {
  color: #002d5b;
  font-size: 2rem;
  margin-bottom: 20px;
}

.container-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  background-color: #003366;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
.contact-btn:hover {
  background-color: #0055aa;
}

.container-image {
  flex: 1;
  text-align: center;
}


.container-image img {
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* -------- Process Flow Section -------- */
.process-flow {
  text-align: center;
  padding: 80px 60px;
  background-color: #ffffff;
}

.process-flow h2 {
  color: #002d5b;
  font-size: 2rem;
  margin-bottom: 15px;
}

.process-flow p {
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* Flowchart Layout */
.flowchart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  background: #f3f8fd;
  border: 2px solid #cce0ff;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 50, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0056b3;
}

.step h3 {
  color: #002d5b;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step p {
  font-size: 0.95rem;
  color: #444;
}

.arrow {
  font-size: 1.5rem;
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .container-section {
    flex-direction: column;
    text-align: center;
  }

  .container-image img {
    width: 100%;
  }

  .flowchart {
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    transform: rotate(90deg);
  }
}