 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lexend', sans-serif;
      color: #162033;
      background: #ffffff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    .gm-hero {
      position: relative;
      min-height: 680px;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #ffffff;
      padding: 120px 7%;
      background: #07111f;
    }

    .gm-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      transform: scale(1.08);
      animation: heroZoom 12s ease infinite alternate;
    }

    @keyframes heroZoom {
      from {
        transform: scale(1.04);
      }
      to {
        transform: scale(1.12);
      }
    }

    .gm-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg, rgba(3, 11, 24, 0.95), rgba(5, 18, 37, 0.72), rgba(5, 18, 37, 0.22)),
        radial-gradient(circle at 20% 30%, rgba(46, 94, 162, 0.45), transparent 38%);
    }

    .gm-hero-content {
      position: relative;
      z-index: 3;
      max-width: 790px;
    }

    .gm-small-title {
      display: inline-flex;
      align-items: center;
      gap: 10px;
        font-family: 'Ralwey', sans-serif;
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .gm-small-title i {
      color: #8fb8ff;
      font-size: 18px;
    }

    .gm-hero h1 {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(42px, 6vw, 82px);
      line-height: 1;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }

    .gm-hero p {
      max-width: 650px;
      font-size: 18px;
      line-height: 1.8;
      color: rgba(255,255,255,0.86);
      margin-bottom: 34px;
    }

    .gm-hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .gm-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 26px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 800;
      transition: 0.35s ease;
    }

    .gm-btn-primary {
      color: #ffffff;
      background: #2E5EA2;
      box-shadow: 0 18px 40px rgba(46, 94, 162, 0.35);
    }

    .gm-btn-primary:hover {
      transform: translateY(-4px);
      background: #20477d;
      color: #ffffff;
    }

    .gm-btn-light {
      color: #ffffff;
      border: 1px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
    }

    .gm-btn-light:hover {
      transform: translateY(-4px);
      background: #ffffff;
      color: #07111f;
    }

    .gm-section {
      position: relative;
      padding: 100px 7%;
    }

    .gm-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .gm-intro {
      background:
        radial-gradient(circle at 85% 10%, rgba(46, 94, 162, 0.12), transparent 30%),
        #ffffff;
    }

    .gm-intro-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 60px;
      align-items: center;
    }

    .gm-section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #2E5EA2;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 14px;
      font-size: 14px;
    }

    .gm-section-tag i {
      font-size: 18px;
    }

    .gm-heading {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(34px, 3vw, 56px);
      line-height: 1.1;
      color: #07111f;
      margin-bottom: 22px;
      font-weight: 800;
    }

    .gm-text {
      color: #536070;
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .gm-stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 34px;
    }

    .gm-stat-card {
      padding: 24px;
      border: 1px solid #e8edf5;
      border-radius: 22px;
      background: #ffffff;
      box-shadow: 0 14px 40px rgba(11, 28, 51, 0.06);
    }

    .gm-stat-card h3 {
      font-size: 34px;
      color: #2E5EA2;
      margin-bottom: 6px;
    }

    .gm-stat-card p {
      color: #596879;
      font-size: 14px;
      line-height: 1.5;
    }

    .gm-intro-image {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      min-height: 520px;
      box-shadow: 0 30px 80px rgba(7, 17, 31, 0.22);
    }

    .gm-intro-image img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      display: block;
      transition: 0.55s ease;
    }

    .gm-intro-image:hover img {
      transform: scale(1.06);
    }

    .gm-floating-card {
      position: absolute;
      left: 24px;
      bottom: 24px;
      right: 24px;
      padding: 24px;
      border-radius: 22px;
      color: #ffffff;
      background: rgba(7, 17, 31, 0.72);
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(16px);
    }

    .gm-floating-card h4 {
      font-size: 22px;
      margin-bottom: 8px;
      font-family: 'Raleway', sans-serif;
    }

    .gm-floating-card p {
      color: rgba(255,255,255,0.78);
      line-height: 1.6;
    }

    .gm-services {
      background: #07111f;
      color: #ffffff;
      overflow: hidden;
    }

    .gm-services::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(46, 94, 162, 0.34);
      filter: blur(90px);
      top: 5%;
      right: -150px;
    }

    .gm-services .gm-heading {
      color: #ffffff;
    }

    .gm-services .gm-text {
      color: rgba(255,255,255,0.72);
      max-width: 760px;
    }

    .gm-services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 45px;
      position: relative;
      z-index: 2;
    }

    .gm-service-card {
      min-height: 210px;
      padding: 26px;
      border-radius: 24px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(14px);
      transition: 0.35s ease;
    }

    .gm-service-card:hover {
      transform: translateY(-10px);
      background: rgba(46, 94, 162, 0.28);
      border-color: rgba(143, 184, 255, 0.35);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    }

    .gm-service-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.1);
      color: #8fb8ff;
      font-size: 28px;
      margin-bottom: 22px;
    }

    .gm-service-card h4 {
      font-size: 18px;
      line-height: 1.4;
      font-family: 'Raleway', sans-serif;
      color: #ffffff;
    }

    .gm-training {
      background:
        linear-gradient(135deg, #f7f9fd, #ffffff);
    }

    .gm-training-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 60px;
      align-items: center;
    }

 .gm-training-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
    .gm-training-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px;
      border-radius: 18px;
      background: #ffffff;
      border: 1px solid #e8edf5;
      box-shadow: 0 14px 40px rgba(11, 28, 51, 0.05);
      color: #344155;
      line-height: 1.6;
      font-weight: 600;
    }

    .gm-training-list i {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #2E5EA2;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .gm-training-image {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      min-height: 520px;
      box-shadow: 0 30px 80px rgba(7, 17, 31, 0.18);
    }

    .gm-training-image img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      display: block;
    }

    .gm-training-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.68));
    }

    .gm-certifications {
      padding: 60px 7%;
      background: #0b1728;
      color: #ffffff;
      overflow: hidden;
    }

    .gm-cert-wrapper {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.32fr 0.68fr;
      gap: 35px;
      align-items: center;
    }

    .gm-cert-title h2 {
      font-family: 'Raleway', sans-serif;
      font-size: 34px;
      margin-bottom: 8px;
    }

    .gm-cert-title p {
      color: rgba(255,255,255,0.68);
      line-height: 1.6;
    }

    .gm-cert-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .gm-cert-item {
      min-height: 120px;
      border-radius: 20px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      text-align: center;
      font-size: 20px;
      font-weight: 800;
      color: #ffffff;
      transition: 0.35s ease;
    }

    .gm-cert-item:hover {
      transform: translateY(-6px);
      background: rgba(46, 94, 162, 0.35);
    }

    .gm-contact-band {
      background:
        radial-gradient(circle at 15% 20%, rgba(46, 94, 162, 0.38), transparent 35%),
        linear-gradient(135deg, #07111f, #0b1f3a);
      color: #ffffff;
    }

    .gm-contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 50px;
      align-items: stretch;
    }

    .gm-contact-card {
      padding: 40px;
      border-radius: 28px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(14px);
    }

    .gm-contact-card h2 {
      font-family: 'Raleway', sans-serif;
      font-size: 42px;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .gm-contact-card p {
      color: rgba(255,255,255,0.74);
      line-height: 1.8;
      margin-bottom: 26px;
    }

    .gm-contact-links {
      display: grid;
      gap: 14px;
    }

    .gm-contact-links a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      padding: 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      transition: 0.3s ease;
    }

    .gm-contact-links a:hover {
      background: rgba(46, 94, 162, 0.32);
      transform: translateX(6px);
    }

    .gm-contact-links i {
      color: #8fb8ff;
      font-size: 22px;
    }

    .gm-form-box {
      padding: 40px;
      border-radius: 28px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(16px);
    }

    .gm-form-box h3 {
      font-family: 'Raleway', sans-serif;
      font-size: 30px;
      margin-bottom: 22px;
    }

    .gm-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .gm-form-box input,
    .gm-form-box textarea,
    .gm-form-box select {
      width: 100%;
      padding: 16px 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.08);
      color: #ffffff;
      outline: none;
      font-family: 'Outfit', sans-serif;
      transition: 0.3s ease;
    }

    .gm-form-box input::placeholder,
    .gm-form-box textarea::placeholder {
      color: rgba(255,255,255,0.6);
    }

    .gm-form-box input:focus,
    .gm-form-box textarea:focus,
    .gm-form-box select:focus {
      border-color: #8fb8ff;
      box-shadow: 0 0 0 4px rgba(143, 184, 255, 0.12);
    }

    .gm-form-box textarea {
      min-height: 150px;
      resize: vertical;
      grid-column: 1 / -1;
    }

    .gm-form-submit {
      margin-top: 18px;
      width: 100%;
      border: none;
      cursor: pointer;
      color: #ffffff;
      background: #2E5EA2;
      padding: 17px 24px;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 800;
      font-family: 'Outfit', sans-serif;
      transition: 0.35s ease;
    }

    .gm-form-submit:hover {
      background: #20477d;
      transform: translateY(-3px);
    }

    @media (max-width: 1200px) {
      .gm-services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 992px) {
      .gm-hero {
        min-height: 560px;
        padding: 100px 5%;
      }

      .gm-section {
        padding: 80px 5%;
      }

      .gm-intro-grid,
      .gm-training-grid,
      .gm-contact-grid,
      .gm-cert-wrapper {
        grid-template-columns: 1fr;
      }

      .gm-services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gm-stat-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .gm-hero {
        min-height: 520px;
        padding: 90px 20px;
        text-align: left;
      }

      .gm-hero h1 {
        font-size: 38px;
      }

      .gm-hero p {
        font-size: 16px;
      }

      .gm-hero-buttons {
        width: 100%;
      }

      .gm-btn {
        width: 100%;
      }

      .gm-section {
        padding: 65px 20px;
      }

      .gm-services-grid,
      .gm-cert-strip,
      .gm-form-grid {
        grid-template-columns: 1fr;
      }

      .gm-intro-image,
      .gm-intro-image img,
      .gm-training-image,
      .gm-training-image img {
        min-height: 340px;
      }

      .gm-contact-card,
      .gm-form-box {
        padding: 26px;
      }

      .gm-contact-card h2 {
        font-size: 32px;
      }
    }

    @media (max-width: 576px) {
  .gm-hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .gm-btn {
    width: 100%;
    padding: 13px 10px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .gm-intro-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .gm-intro-grid > div:first-child {
    display: contents;
  }

  .gm-intro-grid .gm-section-tag {
    order: 1;
  }

  .gm-intro-grid .gm-heading {
    order: 2;
    margin-bottom: 0;
  }

  .gm-intro-image {
    order: 3;
    width: 100%;
    min-height: 300px;
    border-radius: 22px;
  }

  .gm-intro-image img {
    min-height: 300px;
  }

  .gm-intro-grid .gm-text {
    order: 4;
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .gm-training-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gm-training-list li {
    padding: 16px 10px;
    border-radius: 14px;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
    align-items: flex-start;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .gm-training-list i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .gm-training-list {
    grid-template-columns: 1fr;
  }
}
.gm-brochure-section {
  padding: 20px 0 90px;
  background: #ffffff;
}

.download-box {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 42px 48px;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(0, 17, 47, 0.96), rgba(46, 94, 162, 0.92)),
    url('assets/images/iumg/guarding service section image_.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  box-shadow: 0 30px 70px rgba(0, 17, 47, 0.22);
}

.download-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.download-box::after {
  content: "\ea0f";
  font-family: remixicon;
  position: absolute;
  right: 45px;
  bottom: 20px;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.08);
}

.download-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.download-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.download-label i {
  font-size: 18px;
}

.download-box h4 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 14px;
}

.download-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
}

.download-btn {
  position: relative;
  z-index: 2;
  min-width: 230px;
  height: 60px;
  padding: 0 26px;
  border-radius: 60px;
  background: #ffffff;
  color: #2E5EA2;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: 0.35s ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  background: #eef5ff;
}

.download-btn i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2E5EA2;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 768px) {
  .gm-brochure-section {
    padding: 10px 0 60px;
  }

  .download-box {
    padding: 32px 24px;
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .download-box::before {
    right: -80px;
    top: -60px;
    transform: none;
  }

  .download-box::after {
    font-size: 110px;
    right: 20px;
    bottom: 10px;
  }

  .download-btn {
    width: 100%;
    min-width: auto;
  }
}