/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@400;600&display=swap");

/* CSS Variables */
:root {
  /* Color Palette */
  --color-primary: #0077b6;
  --color-primary-light: #1a237e;
  --color-secondary: #fefae0;
  --color-tertiary: #e0f7fa;
  --color-hover: #0077b6;
  --color-accent: #a9d6e5;
  --color-accent-lighter: #e6f4fa;
  --color-text: #000;
  --color-text-2: #03045e;
  --color-background: #03045e;
  --color-white: #fff;
  --color-light-bg: #f4f4f4;

  /*Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;

  /* Layout Dimensions */
  --header-height: 4rem;
  --border-radius: 0.5rem;

  /* Typography */
  --font-primary: "Open Sans", sans-serif;
  --font-size-base: 0.938rem;
  --font-size-small: 0.813rem;

  /* Weights */
  --weight-regular: 400;
  --weight-semi-bold: 800;

  /* Z-Index Hierarchy */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /* Transitions */
  --transition-speed: 250ms;
}

/* Responsive Typography */
@media screen and (min-width: 1024px) {
  :root {
    --font-size-base: 1rem;
  }
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
  padding-top: var(--header-height);
}

/* Typography & Links */
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Layout Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-hero {
    background: linear-gradient(155deg, #03045e 0%, #0f172a 50%);
  padding: var(--spacing-xl) 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.service-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

.service-hero__content {
  max-width: 800px;
}

.service-hero__breadcrumb {
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  font-size: 0.875rem;
  opacity: 0.9;
}

.service-hero__breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.service-hero__breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.service-hero__breadcrumb span {
  opacity: 0.8;
}

.service-hero__heading {
  color: var(--color-white);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.service-hero__subheading {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.service-hero__description {
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  opacity: 0.85;
  max-width: 720px;
}

/* Desktop (1200px and up) */
@media screen and (min-width: 75em) {
  .service-hero {
    padding: var(--spacing-lg) 0;
  }

  .service-hero__heading {
    font-size: 3.5rem;
    width: 1200px;
  }
}

/* Tablet (768px to 1199px) */
@media screen and (max-width: 74.9375em) {
  .service-hero {
    padding: var(--spacing-lg) 0;
  }

  .service-hero__heading {
    font-size: 2.75rem;
  }

  .service-hero__subheading {
    font-size: 1.25rem;
  }

  .service-hero__description {
    font-size: 1rem;
  }
}

/* Mobile (767px and below) */
@media screen and (max-width: 47.9375em) {
  .service-hero {
    padding: var(--spacing-md) 1rem;
    min-height: auto;
  }

  .service-hero__container {
    padding: 0 var(--spacing-sm);
  }

  .service-hero__breadcrumb {
    font-size: 0.75rem;
    margin-bottom: var(--spacing-sm);
  }

  .service-hero__heading {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }

  .service-hero__subheading {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
  }

  .service-hero__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Small Mobile (375px and below) */
@media screen and (max-width: 23.4375em) {
  .service-hero__heading {
    font-size: 1.75rem;
  }

  .service-hero__subheading {
    font-size: 1rem;
  }

  .service-hero__description {
    font-size: 0.875rem;
  }
}

.services-header {
  margin-bottom: 3rem;
  max-width: 800px;
}

.services-title {
  text-align: left;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 2.5rem;
}

.services-title span {
  font-size: 2rem;
  color: #0077b6;
  background-image: linear-gradient(45deg, #0077b6 21%, #1a237e 58%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  margin: 1rem 0;
}

.services-description {
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.services-description p {
  font-size: 1rem;
}

.security-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: white;
  border: 1px solid black;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0px 0px black;
}

.icon-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
  margin-right: 11rem;
  border-radius: 0.5rem; /* Adds a subtle rounded corner */
  transition: transform 0.2s ease, color 0.2s ease; /* Smooth hover effects */
  border: 1px solid black;
}

.icon-feature svg {
  width: 2rem;
  height: 2rem;
}

.service-card:hover .icon-feature {
  transform: scale(1.1);
}

.icon-feature.monitoring {
  background-color: #eff6ff;
}
.icon-feature.alerts {
  background-color: #ecfdf5;
}
.icon-feature.integration {
  background-color: #f5f3ff;
}
.icon-feature.installation {
  background-color: #fff7ed;
}

.service-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-text);
}

.service-title {
  font-size: 1rem;
  color: #111827;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
  flex-shrink: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .security-section {
    padding: 4rem 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 640px) {
  .security-section {
    padding: 3rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.25rem;
  }
}

.modern-info-section {
  padding: 7rem 2rem;
  background: linear-gradient(to bottom, #f8f9ff, #ffffff);
  font-family: "Open Sans", sans-serif;
}

.modern-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.modern-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.modern-headline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #03045e;
  font-weight: 600;
  margin: 0;
}

.modern-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #2d2d2d;
  font-weight: 400;
  margin: 0;
}

.modern-highlight {
  color: #03045e;
  font-weight: 600;
}

.modern-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(3, 4, 94, 0.08), 0 5px 15px rgba(3, 4, 94, 0.05);
}

.modern-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.modern-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(3, 4, 94, 0.05), rgba(3, 4, 94, 0));
  pointer-events: none;
}

.modern-image-container:hover .modern-image {
  transform: scale(1.05);
}

.modern-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #03045e;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tablet (992px to 1199px) */
@media screen and (max-width: 1199px) {
  .modern-info-section {
    padding: 5rem 2rem;
  }

  .modern-container {
    gap: 4rem;
  }

  .modern-text {
    font-size: 1.125rem;
  }
}

/* Tablet Portrait and Mobile */
@media screen and (max-width: 991px) {
  .modern-info-section {
    padding: 4rem 1.5rem;
  }

  .modern-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .modern-image-container {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .modern-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .modern-stats {
    justify-content: center;
  }
}

/* Mobile Small */
@media screen and (max-width: 575px) {
  .modern-info-section {
    padding: 3rem 1rem;
  }

  .modern-headline {
    font-size: 0.875rem;
    letter-spacing: 2px;
  }

  .modern-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .modern-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .stat-item {
    align-items: center;
  }
}

/* Base section styles */
.value-proposition-section {
  padding: 3rem 0;
  background-color: var(--color-white);
}

.vp-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Header styles */
.vp-section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  max-width: 100%;
  padding: 0 1rem;
}

.vp-title-group {
  flex: 1;
  max-width: 100%;
}

.vp-section-title {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.vp-section-description {
  color: var(--color-text);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

/* Grid layout */
.row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.column {
  width: 100%;
  text-align: center;
}

/* Card styles */
.vp-card {
  border: 1px solid black;
  width: 100%;
  height: 100%;
  padding: 4em 2em;
  background-color: var(--color-background);
  border-radius: 0 25px 0px 25px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  transition: 0.5s;
}

.vp-header {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin: 1em 0;
}

.vp-description {
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* Icon styles */
.icon-wrapper {
  background-color: var(--color-white);
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: var(--color-text);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

/* Hover effects */
.vp-card:hover {
  color: var(--color-white);
  box-shadow: 5px 5px 0px 0px black;
  transform: translateY(-5px);
  background-color: var(--color-white);
}

.vp-card:hover .icon-wrapper {
  background-color: var(--color-background);
  color: var(--color-white);
}

.vp-card:hover h3 {
  color: var(--color-text);
}

.vp-card:hover p {
  color: var(--color-text);
}

/* Desktop (default above) */
@media screen and (min-width: 1024px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .column {
    width: calc(25% - 2rem);
  }

  .vp-container {
    padding: 0 2rem;
  }
}

/* Tablet (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .column {
    width: calc(50% - 0.75rem);
  }

  .vp-container {
    padding: 0 1.5rem;
  }

  .services-title span {
    font-size: 1.75rem;
  }

  .vp-card {
    padding: 1.25em 0.875em;
  }
}

/* Mobile (below 768px) */
@media screen and (max-width: 767px) {
  .value-proposition-section {
    padding: 4rem 1rem;
  }

  .vp-container {
    padding: 0 1rem;
  }

  .services-title span {
    font-size: 1.5rem;
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .row {
    gap: 1.5rem;
  }

  .vp-card {
    padding: 2em 1.5em;
  }

  .vp-header {
    font-size: 14px;
  }

  .vp-description {
    font-size: 12px;
  }

  .icon-wrapper {
    font-size: 24px;
  }
}

.cta {
  background-color: var(--color-white);
  color: black;
  padding: 4rem 2rem;
  width: 100%;
}

.cta-container {
  width: 90%;
  max-width: 1110px;
  margin: 0 auto;
}

.columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.text {
  flex: 1;
}

.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.sub-heading {
  font-size: 1.125rem;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.button-container {
  flex-shrink: 0;
}

.button-cta {
  background-color: #a9d6e5;
  color: #03045e;
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.button-cta:hover {
  background-color: #0077b6;
  color: #fff;
  transform: translateY(-2px);
}

/* Desktop (1200px and up) */
@media screen and (min-width: 75em) {
  .cta {
    padding: 5rem 2rem;
  }

  .columns {
    gap: 6rem;
  }

  .heading {
    font-size: 1.75rem;
  }
}

/* Tablet (768px to 1199px) */
@media screen and (max-width: 74.9375em) {
  .cta {
    padding: 3.5rem 2rem;
  }

  .columns {
    gap: 3rem;
  }

  .heading {
    font-size: 2rem;
  }

  .sub-heading {
    font-size: 1rem;
  }
}

/* Mobile (767px and below) */
@media screen and (max-width: 47.9375em) {
  .cta {
    padding: 3rem 1.5rem;
  }

  .columns {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .text {
    width: 100%;
  }

  .heading {
    font-size: 1.25rem;
  }

  .sub-heading br {
    display: none;
  }

  .button-container {
    width: 100%;
  }

  .button-cta {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 1.5rem;
  }
}
