   *{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}
    body{background:#f4f5f7;color:#222;}
    header{background:#fff;padding:15px 30px;box-shadow:0 2px 8px rgba(0,0,0,0.08);position:sticky;top:0;z-index:50;display:flex;justify-content:space-between;align-items:center;}
    header .logo{display:flex;align-items:center;gap:10px;}
    header .logo-box{width:50px;height:50px;background:linear-gradient(135deg,#3b82f6,#6366f1);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;font-weight:bold;}
    nav a{margin:0 12px;text-decoration:none;color:#444;font-weight:600;font-size:14px;}
    nav a:hover{color:#3b82f6;}
    .btn{background:#3b82f6;color:#fff;padding:10px 20px;border-radius:6px;text-decoration:none;font-size:14px;font-weight:bold;}
    .hero{padding:60px 30px;background:linear-gradient(120deg,#eef2ff,#f8fafc);}    
    .hero-content{max-width:1200px;margin:auto;display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center;}
    h1{font-size:40px;font-weight:900;}
    /* .services, .rate-card, .contact, .poster{padding:60px 30px;max-width:1200px;margin:auto;} */
         /* .contact{padding:60px 30px;max-width:1200px;margin:auto;} */
.contact {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.contact-card {
  background: white;
  padding: 32px 30px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.15);
}

/* Info card */
.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #020617;
}

.contact-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* Phone highlight */
.contact-highlight {
  margin: 20px 0;
  font-size: 1.6rem;
  color: #2563eb;
}

/* Location */
.location {
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #16a34a;
}

/* Form */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #2563eb;
}

/* Button */
.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

         .services {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 55px;
  color: #0f172a;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.service-card {
  background: white;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent strip */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
}

/* Accent colors */
.electrical::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.civil::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.htlt::before { background: linear-gradient(90deg, #16a34a, #22c55e); }

/* Hover */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Title */
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 18px;
  color: #020617;
}

/* List */
.service-card ul {
  padding-left: 0;
  list-style: none;
}

.service-card li {
  font-size: 0.95rem;
  line-height: 1.9;
  padding-left: 22px;
  position: relative;
  color: #334155;
}

.service-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

         .rate-card {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #0f172a;
}

/* GRID */
.rate-card .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

/* RATE BOX */
.rate-box {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Colored accent bar */
.rate-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
}

/* Category colors */
.civil::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.electrical::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.htlt::before { background: linear-gradient(90deg, #16a34a, #22c55e); }

.rate-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Headings */
.rate-box h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #020617;
}

/* TABLE */
.rate-box table {
  width: 100%;
  border-collapse: collapse;
}

.rate-box td {
  padding: 12px 8px;
  font-size: 0.95rem;
  border-bottom: 1px dashed #cbd5e1;
}

.rate-box td:nth-child(2) {
  text-align: center;
  color: #475569;
  font-weight: 600;
}

.rate-box td:last-child {
  text-align: right;
  font-weight: 800;
  color: #0f172a;
}

.rate-box tr:last-child td {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rate-card .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .rate-card .grid-3 {
    grid-template-columns: 1fr;
  }
}

        .poster {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1e293b;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.package-card {
  position: relative;
  background: white;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #2563eb;
}

.package-card.highlight {
  background: linear-gradient(145deg, #2563eb, #1e40af);
  color: white;
}

.package-card.highlight .price,
.package-card.highlight h3 {
  color: white;
}

.icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.package-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2563eb;
}

.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  color: white;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 576px) {
  .package-grid {
    grid-template-columns: 1fr; /* 1 card */
  }
}


@media (max-width: 576px) {
  .package-grid {
    grid-template-columns: 1fr; /* 1 card */
  }
}


    .section-title{font-size:30px;font-weight:800;margin-bottom:20px;}
    .card{background:#fff;padding:20px;border-radius:12px;box-shadow:0 2px 10px rgba(0,0,0,0.08);margin:10px 0;}
    .grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;}
    table{width:100%;border-collapse:collapse;margin-top:15px;font-size:14px;}
    th,td{text-align:left;padding:8px;border-bottom:1px solid #ddd;}
    .contact form input, .contact form textarea{width:100%;padding:10px;border:1px solid #ccc;border-radius:5px;margin:8px 0;font-size:14px;}
    .footer{padding:25px;background:#fff;border-top:1px solid #ddd;text-align:center;margin-top:40px;font-size:14px;color:#555;}
    @media(max-width:800px){.hero-content{grid-template-columns:1fr;}nav{display:none;}}
  
  
    /* Hero section */
  .hero {
    background: url('/Images/hero.webp') center/cover no-repeat;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  }
  .hero p {
    font-size: 1.3rem;
    margin-top: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  }
  .gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:20px;
  }
  .gallery img{
    width:90%;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
    transition:transform .3s;
  }
  .gallery img:hover{
    transform:scale(1.05);
  }
