/* Cybersecurity Pages Specific Styles */

/* Import sector-page.css to use the standard .container class */
@import url("sector-page.css");

/* Hero Section for Cybersecurity Pages */
.hero-section-cyber {
  background: linear-gradient(135deg, #00549d 0%, #003d73 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section-cyber::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}


.hero-content-cyber {
  position: relative;
  z-index: 1;
}

.hero-title-cyber {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  letter-spacing: 2px;
}

.hero-subtitle-cyber {
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  opacity: 0.95;
}

/* Breadcrumb Styling */

.breadcrumb {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #00549d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #e31837;
}

.breadcrumb .separator {
  color: #999;
}

.breadcrumb .current {
  color: #333;
  font-weight: 600;
}

/* Main Content Section */
.cyber-content-section {
  padding: 80px 0;
  background-color: #fff;
}


.cyber-intro {
  margin-bottom: 60px;
  text-align: center;
}

.cyber-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

/* Section Title */
.cyber-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #00549d;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  position: relative;
  padding-bottom: 20px;
}

.cyber-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e31837;
  border-radius: 2px;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Solution Card */
.solution-card-cyber {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.solution-card-cyber:hover {
  background-color: #00549d;
  border-color: #00549d;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 84, 157, 0.3);
}

.solution-card-cyber:hover .card-title-cyber,
.solution-card-cyber:hover .card-subtitle-cyber,
.solution-card-cyber:hover .card-description-cyber {
  color: white;
}

.solution-card-cyber:hover .card-icon-cyber img {
  filter: brightness(0) invert(1);
}

/* Card Icon */
.card-icon-cyber {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-cyber img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Card Content */
.card-content-cyber {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-title-cyber {
  font-size: 24px;
  font-weight: 700;
  color: #00549d;
  margin-bottom: 8px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  transition: color 0.3s ease;
}

.card-subsection {
  padding-left: 16px;
  border-left: 3px solid #e31837;
}

.card-subtitle-cyber {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  transition: color 0.3s ease;
}

.card-description-cyber {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  transition: color 0.3s ease;
}

/* CTA Section */
.cyber-cta-section {
  background: linear-gradient(135deg, #00549d 0%, #003d73 100%);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cyber-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 24, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cyber-cta-section .cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-button {
  background-color: #e31837;
  color: white;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}

.cta-button:hover {
  background-color: #c51530;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 24, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section-cyber {
    padding: 60px 0;
  }

  .hero-title-cyber {
    font-size: 36px;
    letter-spacing: 1.5px;
  }

  .hero-subtitle-cyber {
    font-size: 18px;
  }

  .cyber-content-section {
    padding: 60px 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solution-card-cyber {
    padding: 30px;
  }

  .cyber-section-title {
    font-size: 28px;
  }

  .cyber-intro p {
    font-size: 16px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-button {
    padding: 14px 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-section-cyber {
    padding: 50px 0;
  }

  .hero-title-cyber {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero-subtitle-cyber {
    font-size: 16px;
  }

  .cyber-content-section {
    padding: 50px 0;
  }

  .solution-card-cyber {
    padding: 25px;
  }

  .card-icon-cyber {
    width: 60px;
    height: 60px;
  }

  .card-title-cyber {
    font-size: 20px;
  }

  .card-subtitle-cyber {
    font-size: 16px;
  }

  .card-description-cyber {
    font-size: 14px;
  }

  .cyber-section-title {
    font-size: 24px;
  }

  .cta-title {
    font-size: 22px;
  }

  .cyber-cta-section {
    padding: 40px 20px;
  }
}
