/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: #0a2a43;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo span {
  color: #f4b41a;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

.nav a:hover {
  color: #f4b41a;
}

/* HERO */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(10,42,67,.85), rgba(10,42,67,.85)),
  url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTON */
.btn {
  background: #f4b41a;
  color: #000;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* SECTIONS */
.section {
  padding: 70px 8%;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0a2a43;
}

.light-bg {
  background: #f5f5f5;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: #222;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
}

/* POP UP + COLOR CHANGE */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  background-color: #0a3cff; /* change to your brand color */
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fff;
  padding: 40px 20px;
}

.workflow-section {
  text-align: center;
  max-width: 1300px;
  margin: auto;
}

.workflow-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #043d3b;
  margin-bottom: 50px;
}

.workflow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

.step {
  width: 230px;
  text-align: center;
  position: relative;
}

.step-img {
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #ff4433;
  color: #fff;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 40px;
  box-shadow: 0 0 0 10px rgba(255, 68, 51, 0.15);
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  color: #043d3b;
}

.step p {
  margin-top: 10px;
  font-size: 16px;
  color: #5e5f7e;
  line-height: 1.5;
}

.final-score {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: linear-gradient(to right, #ff4433 50%, #043d3b 50%);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 16px;
}

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* FOOTER */
.footer {
  background: #0a2a43;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ON-SCROLL ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 30px;
  }

  .header {
      flex-direction: column;
      text-align: center;
  }

  .nav {
      margin-top: 10px;
  }
}


