:root {
  --primary-h1: 46px;
  --primary-h2: 38px;
  --primary-h3: 24px;
  --primary-h4: 20px;

  --primary-p: 16px;

  --primary-heading-color: #002d49;
  --primary-heading-color2: #0099dd;

  --underline-color: #d0efff;
  --text-color: #777;
  --text-color2: #9ca3af;

  --font-weight: 600;
}

* {
  font-family: "Montserrat", sans-serif;
}

.py-5 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-8 {
  padding: 20px 0;
}

.pt-5 {
  padding-top: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.mt-5 {
  margin-top: 20px;
}

.span-title {
  font-size: 16px;
  color: #b3b3b3;
}

.pt-20 {
  padding-top: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.section-head {
  margin-bottom: 20px;
  text-align: center;
}

.section-head h2 {
  font-size: var(--primary-h2);
  margin: 10px 0;
  font-weight: var(--font-weight);
  color: var(--primary-heading-color);
}

.section-head h2 span {
  color: var(--primary-heading-color2);
  display: inline-block;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
}

.section-head p {
  color: var(--text-color);
  font-size: var(--primary-p);
}

/* ================== Hero Section ================= */
/* Hero Section */
.sabre-hero {
  /* padding: 80px 0; */
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  overflow: hidden;
}

.sabre-hero-wrap {
  display: flex;
  align-items: center;
}

/* Content */

.hero-tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-heading-color);
  padding: 15px 10px;
  border-radius: 14px;
  background: #d0efffa2;
  margin-bottom: 15px;
}

.hero-heading {
  font-size: var(--primary-h2);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 20px;
}

.hero-heading span {
  color: var(--primary-heading-color2);
}

.hero-lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-color2);
}

.hero-desc {
  font-size: var(--primary-p);
  line-height: 1.8;
  color: #d9e9f2;
  margin-bottom: 30px;
  text-align: justify;
}

/* Button */
.vision-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: var(--font-weight);
  color: var(--primary-heading-color);

  padding: 10px 15px;
  background: #0099dd;

  border-radius: 10px;
  border: 1px solid var(--primary-heading-color);

  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.vision-link:hover {
  background: var(--primary-heading-color2);
  border-color: var(--primary-heading-color2);
  color: #fff;
  text-decoration: none;

  transform: scale(1.01);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Optional: keyboard accessibility */
.vision-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 153, 221, 0.25);
}

/* Image Section */
.sabre-hero-image {
  text-align: center;
}

.image-glass {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  display: inline-block;
}

.image-glass img {
  max-width: 100%;
  border-radius: 15px;
}

/* ==================  How it works ==========*/
/* Section Base */
.how-it-works-modern {
  /* padding: 80px 0; */
  background: #0f1f2d;
  color: #fff;
  position: relative;
}

/* Timeline line */
.how-timeline {
  position: relative;
}

.how-timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

/* Items */
.timeline-item {
  margin-bottom: 50px;
}

.timeline-item.left {
  text-align: right;
  padding-right: 60px;
}

.timeline-item.right {
  text-align: left;
  padding-left: 60px;
}

/* Card */
.timeline-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 198, 255, 0.25);
}

/* Step Badge */
.step-badge {
  position: absolute;
  top: -18px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);
}

.timeline-item.left .step-badge {
  right: -24px;
}

.timeline-item.right .step-badge {
  left: -24px;
}

/* Text */
.timeline-card h4 {
  font-size: var(--primary-h4);
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.timeline-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #d7e6ef;
}

/* ====================== SABRE FIDS Product Range – Modern ================== */
/* Layout */
.product-range-wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

/* Product Cards */
.product-card1s {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card1 {
  background: #ffffff;
  padding: 11px 11px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.product-card1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00c6ff, #0072ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.25);
}

.product-card1:hover:before {
  opacity: 1;
}

.product-name {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary-heading-color2);
  text-transform: uppercase;
}

.product-card1 h4 {
  font-size: 20px;
  margin: 8px 0 10px;
  font-weight: 600;
}

.product-card1 p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #5b6770;
}

/* Image */
.product-visual {
  background: var(--primary-heading-color);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.1); */
}

.product-visual img {
  max-width: 100%;
  border-radius: 15px;
}

.bg-img10 {
  position: relative;
  overflow: hidden;
}

.bg-img10::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../new-img/background-img7.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  z-index: -1;
  opacity: 0.8;
  filter: blur(2px);
}

/* ================ Trail Section 2========== */
/* Section */
.how-it-works-modern {
  background: linear-gradient(180deg, #0f2027, #152f3c);
  color: #fff;
}

/* Timeline Layout */
.workflow-timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.workflow-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

/* Card */
.workflow-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px 25px;
  width: 32%;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.workflow-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.25);
}

/* Step Circle */
.workflow-step {
  width: 64px;
  height: 64px;
  line-height: 64px;
  background: linear-gradient(135deg, #00e5ff, #007bff);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  color: #000;
}

/* Text */
.workflow-card h4 {
  margin-bottom: 12px;
  color: #fff;
}

.workflow-card p {
  color: #cfd8dc;
  font-size: var(--primary-p);
  line-height: 1.6;
}

/* ====================== Protecting Critical Infrastructure ========= */

/* Header */
.critical-infra-modern h2 span {
  color: #00c6ff;
}

/* Layout */
.infra-modern-wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

/* Content */
.infra-modern-content {
  padding-right: 40px;
}

.infra-intro {
  font-size: var(--primary-p);
  line-height: 1.9;
  margin-bottom: 35px;
  color: var(--text-color);
}

/* List */
.infra-modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-modern-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 22px;
  font-size: var(--primary-p);
  line-height: 1.7;
  color: var(--text-color);
}

.infra-modern-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 198, 255, 0.8);
}

.infra-modern-list span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-heading-color);
  margin-bottom: 4px;
}

/* Image */
.infra-modern-image {
  background: rgba(255, 255, 255, 0.06);
  padding: 25px;
  border-radius: 22px;
}

.infra-modern-image img {
  width: 100%;
  border-radius: 16px;
}

.bg-img5 {
  position: relative;
  overflow: hidden;
}

.bg-img5::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../new-img/background-img5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  z-index: -1;
  opacity: 0.8;
  filter: blur(2px);
}

/* ============= Sabre Fids Components ========= */
/* Section Base */
.sabre-components-modern {
  /* padding: 90px 0; */
  background: #0f1f2d;
  color: #ffffff;
}

/* Header */
.sabre-components-modern h2 span {
  color: #00c6ff;
}

/* Layout */
.component-modern-wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

/* Image */
.component-image {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  padding: 15px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.component-image img {
  width: 100%;
  border-radius: 16px;
}

.image-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);
}

/* Content */
.component-details {
  padding-left: 40px;
}

.component-text {
  font-size: var(--primary-p);
  line-height: 1.9;
  margin-bottom: 22px;
  color: #d7e6ef;
}

/* Specs */
.component-specs-modern {
  margin-top: 30px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 198, 255, 0.25);
}

.spec-card h4 {
  font-size: var(--primary-p);
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.spec-card p {
  font-size: var(--primary-p);
  color: #cfe0ea;
}

/* Buttons */
.vision-link2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: var(--font-weight);
  color: var(--primary-heading-color2);

  padding: 10px 18px;
  background: transparent;

  border-radius: 10px;
  border: 1.5px solid var(--primary-heading-color2);

  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.vision-link2:hover {
  background: var(--primary-heading-color);
  color: #fff;
  border-color: var(--primary-heading-color);

  transform: scale(1.01);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.vision-link2:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 153, 221, 0.25);
}

/* ================ FO Sensor Cable ================= */
/* Section Base */
.sabre-sensor-modern {
  /* padding: 90px 0; */
  background: linear-gradient(180deg, #f4f7fb, #eef2f6);
}

/* Layout */
.sensor-modern-wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

/* Image */
.sensor-image-modern {
  background: #ffffff;
  padding: 13px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.sensor-image-modern img {
  width: 100%;
  border-radius: 16px;
}

/* Content */
.sensor-content-modern {
  padding-left: 40px;
}

.sensor-text {
  font-size: var(--primary-p);
  line-height: 1.9;
  margin-bottom: 22px;
  color: var(--text-color);
}

/* Callout */
.sensor-callout {
  background: rgba(0, 114, 255, 0.08);
  border-left: 4px solid var(--primary-heading-color2);
  padding: 18px 22px;
  border-radius: 10px;
  font-size: 14.5px;
  color: #2f3c48;
}

/* ======================== FIDS Software – ENTROWATCH ================== */
/* Section Base */
.entrowatch-modern {
  /* padding: 90px 0; */
  background: linear-gradient(135deg, #0f2027, #152f3c);
  color: #ffffff;
}

/* Layout */
.entrowatch-wrap {
  display: flex;
  align-items: center;
}

/* Content */
.entrowatch-content {
  padding-right: 40px;
}

.entrowatch-text {
  font-size: var(--primary-p);
  line-height: 1.9;
  margin-bottom: 22px;
  text-align: justify;
  color: #d7e6ef;
}

/* Features */
.entrowatch-features {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.entrowatch-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: #e2eff7;
}

.entrowatch-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.8);
}

/* Visual */
.entrowatch-visual {
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.entrowatch-visual img {
  width: 100%;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .infra-modern-wrap {
    flex-direction: column;
  }

  .infra-modern-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .component-modern-wrap {
    flex-direction: column;
  }

  .component-details {
    padding-left: 0;
    margin-top: 40px;
  }

  .sensor-modern-wrap {
    flex-direction: column;
  }

  .sensor-content-modern {
    padding-left: 0;
    margin-top: 40px;
  }

  .entrowatch-wrap {
    flex-direction: column;
  }

  .entrowatch-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .product-range-wrap {
    flex-direction: column-reverse;
  }

  .product-visual {
    margin-top: 40px;
    margin-bottom: 40px;
    order: 1;
  }

  .second-wrapper {
    margin-top: 20px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-heading {
    font-size: 28px;
  }
  .sabre-hero-image {
    margin-top: 40px;
  }

  .sabre-hero-wrap {
    display: block;
  }

  .how-timeline:before {
    left: 10px;
  }

  .timeline-item {
    padding-left: 40px !important;
    padding-right: 20px !important;
    text-align: left;
  }

  .step-badge {
    left: -24px !important;
    right: auto !important;
  }

  .timeline-item.left {
    text-align: left;
  }

  .workflow-timeline {
    flex-direction: column;
  }

  .workflow-timeline::before {
    display: none;
  }

  .workflow-card {
    width: 100%;
  }

  .second-wrapper {
    margin-top: 20px;
  }

}