<style>
/* service */

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f7fa;
}
.container{
  max-width:1100px;
  margin:auto;
  padding:20px;
}
.header{
  background:linear-gradient(135deg,#0066ff,#00c6ff);
  color:#fff;
  text-align:center;
  padding:50px 20px;
  border-radius:12px;
}
.header h1{margin-bottom:10px;}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:40px;
}
.box{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.06);
}
.box h2{color:#0066ff;}

.pricing{
  margin-top:60px;
}
.pricing h2{
  text-align:center;
  color:#0066ff;
  margin-bottom:30px;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}
.plan{
  background:#fff;
  border-radius:12px;
  padding:30px;
  text-align:center;
  box-shadow:0 6px 15px rgba(0,0,0,0.08);
}
.plan h3{
  color:#0066ff;
  margin-bottom:10px;
}
.price{
  font-size:26px;
  font-weight:bold;
  margin:15px 0;
}
.plan ul{
  list-style:none;
  padding:0;
}
.plan ul li{
  padding:8px 0;
  border-bottom:1px solid #eee;
}
.plan a{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#0066ff;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
}
.plan a:hover{background:#004bcc;}

.support{
  margin-top:50px;
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.06);
}
.support h3{color:#0066ff;}

footer{
  text-align:center;
  margin-top:50px;
  color:#777;
  font-size:14px;
}


/* price list */

body {
      font-family: Arial, sans-serif;
      background: #f4f6f8;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 30px 15px;
    }

    h1, h2 {
      text-align: center;
      color: #222;
    }

    /* ===== Pricing Cards ===== */
    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .plan {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
    }

    .plan h3 {
      color: #007bff;
      margin-bottom: 10px;
    }

    .price {
      font-size: 26px;
      font-weight: bold;
      margin: 10px 0;
    }

    .plan ul {
      list-style: none;
      padding: 0;
    }

    .plan ul li {
      margin: 8px 0;
      font-size: 14px;
    }

    .plan button {
      margin-top: 15px;
      padding: 12px 20px;
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
    }

    .plan button:hover {
      background: #0056b3;
    }

    /* ===== Form ===== */
    .enquiry-form {
      max-width: 500px;
      margin: 50px auto;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }

    .enquiry-form button {
      width: 100%;
      padding: 12px;
      background: #28a745;
      color: #fff;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .enquiry-form button:hover {
      background: #1e7e34;
    }

    #responseMsg {
      margin-top: 10px;
      text-align: center;
      font-weight: bold;
    }

    /* footer */
    .footer {
  background: radial-gradient(
      at top left,
      #ff6ec4,
      transparent 40%
    ),
    radial-gradient(at bottom right, #7873f5, transparent 40%),
    linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff6ec4;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.4s;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}
