/* Service Pages Styles */
.service-hero-section {
  height: 60vh;
  position: relative;
  background-color: #0c2340;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-content {
  text-align: center;
  color: white;
  z-index: 5;
  padding: 0 20px;
  position: relative;
}

.service-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.service-line {
  width: 80px;
  height: 3px;
  background-color: #ffc72c;
  margin: 0 auto 20px;
}

.service-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3px;
}

.service-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.service-overview-section {
  background-color: white;
  padding: 80px 0;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-overview-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #0c2340;
}

.service-overview-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.service-highlights {
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.highlight-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #0c2340;
  font-size: 1.5rem;
}

.highlight-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #0c2340;
}

.highlight-text p {
  margin-bottom: 0;
  color: #666;
}

.service-overview-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-features-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffc72c;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0c2340;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.how-it-works-section {
  background-color: white;
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step {
  display: flex;
  align-items: flex-start;
}

.step-number {
  flex: 0 0 60px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffc72c;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #0c2340;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

.cta-section {
  background-color: #0c2340;
  padding: 80px 0;
  color: white;
}

.cta-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  background-color: #ffc72c;
  color: #0c2340;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #e6b325;
  transform: translateY(-3px);
}

/* Guard Training Section */
.guard-training-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.training-content {
  margin-top: 40px;
}

.training-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.training-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.training-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.training-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffc72c;
}

.training-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0c2340;
}

.training-item p {
  color: #666;
  line-height: 1.6;
}

/* Client Types Section */
.client-types-section {
  background-color: white;
  padding: 80px 0;
}

.client-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.client-type {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-type:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffc72c;
}

.client-type h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0c2340;
}

.client-type p {
  color: #666;
  line-height: 1.6;
}

/* Technology Solutions Section */
.tech-solutions-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.tech-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tech-solution-card {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-solution-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffc72c;
}

.tech-solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #0c2340;
}

.tech-solution-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tech-solution-content ul {
  list-style-type: none;
  padding-left: 0;
}

.tech-solution-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #666;
}

.tech-solution-content ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ffc72c;
}

/* Implementation Process Section */
.implementation-section {
  background-color: white;
  padding: 80px 0;
}

.implementation-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Technology Benefits Section */
.tech-benefits-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffc72c;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0c2340;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Media Queries for Service Pages */
@media (max-width: 1200px) {
  .service-title {
    font-size: 3.5rem;
  }

  .tech-solutions-grid,
  .client-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-image {
    order: -1;
    margin-bottom: 30px;
  }

  .features-grid,
  .process-steps,
  .implementation-process,
  .benefits-grid,
  .training-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 3rem;
  }

  .service-subtitle {
    font-size: 1.2rem;
  }

  .features-grid,
  .process-steps,
  .implementation-process,
  .benefits-grid,
  .training-grid,
  .tech-solutions-grid,
  .client-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .service-title {
    font-size: 2.5rem;
  }

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

  .service-overview-text h2 {
    font-size: 2rem;
  }

  .cta-container h2 {
    font-size: 2rem;
  }

  .cta-container p {
    font-size: 1rem;
  }
}
