/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f6f7fb;
  color: #222;
  overflow-x: hidden;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgb(45, 51, 73);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: #1e8db9;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 500;
}

nav ul li a:hover {
  color: #1b4bc4;
}

.burger {
  display: none;
  font-size: 28px;
  color: #1b1b1b;
  cursor: pointer;
}

.logo img {
  height: 70px;
  width: auto;
}

/* HEADER */
.header {
  padding: 120px 20px;
  background: linear-gradient(to bottom, rgba(27,75,196,0.75), rgba(27,75,196,0.45)),
              url('Untitled design (1).jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  animation: fadeIn 1.4s ease;
}

.header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.header p {
  font-size: 18px;
  opacity: 0.9;
}

/* SERVICE ICONS */
.service-icons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 55px;
  flex-wrap: wrap;
}

.icon-box {
  text-align: center;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.icon-box i {
  font-size: 52px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
  transition: 0.3s;
}

.icon-box:hover i {
  transform: translateY(-6px) scale(1.15);
  filter: drop-shadow(0 0 12px rgba(255,255,255,1));
}

/* SERVICES */
.service-row {
  max-width: 1200px;
  margin: 90px auto;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.service-img img:hover {
  transform: scale(1.03);
}

.service-text h2 {
  font-size: 32px;
  color: #1b4bc4;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* BUTTON */
.consult-btn-container {
  text-align: center;
  margin: 80px 0;
}

.consult-btn {
  padding: 18px 45px;
  background: linear-gradient(135deg, #1b4bc4, #3d73ff);
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.consult-btn:hover {
  transform: translateY(-4px);
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

footer p {
  font-size: 16px;
  margin-bottom: 6px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 900px) {

  nav {
    padding: 15px 20px;
  }

  nav ul {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px 0;
    flex-direction: column;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  }

  nav ul.show-menu {
    display: flex;
  }

  .burger {
    display: block;
  }

  .service-row {
    flex-direction: column !important;
    text-align: center;
  }

  .header h1 {
    font-size: 36px;
  }

  .service-text h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {

  .logo img {
    height: 55px;
  }

  .header {
    padding: 90px 15px;
  }

  .header h1 {
    font-size: 28px;
  }

  .icon-box i {
    font-size: 40px;
  }

  .service-text p {
    font-size: 15px;
  }

  .consult-btn {
    font-size: 18px;
  }
}
