
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #f9f9fb;
  color: #333;
}

/* Header */
.main-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-list-item {
  margin: 0 12px;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #0a2c6b;
  padding: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff99cc;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ff99cc;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.quote-btn,
.quote-btn2 {
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.quote-btn {
  border: 1px solid #ff99cc;
  color: #ff99cc;
  padding: 8px 15px;
  background: #fff5f2;
}

.quote-btn:hover {
  background: #ff99cc;
  color: white;
}

.quote-btn2 {
  border: 1px solid #ff99cc;
  color: white;
  background: black;
  padding: 12px 20px;
  font-size: large;
  text-shadow: 0 0 5px #ff99cc, 0 0 10px #ff99cc;
}

.quote-btn2:hover {
  background: #ff99cc;
  color: white;
}

/* Services Section */
.services-section {
  padding-top: 120px;
  text-align: center;
}

.text2 h2 {
  font-size: 45px;
  color: black;
  text-shadow: 0 0 5px #ff99cc, 0 0 10px #ff99cc;
}

.text2 p {
  font-size: 18px;
  color: #555;
}


.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.boxing {
  background: white;
  flex: 1 1 45%; 
  min-width: 280px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.boxing:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(255, 153, 204, 0.5);
}

.boxing h2 {
  color: #0a2c6b;
  font-size: 22px;
  margin-bottom: 8px;
  text-shadow: 0 0 5px #ff99cc;
}

.boxing p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.icon {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}

/* Footer */
.end {
  background: #7ea9cf;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.container1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0 0 5px #ff99cc, 0 0 10px #ff99cc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 153, 204, 0.6);
}
