/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #e6f0ff; /* light blue */
  color: #000;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #e6f0ff; /* light blue */
}

header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #0d6efd; /* blue */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none; /* no underline */
  font-size: 16px;
  color: #000; /* normal links black */
}

nav ul li a.home1 {
  color: #0d6efd; /* Home always blue */
}

nav ul li a:last-child {
  background-color: orange;
  padding: 8px 18px;
  border-radius: 25px;
  color: #fff;
  transition: 0.3s;
}

nav ul li a:last-child:hover {
  background-color: #fff;
  color: orange;
  border: 1px solid orange;
}

/* remove hamburger menu */
.hamburger, .menu-toggle {
  display: none !important;
}

/* Hero Section (first page) */
.man {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  background-color: #e6f0ff; /* light blue */
}

.man .info {
  max-width: 50%;
}

.man h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #0d6efd;
}

.man p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #000;
}

.man button {
  background-color: orange;
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.man button:hover {
  background-color: #fff;
  color: orange;
  border: 1px solid orange;
}

.man img {
  max-width: 450px;
}

/* Services */
.Services {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
  background-color: #e6f0ff;
}

.service {
  background-color: #fff;
  color: #000;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  width: 200px;
  cursor: pointer;
  transition: 0.3s;
}

.service i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0d6efd;
}

.service strong {
  font-size: 18px;
  font-weight: 600;
}

.service:hover {
  background-color: #0d6efd;
  color: #fff;
}

.service:hover i {
  color: #fff;
}

/* Improve stays orange */
.service:nth-child(2) {
  background-color: orange;
  color: #fff;
}

.service:nth-child(2):hover {
  background-color: orange;
  color: #fff;
}

/* About */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  gap: 50px;
  background-color: #fff;
  color: #000;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0d6efd;
}

.about p {
  margin-bottom: 20px;
}

.about button {
  background-color: #0d6efd;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
}

.about button:hover {
  background-color: #fff;
  color: #0d6efd;
  border: 1px solid #0d6efd;
}

.about img {
  max-width: 400px;
  border-radius: 15px;
}

/* More Info */
.more-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  gap: 50px;
  background-color: #e6f0ff;
}

.more-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0d6efd;
}

.more-info p {
  margin-bottom: 20px;
  color: #000;
}

.more-info button {
  background-color: orange;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
}

.more-info button:hover {
  background-color: #fff;
  color: orange;
  border: 1px solid orange;
}

.more-info img {
  max-width: 400px;
}

/* Our Services */
.our-services {
  padding: 80px;
  text-align: center;
  background-color: #fff;
  color: #000;
}

.our-services h2 {
  font-size: 28px;
  margin-bottom: 50px;
  color: #0d6efd;
}

.container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.view-more {
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  transition: 0.3s;
}

.view-more strong {
  display: block;
  margin: 15px 0;
  font-size: 18px;
}

.view-more:hover {
  background-color: #0d6efd;
  color: #fff;
}

.our-services button {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
}

.our-services button:hover {
  background-color: #fff;
  color: #0d6efd;
  border: 1px solid #0d6efd;
}

/* Contact Section (last page) */
.Contact {
  padding: 80px;
  background-color: #fff; /* now white */
  color: #000;
  text-align: center;
}

.Contact h2 {
  margin-bottom: 40px;
  font-size: 28px;
  color: #0d6efd;
}

.info3 {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 250px;
}

form button {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

form button:hover {
  background-color: #fff;
  color: #0d6efd;
  border: 1px solid #0d6efd;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #00264d; /* dark blue */
  color: #fff;
  font-size: 14px;
  border-top: none;
}