    /* ================= HEADER ================= */
    .header {
      background: #0b1c2d;
      background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
      background-size: 26px 26px;
      padding: 8px 0;
      /* tighter like image */
    }

    /* ================= LOGO ================= */
    .logo {
      gap: 10px;
    }

    /* ICON */
    .logo-icon {
      width: 44px;
      height: 44px;
      background: #ff6a00;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      line-height: 1;
    }

    /* LOGO TEXT WRAPPER */
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    /* Premier Gas Safety (smaller + tighter) */
    .logo-title {
      font-size: 4px;
      /* ⬅ reduced */
      font-weight: 100;
      color: white;
      margin: 0;
      padding: 0;
    }

    /* Company (very small & subtle like image) */
    .company-text {
      font-size: 11px;
      /* small like image */
      font-weight: 400;
      color: #9fb0c5;
      /* muted */
      margin-top: 2px;
      letter-spacing: 0.3px;
    }

    /* ================= NAV ================= */
    .navmenu ul {
      display: flex;
      gap: 8px;
      /* ⬅ exact spacing */
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .navmenu a {
      font-size: 15px;
      font-weight: 500;
      color: #ffffff;
      white-space: nowrap;
    }

    .navmenu a:hover {
      color: #ffffff;
    }

    /* ================= RIGHT ACTIONS ================= */
    .header-actions {
      gap: 10px;
    }

    /* PHONE */
    .phone-btn {
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 10px;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* REQUEST BUTTON */
    .btn-request {
      background: #ff6a00;
      color: #fff;
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 10px;
    }

    .btn-request:hover {
      background: #ff7f26;
    }



   
   
   
   
   .hero-section {
      background: #0b1c2d;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 24px 24px;
      padding: 100px 0;
      color: #fff;
    }

    /* BADGE */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 106, 0, 0.15);
      color: #ff6a00;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    /* TITLE */
    .hero-title {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;

    }

    .hero-title span {
      color: #ff6a00;
    }

    /* DESC */
    .hero-desc {
      color: #cfd8e3;
      font-size: 17px;
      max-width: 520px;
      margin-bottom: 30px;
    }

    /* BUTTONS */
    .hero-buttons {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
    }

    .btn-orange {
      background: #ff6a00;
      color: #fff;
      padding: 12px 22px;
      border-radius: 10px;
      font-weight: 600;
    }

    .btn-outline {
      border: 2px solid #cfd8e3;
      color: #fff;
      padding: 12px 22px;
      border-radius: 10px;
      font-weight: 600;
    }

    /* FEATURES */
    .hero-features {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .hero-features li {
      font-size: 14px;
      color: #cfd8e3;
    }

    .hero-features i {
      color: #ff6a00;
      margin-right: 6px;
    }

    /* RIGHT STATS */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      background: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 20px;
    }

    .stat-box {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 30px;
      text-align: center;
    }

    .stat-box h3 {
      font-size: 36px;
      color: #ff6a00;
      margin-bottom: 6px;
    }

    .stat-box p {
      font-size: 14px;
      color: #cfd8e3;
    }

    /* ISO BADGE */
    .iso-badge {
      grid-column: span 2;
      margin-top: 10px;
      background: #ff6a00;
      color: #fff;
      padding: 12px;
      border-radius: 12px;
      font-weight: 600;
      text-align: center;
    }


    /* ABOUT SECTION */
.about {
  padding: 100px 0;
  background: #fff;
}

/* BADGE */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f5f7;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1b2b41;
  margin-bottom: 20px;
}

.about-badge .dot {
  width: 8px;
  height: 8px;
  background: #ff6a00;
  border-radius: 50%;
}

/* TITLE */
.about-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0b1c2d;
}

.about-title span {
  color: #ff6a00;
}

/* TEXT */
.about-text {
  font-size: 16px;
  color: #5c6f82;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.about-stats .stat {
  background: #f3f6f9;
  padding: 20px 30px;
  border-radius: 14px;
  text-align: center;
  min-width: 140px;
}

.about-stats h3 {
  font-size: 30px;
  font-weight: 800;
  color: #0b1c2d;
  margin-bottom: 5px;
}

.about-stats p {
  font-size: 14px;
  color: #6b7c93;
}

/* RIGHT CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-card {
  background: #fff;
  border: 1px solid #e3e9f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.about-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1c2d;
}

.about-card p {
  font-size: 15px;
  color: #6b7c93;
  line-height: 1.6;
}

/* ICON */
.icon-box {
  width: 48px;
  height: 48px;
  background: #f3f6f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box i {
  font-size: 22px;
  color: #0b1c2d;
}



/* SERVICES SECTION */
.services {
  padding: 100px 0;
  background: #f6f9fc;
}

/* Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1b2b41;
  margin-bottom: 16px;
}

.section-badge .dot {
  width: 8px;
  height: 8px;
  background: #ff6a00;
  border-radius: 50%;
}

/* Title */
.services-title {
  font-size: 44px;
  font-weight: 800;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.services-title span {
  color: #ff6a00;
}

/* Subtitle */
.services-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: #5c6f82;
  line-height: 1.8;
}

/* Cards */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid #e3e9f0;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.service-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon-box i {
  font-size: 22px;
  color: #0b1c2d;
}

/* Card text */
.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1c2d;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #6b7c93;
  line-height: 1.7;
}


/* CTA area */
.services-cta .cta-text {
  font-size: 16px;
  color: #5c6f82;
  margin-bottom: 20px;
}

/* CTA button */
.cta-btn {
  display: inline-block;
  background: #ff6a00;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

.cta-btn:hover {
  background: #e85d00;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.4);
}



.why-choose-us {
  padding: 80px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  padding: 22px;
  transition: 0.3s;
}

.feature-card.active {
  background: #0f2744;
  color: #ffffff;
}

.feature-card .icon {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* RIGHT SIDE */
.badge {
  display: inline-block;
  background: #f1f4f8;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 16px;
  color: black;
}

.main-heading {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-heading span {
  color: #ff6b00;
}

.desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.7;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f5f7fa;
  padding: 20px;
  border-radius: 14px;
  margin-top: 30px;
}

.guarantee-box h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.guarantee-box p {
  font-size: 14px;
  margin: 0;
  color: #666;
}


.service-coverage {
  padding: 90px 0;
  background: radial-gradient(circle at top, #1b3554, #081c34);
  color: #fff;
}

.coverage-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  font-size: 14px;
  margin-bottom: 18px;
}

.coverage-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.coverage-title span {
  color: #ff6b00;
}

.coverage-subtitle {
  font-size: 16px;
  color: #cfd8e3;
  max-width: 700px;
  margin: 0 auto 60px;
}

.coverage-cards {
  margin-top: 30px;
}

.coverage-card {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  text-align: left;
}

.card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.card-header h4 {
  margin: 0;
  font-size: 18px;
}

.card-header p {
  margin: 0;
  font-size: 14px;
  color: #b8c4d4;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon.orange {
  background: #ff6b00;
}

.icon.white {
  background: #ffffff;
  color: #081c34;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}

.locations-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.locations-grid li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #e6edf5;
}

.muted {
  font-size: 13px;
  color: #a9b6c6;
  margin-top: 10px;
}

.notice-box {
  margin-top: 22px;
  background: rgba(255,107,0,0.12);
  border-radius: 14px;
  padding: 16px;
}

.notice-box strong {
  display: block;
  font-size: 15px;
}

.notice-box p {
  font-size: 14px;
  margin: 4px 0 0;
  color: #e6edf5;
}


.contact-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.contact-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-title h2 {
  font-size: 36px;
  font-weight: 700;
}

.contact-title span {
  color: #ff6a00;
}

.contact-title p {
  color: #6c757d;
  margin-top: 10px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* LEFT */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-card i {
  font-size: 22px;
  color: #ff6a00;
}

.info-card h4 {
  margin: 0 0 5px;
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

/* RIGHT */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

.contact-form textarea {
  margin-bottom: 20px;
}

.contact-form button {
  width: 100%;
  background: #ff6a00;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button i {
  margin-right: 6px;
}

.privacy-note {
  margin-top: 15px;
  font-size: 14px;
  color: #6c757d;
  text-align: center;
}


.emergency-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  background: #f8ebe4;
  border: 1px solid #f3b08b;
  border-radius: 14px;
  max-width: 720px;
}

.emergency-icon {
  width: 48px;
  height: 48px;
  background: #ff6a00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.emergency-content h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.emergency-content p {
  margin: 0 0 6px;
  font-size: 15px;
  color: #6b7280;
}

.emergency-content a {
  font-size: 18px;
  font-weight: 700;
  color: #ff6a00;
  text-decoration: none;
}


/* ============================
   CONTACT SECTION – MOBILE FIX
   ============================ */
@media (max-width: 768px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-title h2 {
    font-size: 28px;
  }

}



.pgs-footer {
  background: #1e3552;
  color: #cbd5e1;
  font-size: 15px;
}

.footer-col h5 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ff6a00;
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo-icon {
  background: #ff6a00;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
}

.brand h4 {
  color: #fff;
  margin: 0;
}

.brand small {
  color: #94a3b8;
}

.brand p {
  line-height: 1.6;
  margin-top: 10px;
}

/* Contact list */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list i {
  color: #ff6a00;
  margin-top: 4px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: #cbd5e1;
}

.legal-links a {
  color: #cbd5e1;
  margin-left: 20px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #ff6a00;
}



/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* MOBILE NAV */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .navmenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b1c2d;
    display: none;
    padding: 20px 0;
  }

  .navmenu.active {
    display: block;
  }

  .navmenu ul {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .header-actions {
    display: none;
  }
}

.footer-top {
  padding: 70px 0;
}


.navbar-toggler:focus {
      box-shadow: none;
    }

    .nav-link {
      color: #ffffff;
      font-weight: 500;
    }

    .nav-link:hover {
      color: #ff6a00;
    }

    /* MOBILE MENU LOOK */
    @media (max-width: 1199px) {
      #mainNavbar {
        background: #0b1c2d;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
      }
    }



 @media (max-width: 576px) {
    .bottom-inner {
      flex-direction: column;
      text-align: center;
      gap: 12px;
    }

    .legal-links a {
      margin: 0 10px;
    }
  }



   .about section{
      padding: 0 !important;
      margin: 0  !important;

    }

  @media (max-width: 768px) {

    .hero-section {
     
      padding: 20px !important;
     
    }
    .about section{
      padding: 0 !important;

    }

              .hero-left {
                text-align: center;
                margin-top: 0;

                /* reduce top spacing */
              }

              .hero-badge {
                justify-content: center;
                margin-bottom: 12px;
              }

              .hero-title {
                font-size: 28px;
                line-height: 1.3;
              }

              .hero-desc {
                font-size: 15px;
                margin: 14px auto 20px;
                max-width: 90%;
              }

              .hero-buttons {
                justify-content: center;
                gap: 12px;
                flex-wrap: wrap;
              }

              .hero-features {
                justify-content: center;
                padding: 0;
              }

              .hero-features li {
                justify-content: center;
              }
            }


            .owner-img {
        width: 90%;
        /* Adjust width as needed */
        height: auto;
        /* Same height for square */
        object-fit: cover;
        /* Ensures image fills container and crops overflow */
        border-radius: 50%;
        /* Makes it circular */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        /* Optional subtle shadow */
      }



      .work-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.work-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-primary {
  padding: 10px 30px;
  font-size: 1rem;
}
