/* Network Security Page Styles */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
  }
  
  .service-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  
  .service-hero-content {
    flex: 1;
    padding-right: 30px;
  }
  
  .service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
  }
  
  .service-hero-content .underline {
    height: 4px;
    width: 70px;
    background-color: #ff9900;
    margin: 0 0 20px;
    position: relative;
  }
  
  .service-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
  }
  
  .service-hero-image {
    flex: 1;
    text-align: right;
    position: relative;
    max-width: 50%;
  }
  
  .service-hero-image img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .service-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s infinite ease-in-out;
  }
  
  .service-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .service-icon:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
  }
  
  .service-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
  }
  
  .service-icon:nth-child(4) {
    top: 70%;
    right: 20%;
    animation-delay: 1.5s;
  }
  
  .service-icon:nth-child(5) {
    top: 10%;
    right: 30%;
    animation-delay: 2s;
  }
  
  .service-icon i {
    font-size: 20px;
    color: #0066cc;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  .wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
  }
  
  .wave-container svg {
    display: block;
  }
  
  /* Intro Section */
  .intro-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .intro-content {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    text-align: center;
  }
  
  .emoji {
    font-size: 1.8rem;
    margin-left: 10px;
    display: inline-block;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .intro-content > p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
  }
  
  /* Key Objectives */
  .key-objectives {
    margin-top: 50px;
  }
  
  .key-objectives h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
  }
  
  .objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .objective-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
  }
  
  .objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .objective-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .objective-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .objective-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
  }
  
  .objective-card p {
    color: #6c757d;
    margin-bottom: 0;
  }
  
  /* Importance Section */
  .importance-section {
    margin-top: 50px;
  }
  
  .importance-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
  }
  
  .importance-section > p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .importance-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
  }
  
  .importance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .importance-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .importance-icon i {
    font-size: 20px;
    color: #0066cc;
  }
  
  .importance-card p {
    margin-bottom: 0;
    color: #6c757d;
  }
  
  /* Threats Section */
  .threats-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .threats-container {
    max-width: 1100px;
    margin: 50px auto 0;
  }
  
  .threats-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .table-header {
    display: flex;
    background-color: #0066cc;
    color: white;
    padding: 20px;
  }
  
  .header-cell {
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .threat-type {
    flex: 1;
  }
  
  .description {
    flex: 1.5;
  }
  
  .impact {
    flex: 1.5;
  }
  
  .table-row {
    display: flex;
    background-color: white;
    border-bottom: 1px solid #eee;
    padding: 20px;
    transition: all 0.3s ease;
  }
  
  .table-row:last-child {
    border-bottom: none;
  }
  
  .table-row:hover {
    background-color: #f8f9fa;
  }
  
  .table-row .threat-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .threat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .threat-icon i {
    font-size: 20px;
    color: #0066cc;
  }
  
  .table-row h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
  }
  
  .threat-subtitle {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
  }
  
  .table-row p {
    margin-bottom: 0;
    color: #6c757d;
  }
  
  /* Measures Section */
  .measures-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .measures-tabs {
    margin-top: 50px;
  }
  
  .tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .tab-btn {
    padding: 15px 25px;
    background-color: white;
    border: none;
    border-radius: 30px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .tab-btn i {
    font-size: 1.1rem;
  }
  
  .tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  
  .tab-btn.active {
    background-color: #0066cc;
    color: white;
  }
  
  .tabs-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .tab-pane {
    display: none;
    padding: 40px;
  }
  
  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .tab-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .tab-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .tab-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .tab-header h3 {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #333;
  }
  
  .tab-body p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  /* Security Measures Grid */
  .security-measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .measure-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .measure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .measure-card .card-header {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .measure-card .card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .measure-card .card-icon i {
    font-size: 25px;
    color: white;
  }
  
  .measure-card .card-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .measure-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .measure-card .card-body p {
    margin-bottom: 20px;
    color: #6c757d;
  }
  
  .measure-card .card-body ul {
    padding-left: 0;
    margin-top: auto;
  }
  
  .measure-card .card-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .measure-card .card-body ul li i {
    color: #0066cc;
    margin-top: 5px;
  }
  
  .card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 204, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .measure-card.hover .card-hover {
    opacity: 1;
    pointer-events: auto;
  }
  
  .hover-content {
    color: white;
    text-align: center;
    padding: 30px;
  }
  
  .hover-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .hover-content p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Protocols Section */
  .protocols-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .protocols-container {
    max-width: 1100px;
    margin: 50px auto 0;
  }
  
  .protocols-category {
    margin-bottom: 50px;
  }
  
  .protocols-category h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
  }
  
  .protocols-category h3 i {
    color: #0066cc;
  }
  
  .protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .protocol-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .protocol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .protocol-header {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 15px 20px;
  }
  
  .protocol-header h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .protocol-body {
    padding: 20px;
  }
  
  .protocol-body p {
    margin-bottom: 0;
    color: #6c757d;
  }
  
  /* Best Practices Section */
  .best-practices-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .practices-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .practice-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #eee;
  }
  
  .practice-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #ff9900);
    z-index: -1;
  }
  
  .practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .practice-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .practice-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .practice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .practice-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* Trends Section */
  .trends-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .trends-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .trend-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #eee;
  }
  
  .trend-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #ff9900);
    z-index: -1;
  }
  
  .trend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .trend-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .trend-icon i {
    font-size: 35px;
    color: #0066cc;
  }
  
  .trend-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .trend-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* Roadmap Section */
  .roadmap-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .roadmap-container {
    max-width: 1000px;
    margin: 50px auto 0;
  }
  
  .roadmap-timeline {
    position: relative;
    padding: 30px 0;
  }
  
  .timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #0066cc, #ff9900);
    transform: translateX(-50%);
  }
  
  .roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
  }
  
  .roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .roadmap-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin: 0 30px;
    flex-shrink: 0;
  }
  
  .roadmap-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .roadmap-number {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ff9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    top: -5px;
    right: -5px;
  }
  
  .roadmap-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: calc(50% - 80px);
    transition: all 0.3s ease;
  }
  
  .roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .roadmap-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .roadmap-content p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .roadmap-content ul {
    padding-left: 20px;
    margin-bottom: 0;
  }
  
  .roadmap-content ul li {
    color: #6c757d;
    margin-bottom: 5px;
  }
  
  /* CTA Section Modifications */
  .cta {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    padding: 80px 0;
  }
  
  .cta h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .cta .btn-primary {
    background-color: white;
    color: #0066cc;
    font-weight: 600;
  }
  
  .cta .btn-primary:hover {
    background-color: #f8f9fa;
    color: #004080;
  }
  
  .cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
  }
  
  .cta .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .security-measures-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  }
  
  @media (max-width: 992px) {
    .service-hero-content h1 {
      font-size: 2.5rem;
    }
  
    .service-hero .container {
      flex-direction: column;
    }
  
    .service-hero-content {
      padding-right: 0;
      margin-bottom: 50px;
      text-align: center;
    }
  
    .service-hero-content .underline {
      margin: 0 auto 20px;
    }
  
    .service-hero-content p {
      margin: 0 auto 30px;
    }
  
    .service-hero-image {
      max-width: 100%;
    }
  
    .table-row {
      flex-direction: column;
    }
  
    .table-row .threat-type,
    .table-row .description,
    .table-row .impact {
      width: 100%;
      margin-bottom: 15px;
    }
  
    .timeline-line {
      left: 40px;
    }
  
    .roadmap-item {
      flex-direction: row !important;
    }
  
    .roadmap-content {
      max-width: calc(100% - 150px);
    }
  }
  
  @media (max-width: 768px) {
    .objectives-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  
    .importance-grid {
      grid-template-columns: 1fr;
    }
  
    .tabs-navigation {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
    }
  
    .tab-btn {
      white-space: nowrap;
      padding: 12px 20px;
    }
  
    .tab-header {
      flex-direction: column;
      text-align: center;
    }
  
    .tab-icon {
      margin: 0 auto 15px;
    }
  
    .security-measures-grid {
      grid-template-columns: 1fr;
    }
  
    .protocols-grid {
      grid-template-columns: 1fr;
    }
  
    .practices-container {
      grid-template-columns: 1fr;
    }
  
    .trends-container {
      grid-template-columns: 1fr;
    }
  
    .cta .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .cta .btn {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 576px) {
    .service-hero-content h1 {
      font-size: 2rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .roadmap-icon {
      width: 60px;
      height: 60px;
      margin: 0 15px;
    }
  
    .roadmap-icon i {
      font-size: 24px;
    }
  
    .roadmap-content {
      padding: 20px;
      max-width: calc(100% - 100px);
    }
  
    .roadmap-content h3 {
      font-size: 1.3rem;
    }
  
    .tab-pane {
      padding: 20px;
    }
  
    .measure-card .card-header h3 {
      font-size: 1.1rem;
    }
  }
