
    :root {
      --blue-100: #f1f9fd;
      --blue-300: #bfe3f5;
      --blue-400: #8cc9e8;
      --blue-600: #3f6f99;
      --blue-700: #2b4f73;

      --primary: var(--blue-400);
      --primary-dark: var(--blue-700);
      --secondary: var(--blue-100);

      --text-dark: #2b4f73;
      --text-muted: #6b88a6;

      --glass: rgba(255,255,255,0.95);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Inter, Arial, sans-serif;
    }



    body {
      background: linear-gradient(180deg, var(--secondary), #ffffff);
      color: var(--text-dark);
      line-height: 1.6;
    }

    /* ===== HEADER ===== */
   /* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
    header .logo {
        height: 150px; /* desktop size */
        max-width: 420px;
        width: auto;
        object-fit: contain;
    }



/* ===== TOP CONTACT BAR ===== */
.top-bar {
  background: var(--blue-700);
  color: #ffffff;
  font-size: 0.85rem;
}

.top-bar-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-inner span {
  white-space: nowrap;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Mobile: stack neatly */
@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}


    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
    }

/* ===== REVIEWS ===== */
.reviews {
  padding: 5rem 2rem;
  text-align: center;
}

.reviews h2 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: var(--primary-dark);
}

/* Featured Review */
.featured-review {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  background: var(--glass);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(43,79,115,0.18);
}

.featured-review p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.featured-review span {
  color: var(--text-muted);
  font-weight: 600;
}

/* Slider */
.review-slider {
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 3rem;
}

.review-track {
  display: flex;
  gap: 2rem;
  animation: scrollReviews 30s linear infinite;
}

.review {
  min-width: 320px;
  background: #ffffff;
  padding: 1.75rem 2rem;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(43,79,115,0.15);
  font-size: 0.95rem;
  color: var(--text-dark);
  white-space: normal;
}

/* Button */
.reviews-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(63,111,153,0.35);
}

/* Animation */
@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .featured-review p {
    font-size: 1.1rem;
  }

  .review {
    min-width: 260px;
  }
}

    /* ===== HERO ===== */
    .hero {
      padding: 4.5rem 2rem;
      text-align: center;
    }

    .hero h1 {
      font-size: 2.75rem;
      margin-bottom: 1rem;
    }

    .hero p {
      max-width: 680px;
      margin: 0 auto;
      color: var(--text-muted);
    }


.top-bar i {
  margin-right: 0.45rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.top-bar i {
  display: inline-block !important;
  color: #ffffff !important;
}

/* Bulk Pricing Page */
.pricing-page {
  padding: 60px 20px;
  background: #f5f9fd;
}

.pricing-container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-container h1 {
  text-align: center;
  margin-bottom: 10px;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.pricing-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.pricing-card h2 {
  margin-bottom: 15px;
  color: #0a4fa3;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 14px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.pricing-table th {
  background: #eaf2ff;
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
}


    /* ===== GALLERY ===== */
    .gallery {
      padding: 4rem 2rem;
    }

    .gallery-grid {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .gallery-grid img {
      width: 100%;
      border-radius: 22px;
      box-shadow: 0 18px 45px rgba(43,79,115,0.2);
      object-fit: cover;
    }

    /* ===== SERVICES ===== */
    .services {
      padding: 5rem 2rem;
      text-align: center;
    }

    .services h2 {
      font-size: 2.4rem;
      margin-bottom: 3rem;
    }

    .service-cards {
      max-width: 1250px; /* wider layout */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* wider cards */
  gap: 3.5rem;
    }

   .service-card {
  background: #ffffff; /* stronger contrast */
  padding: 3.5rem 3rem;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(43,79,115,0.18);
}
.service-card h2 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

    .service-card h3 {
      margin-bottom: 0.75rem;
    }

    .service-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}


   .badge {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  color: var(--primary-dark);
  background: rgba(191, 227, 245, 0.6); /* soft logo blue */
  border: 1px solid rgba(63, 111, 153, 0.25);
  border-radius: 999px;

  vertical-align: middle;
}

    .view-services-btn {
      display: inline-block;
      margin-top: 3rem;
      padding: 0.9rem 1.75rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 10px 25px rgba(63,111,153,0.35);
    }

    /* ===== LOCATION ===== */
    .location {
      padding: 5rem 2rem;
    }

    .location-card {
      max-width: 1100px;
      margin: auto;
      background: var(--glass);
      padding: 3.5rem;
      border-radius: 32px;
      box-shadow: 0 30px 70px rgba(43,79,115,0.15);
    }

    .location-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3rem;
    }

    iframe {
      width: 100%;
      height: 300px;
      border-radius: 20px;
      border: 0;
    }

    /* ===== FOOTER ===== */
    footer {
      background: linear-gradient(135deg, var(--blue-700), #223e5c);
      color: #fff;
      text-align: center;
      padding: 3.5rem 2rem;
      margin-top: 5rem;
    }

    footer p {
      font-size: 0.85rem;
      opacity: 0.85;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 900px) {
      nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--blue-700);
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 1.5rem;
      }

      nav.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }

      .gallery-grid,
      .service-cards,
      .location-inner {
        grid-template-columns: 1fr;
      }

      header img {
        height: 90px;
      }
    }



/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  padding: 6rem 2rem;
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.contact-card h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

form {
  display: grid;
  gap: 1.25rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid #dbe6ff;
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.call-btn {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-dark);
}

.success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 600;
}

/* =========================
   SERVICES PAGE
========================= */

/* =========================
   SERVICES PAGE LAYOUT
========================= */

.services-page {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-page h1 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 3.5rem;
}

/* Responsive grid */
.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* Service card styling */
.services-page .service-card {
  background: var(--glass);
  padding: 3rem 2.5rem;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(43,79,115,0.15);
  text-align: center;
}

.services-page .service-card h3 {
  margin-bottom: 0.75rem;
}

.services-page .service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.service-card ul {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.service-card ul li {
  margin-bottom: 0.85rem;   /* space between lines */
  line-height: 1.6;         /* vertical breathing room */
  font-size: 0.95rem;
  color: var(--text-muted);
}



