.header-logo img {
  max-height: 65px !important;
  width: auto !important;
}

.header-logo {
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}

.hero-style6 .title {
  font-size: 44px !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
  font-weight: 500;
}

/* Color Highlight Rule */
.hero-style6 .title span {
  color: #0056b3 !important;
  display: inline-block;
}

/* ===================================
   Services Section - Hover Transform Style
   =================================== */

/* CSS Variables */
:root {
  --primary-blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-hover: #2563eb;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(37, 99, 235, 0.15);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Services Section */
.services-section {
  padding: 40px 20px;
  background-color: var(--bg-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.fr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.fr-service-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fr-service-icon {
  font-size: 40px;
  color: #2a8ace; /* Logo Blue */
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.fr-service-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.fr-service-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: 0.3s ease;
  flex-grow: 1;
}

.fr-read-more {
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

/* Blue Hover Effect */
.fr-service-card:hover {
  background-color: #2a8ace;
  transform: translateY(-10px);
  border-color: #2a8ace;
}

.fr-service-card:hover .fr-service-icon,
.fr-service-card:hover .fr-service-title,
.fr-service-card:hover .fr-service-desc,
.fr-service-card:hover .fr-read-more {
  color: #ffffff;
}

.fr-service-card:hover .fr-read-more i {
  transform: translateX(5px);
}

/* --- Global Section Header Styling --- */
.standard-header {
  text-align: center; /* Forces everything to the middle */
  margin-bottom: 60px; /* Consistent gap before content starts */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.standard-header .sub-title {
  display: block;
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #2a8ace; /* Friesian Blue */
  margin-bottom: 15px;
}

.standard-header .main-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a; /* Dark text for light sections */
  margin-bottom: 20px;
}
.faq-sec3 {
  margin-top: 90px;
}

/* Center alignment and width control */
.standard-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

/* Friesian Blue Highlight with Stylized Underline */
.standard-header .main-title span {
  color: #2a8ace;
  position: relative;
  display: inline-block;
}

.standard-header .main-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: #2a8ace;
  border-radius: 2px;
}

/* Spacing fix for the sub-titles */
.standard-header .sub-title {
  display: block;
  font-weight: 600;
  color: #2a8ace;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}
/* White text override for dark sections like "Choose Us" */
.sec-title.white .main-title,
.faq-sec3 .main-title {
  color: #ffffff;
}
.faq-sec2 {
  padding-top: 30px;
}

/* The Highlight & Underline Style */
.standard-header .main-title span {
  color: #2a8ace;
  position: relative;
  display: inline-block;
}

.standard-header .main-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: #2a8ace;
  border-radius: 2px;
}

.standard-header .section-desc {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* Dark section description override */
.sec-title.white .section-desc {
  color: #aaa;
}

/* ==========================================
   HOVER STATE - Transform to Featured Style
   ========================================== */

.service-card:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--blue-hover));
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Icon on Hover - White background */
.service-card:hover .service-icon {
  background: var(--bg-white);
  border-radius: 12px;
  transform: scale(1.05);
}

.service-card:hover .service-icon i {
  color: var(--primary-blue);
}

/* Title on Hover - White text */
.service-card:hover .service-title {
  color: var(--bg-white);
}

/* Description on Hover - White text with opacity */
.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Read More on Hover - White text */
.service-card:hover .read-more {
  color: var(--bg-white);
}

.service-card:hover .read-more i {
  transform: translateX(4px);
}

/* Responsive Design */

/* Large Desktops */
@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Tablets and Small Desktops */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .service-card {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .service-card {
    padding: 30px 20px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .service-title {
    font-size: 1.125rem;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .services-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

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

  .service-card {
    padding: 30px 25px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .service-icon i {
    font-size: 26px;
  }

  .service-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }

  .service-desc {
    font-size: 0.875rem;
    margin-bottom: 18px;
  }

  .read-more {
    font-size: 0.875rem;
  }
}

/* Animation on scroll (optional) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

/* Stagger animation for smoother appearance */
.service-card:nth-child(1) {
  animation-delay: 0.05s;
}
.service-card:nth-child(2) {
  animation-delay: 0.1s;
}
.service-card:nth-child(3) {
  animation-delay: 0.15s;
}
.service-card:nth-child(4) {
  animation-delay: 0.2s;
}
.service-card:nth-child(5) {
  animation-delay: 0.25s;
}
.service-card:nth-child(6) {
  animation-delay: 0.3s;
}
.service-card:nth-child(7) {
  animation-delay: 0.35s;
}
.service-card:nth-child(8) {
  animation-delay: 0.4s;
}
.service-card:nth-child(9) {
  animation-delay: 0.45s;
}
.service-card:nth-child(10) {
  animation-delay: 0.5s;
}
.service-card:nth-child(11) {
  animation-delay: 0.55s;
}
.service-card:nth-child(12) {
  animation-delay: 0.6s;
}
.service-card:nth-child(13) {
  animation-delay: 0.65s;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    animation: none;
  }

  .service-card:hover {
    transform: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

/* Pull content higher up the page */
.choose-content5.mt-n50 {
  margin-top: -50px !important;
}

/* Force 2 lines and handle text sizing */
.custom-title {
  font-size: 48px !important; /* Adjust if it feels too large */
  line-height: 1.2 !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure no extra padding in the section is pushing it down */
.choose-us-sec5 {
  padding-top: 80px !important;
}
/* Fix for Section Spacing */
.feature-sec1 {
  padding: 10px 0 !important;
  background: #ffffff;
  margin-top: -100px;
}

/* Ensure Title doesn't overlap cards */
.feature-sec1 .sec-title {
  margin-bottom: 60px !important;
}

.feature-sec1 .title {
  font-size: 48px !important;
  line-height: 1.2;
}

/* Professional Card Styling */
.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  height: 100%; /* Keeps all cards the same height */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
  border-color: #0056b3;
}

.feature-icon {
  font-size: 35px;
  color: #0056b3;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Partner Section Base */
.partner-sec {
  border-top: 1px solid #f0f0f0;
}

/* Glassy Card Styling */
.partner-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  position: relative;
  overflow: hidden; /* Clips the shine effect */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.partner-logo {
  max-width: 140px;
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
  z-index: 2;
}

/* Hover Effects */
.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
  border-color: #2a8ace;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Glossy Shine Animation */
.partner-glass-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.partner-card:hover .partner-glass-shine {
  left: 150%;
  transition: all 0.8s ease;
}

/* footer */
.footer-card-section {
  padding: 40px 10px 20px;
  max-width: 100%;
  margin: 0 auto;
}

.footer-card-wrapper {
  background-color: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.footer-card-inner {
  padding: 30px 0 15px; /* Reduced from 60px 0 30px */
}

.footer-card-container {
  padding: 0 60px;
  max-width: 100%;
}

/* Top CTA Section - Reduced spacing */
.footer-card-top {
  margin-bottom: 20px;
}

.footer-cta-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.3;
}

.footer-cta-desc {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 0;
}

.footer-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: transparent;
  color: white;
  border: 2px solid rgba(42, 138, 206, 0.3);
  border-radius: 12px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(42, 138, 206, 0.1);
}

.footer-premium-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    135deg,
    #2a8ace,
    #1a5a8a
  ); /* Blue gradient on hover */
  box-shadow: 0 15px 40px rgba(42, 138, 206, 0.4);
  color: white;
  text-decoration: none;
  border-color: transparent; /* Remove border on hover */
}

.footer-premium-btn i {
  transition: transform 0.3s ease;
}

.footer-premium-btn:hover i {
  transform: translateX(5px);
}

.footer-card-divider {
  border: 0;
  height: 1px;
  background-color: #808080;
  margin: 20px 0 0;
}
/* Widgets Section - Compact spacing */
.footer-card-widgets {
  margin-bottom: 15px;
}

/* UPDATED: Increased logo size */
.footer-card-logo-box {
  margin-bottom: 15px;
}

.footer-card-logo {
  max-height: 70px; /* Increased from 50px */
  margin-bottom: 12px;
}

.footer-card-brand-desc {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-card-widget-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding-bottom: 6px;
}

.footer-card-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, #2a8ace, transparent);
}

.footer-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-card-list li {
  margin-bottom: 6px;
}

.footer-card-list li:last-child {
  margin-bottom: 0;
}

.footer-card-list a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-card-list a:hover {
  color: #2a8ace;
  padding-left: 8px;
}

.footer-card-list a::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-card-list a:hover::before {
  opacity: 1;
  left: -10px;
}

/* Contact Info - Compact */
.footer-card-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-card-contact-box:last-child {
  margin-bottom: 0;
}

.footer-card-icon-box {
  width: 32px;
  height: 32px;
  background: rgba(42, 138, 206, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-card-icon-box i {
  color: #2a8ace;
  font-size: 0.95rem;
}

.footer-card-text-box p,
.footer-card-text-box a {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-card-text-box a:hover {
  color: #2a8ace;
  text-decoration: none;
}

/* Bottom Section - Compact */
.footer-card-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-card-copyright {
  color: #aaa;
  font-size: 0.85rem;
  margin: 0;
}

.footer-card-brand-blue {
  color: #2a8ace;
  font-weight: 600;
}

.footer-card-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-card-legal-links li {
  display: inline-block;
}

.footer-card-legal-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-card-legal-links a:hover {
  color: #2a8ace;
}

/* Responsive Design - Adjusted */
@media (max-width: 1199px) {
  .footer-card-container {
    padding: 0 40px;
  }

  .footer-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .footer-card-section {
    padding: 30px 10px 15px;
  }

  .footer-card-container {
    padding: 0 30px;
  }

  .footer-card-inner {
    padding: 25px 0 12px;
  }

  .footer-cta-title {
    font-size: 1.8rem;
  }

  .footer-card-widget-title {
    margin-top: 15px;
  }

  .footer-card-legal-links {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .footer-card-section {
    padding: 20px 10px 10px;
  }

  .footer-card-container {
    padding: 0 20px;
  }

  .footer-card-inner {
    padding: 20px 0 10px;
  }

  .footer-cta-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .footer-cta-desc {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .footer-premium-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .footer-card-divider {
    margin: 15px 0 0;
  }

  .footer-card-widgets {
    margin-bottom: 10px;
  }

  /* UPDATED: Responsive logo size */
  .footer-card-logo {
    max-height: 60px; /* Slightly smaller on mobile */
  }

  .footer-card-bottom {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer-card-copyright {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.8rem;
  }

  .footer-card-legal-links {
    justify-content: center;
    gap: 15px;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }
}

/* ===================================
   About Us Page - Friesian Technologies
   Namespaced to avoid conflicts (ft-*)
   =================================== */

/* CSS Variables (safe to keep global) */
:root {
  --primary-blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-dark: #2563eb;
  --blue-darker: #1e40af;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(37, 99, 235, 0.15);
}

/* =========================
   Base Layout Helpers
   ========================= */

.ft-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ft-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.ft-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.ft-section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
   About Intro Section
   ========================= */

.ft-about-intro {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.ft-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ft-about-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.ft-about-title span {
  color: #2a8ace;
  position: relative;
}

.ft-about-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #2a8ace;
  border-radius: 2px;
}

.ft-about-lead {
  font-size: 1.25rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 25px;
}

.ft-about-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ft-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* =========================
   Mission & Vision
   ========================= */

.ft-mission-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
}

.ft-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ft-mv-card {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.ft-mv-card:hover {
  transform: translateY(-8px);
}

.ft-mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.ft-mv-icon i {
  font-size: 32px;
  color: var(--bg-white);
}

.ft-mv-card h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.ft-mv-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================
   Why Choose Us
   ========================= */

.ft-why-choose {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.ft-why-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
}

.ft-why-title span {
  color: #2a8ace;
  position: relative;
}

.ft-why-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #2a8ace;
  border-radius: 2px;
}

.ft-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.ft-why-card {
  background: var(--bg-white);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.ft-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.ft-why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ft-why-icon i {
  font-size: 28px;
  color: var(--bg-white);
}

.ft-why-card h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.ft-why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================
   Core Values
   ========================= */

.ft-values {
  padding: 80px 0;
  background-color: var(--bg-white);
}

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

.ft-value-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.ft-value-card span {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  display: block;
  margin-bottom: 15px;
}

.ft-value-card:hover {
  background: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.ft-value-card h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.ft-value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================
   Stats Section
   ========================= */

.ft-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
}

.ft-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.ft-stat {
  color: var(--bg-white);
}

.ft-stat i {
  font-size: 32px;
  margin-bottom: 15px;
}

.ft-stat h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ft-stat p {
  font-size: 1rem;
  opacity: 0.9;
}

/* =========================
   Responsive Design
   ========================= */

@media (max-width: 1024px) {
  .ft-about-content {
    gap: 40px;
  }

  .ft-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ft-about-content,
  .ft-mv-grid,
  .ft-why-grid,
  .ft-values-grid,
  .ft-stats-grid {
    grid-template-columns: 1fr;
  }

  .ft-about-intro,
  .ft-mission-vision,
  .ft-why-choose,
  .ft-values,
  .ft-stats {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .ft-about-title,
  .ft-why-title {
    font-size: 1.8rem;
  }

  .ft-stat h3 {
    font-size: 2.2rem;
  }
}
/* Highlighted heading text (shared style) */
.ft-highlight {
  color: #2a8ace;
  position: relative;
  display: inline-block;
}

.ft-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #2a8ace;
  border-radius: 2px;
}

/* ===================================
   Services Page - Friesian Technologies
   =================================== */

/* CSS Variables */
:root {
  --primary-blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-dark: #2563eb;
  --blue-darker: #1e40af;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(37, 99, 235, 0.15);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   Page Intro Section
   ========================================== */

.page-intro {
  padding: 80px 20px;
  background-color: var(--bg-light);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Highlight style for keywords */
.highlight {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--blue-light), var(--primary-blue));
  opacity: 0.2;
  z-index: -1;
}

/* ==========================================
   Service Category Sections
   ========================================== */

.service-category {
  padding: 80px 20px;
  background-color: var(--bg-white);
}

.service-category.alt-bg {
  background-color: var(--bg-light);
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-light), var(--primary-blue));
  border-radius: 2px;
}

.category-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 50px;
}

/* Service Card - Default State */
.service-card {
  background: var(--bg-white);
  padding: 40px 35px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-category.alt-bg .service-card {
  background: var(--bg-white);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Service Icon */
.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-icon i {
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Title */
.service-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

/* Service Description */
.service-description {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

/* Service Features List */
.service-features {
  list-style: none;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-features li i {
  color: var(--primary-blue);
  font-size: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

/* ==========================================
   HOVER STATE - Transform to Featured Style
   ========================================== */

.service-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

/* Icon on Hover */
.service-card:hover .service-icon {
  background: var(--bg-white);
  border-radius: 14px;
  transform: scale(1.05);
}

.service-card:hover .service-icon i {
  color: var(--primary-blue);
}

/* Title on Hover */
.service-card:hover .service-title {
  color: var(--bg-white);
}

/* Description on Hover */
.service-card:hover .service-description {
  color: rgba(255, 255, 255, 0.95);
}

/* Features on Hover */
.service-card:hover .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features li i {
  color: var(--bg-white);
}

/* Link on Hover */
.service-card:hover .service-link {
  color: var(--bg-white);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ==========================================
   Industries We Serve Section
   ========================================== */

.industries-section {
  padding: 80px 20px;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

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

.industry-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  background: var(--bg-white);
  border-color: var(--primary-blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
}

.industry-icon i {
  font-size: 32px;
  color: var(--bg-white);
}

.industry-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================
   Process Section
   ========================================== */

.process-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

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

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), transparent);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
  opacity: 0.5;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.step-icon i {
  font-size: 32px;
  color: var(--bg-white);
}

.process-step h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-step::after {
    display: none;
  }
}

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

  .page-subtitle {
    font-size: 1.125rem;
  }

  .service-category {
    padding: 60px 20px;
  }

  .category-title {
    font-size: 2rem;
  }

  .category-desc {
    font-size: 1rem;
  }

  .service-card {
    padding: 35px 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .industries-section,
  .process-section {
    padding: 60px 20px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .page-intro {
    padding: 50px 15px;
  }

  .page-title {
    font-size: 1.875rem;
  }

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

  .service-category {
    padding: 50px 15px;
  }

  .category-title {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 30px 25px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 30px;
  }

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

  .section-title {
    font-size: 1.75rem;
  }

  .industries-section,
  .process-section {
    padding: 50px 15px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card {
    padding: 35px 25px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-icon i {
    font-size: 28px;
  }
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.1s;
}
.service-card:nth-child(5) {
  animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================================
   PROFESSIONAL WHITE MEGA MENU - FRIESIAN TECHNOLOGIES
   =================================================================== */

/* CSS Variables for easy customization */
:root {
  --mega-bg: #ffffff;
  --mega-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  --border-light: #e2e8f0;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --hover-bg: #f8fafc;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --orange: #f59e0b;
  --orange-light: #fbbf24;
  --green: #10b981;
  --green-light: #34d399;
}

/* ===== CONTAINER SETUP ===== */
.mega-menu-container {
  position: static !important;
}

/* ===== MAIN MEGA MENU DROPDOWN ===== */
.clean-mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 95vw;
  max-width: 1250px;
  transform: translateX(-50%) translateY(20px);
  background: var(--mega-bg);
  box-shadow: var(--mega-shadow);
  border-radius: 16px;
  padding: 45px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  border: 1px solid var(--border-light);
  margin-top: 8px;
}

/* Subtle gradient overlay for depth */
.clean-mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(59, 130, 246, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 92, 246, 0.04) 0%,
      transparent 50%
    );
  border-radius: 16px;
  pointer-events: none;
  z-index: -1;
}

/* Show menu on hover */
.menu-item-has-children:hover .clean-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===== COLUMN ALIGNMENT ===== */
.mega-menu-category {
  padding-right: 25px;
  height: 100%;
  position: relative;
}

/* Elegant gradient divider between columns */
.mega-menu-category::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-light) 15%,
    var(--border-light) 85%,
    transparent
  );
}

/* Remove divider from last column */
.col-lg-3:last-child .mega-menu-category::after {
  display: none;
}

/* ===== CATEGORY HEADINGS ===== */
.mega-menu-category-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 25px;
  padding-left: 10px;
  padding-bottom: 15px;
  display: block;
  position: relative;
  border-bottom: 2px solid #f1f5f9;
}

/* Accent line under category title */
.mega-menu-category-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 10px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

/* ===== LIST ITEMS ===== */
.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 6px;
}

.mega-menu-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* ===== ICON BOXES ===== */
.menu-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Category-specific colors with gradients */
.menu-icon-box {
  /* Default - Network (Blue) */
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #ffffff;
}

.menu-icon-box.cyber {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-light) 100%
  );
  color: #ffffff;
}

.menu-icon-box.cloud {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-light) 100%
  );
  color: #ffffff;
}

.menu-icon-box.staff {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #ffffff;
}

/* ===== TEXT STYLING ===== */
.mega-menu-list li a span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  line-height: 1.4;
}

/* ===== HOVER EFFECTS ===== */
.mega-menu-list li a:hover {
  background: var(--hover-bg);
  transform: translateX(6px);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08);
}

.mega-menu-list li a:hover span {
  color: var(--blue);
}

.mega-menu-list li a:hover .menu-icon-box {
  transform: scale(1.12) rotate(3deg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Keep icon colors on hover - they already have gradients */
.mega-menu-list li a:hover .menu-icon-box {
  filter: brightness(1.1);
}

/* ===== ACTIVE STATE (current page) ===== */
.mega-menu-list li a.active {
  background: #eff6ff;
}

.mega-menu-list li a.active span {
  color: var(--blue);
  font-weight: 600;
}

.mega-menu-list li a.active .menu-icon-box {
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

/* ===== ENTRANCE ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for columns */
.menu-item-has-children:hover .mega-menu-category {
  animation: slideInUp 0.4s ease-out backwards;
}

.menu-item-has-children:hover .col-lg-3:nth-child(1) .mega-menu-category {
  animation-delay: 0.05s;
}

.menu-item-has-children:hover .col-lg-3:nth-child(2) .mega-menu-category {
  animation-delay: 0.1s;
}

.menu-item-has-children:hover .col-lg-3:nth-child(3) .mega-menu-category {
  animation-delay: 0.15s;
}

.menu-item-has-children:hover .col-lg-3:nth-child(4) .mega-menu-category {
  animation-delay: 0.2s;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large screens */
@media (min-width: 1400px) {
  .clean-mega-menu {
    max-width: 1350px;
  }
}

/* Medium laptops */
@media (max-width: 1199px) {
  .clean-mega-menu {
    width: 100%;
    left: 0;
    transform: translateX(0) translateY(20px);
    max-width: none;
    border-radius: 0;
    padding: 40px 30px;
  }

  .menu-item-has-children:hover .clean-mega-menu {
    transform: translateX(0) translateY(0);
  }

  .mega-menu-category {
    padding-right: 20px;
  }

  .mega-menu-category-title {
    font-size: 13px;
  }

  .menu-icon-box {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .mega-menu-list li a span {
    font-size: 13px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .clean-mega-menu {
    display: none; /* Use mobile menu instead */
  }
}

/* Medium tablets - adjust column dividers */
@media (min-width: 768px) and (max-width: 991px) {
  .mega-menu-category::after {
    display: none;
  }

  .col-md-6:nth-child(odd) .mega-menu-category::after {
    display: block;
  }
}

/* ===== ACCESSIBILITY ===== */

/* Focus states for keyboard navigation */
.mega-menu-list li a:focus {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  background: var(--hover-bg);
}

.mega-menu-list li a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .clean-mega-menu {
    border: 2px solid var(--text-primary);
  }

  .mega-menu-category::after {
    background: var(--text-primary);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .clean-mega-menu,
  .mega-menu-list li a,
  .menu-icon-box {
    transition: none !important;
  }

  .mega-menu-category {
    animation: none !important;
  }

  .mega-menu-list li a:hover {
    transform: none;
  }

  .mega-menu-list li a:hover .menu-icon-box {
    transform: none;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .clean-mega-menu {
    display: none;
  }
}

/* ===== CONTAINER FLUID ADJUSTMENTS ===== */
.clean-mega-menu .container-fluid.mega-menu-wide {
  padding: 0;
}

/* ===== ADDITIONAL POLISH ===== */

/* Smooth shadow transition on menu appearance */
.menu-item-has-children:hover .clean-mega-menu {
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.12),
    0 5px 15px rgba(59, 130, 246, 0.05);
}

/* Subtle pulse effect on hover (optional) */
@keyframes subtlePulse {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  50% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

.mega-menu-list li a:hover .menu-icon-box {
  animation: subtlePulse 2s ease-in-out infinite;
}

/* Remove pulse animation if reduced motion is preferred */
@media (prefers-reduced-motion: reduce) {
  .mega-menu-list li a:hover .menu-icon-box {
    animation: none !important;
  }
}

/* ========================================
   Network Design & Deployment - Hero Section
   ======================================== */

/* Hero Section */
.net-design-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #050a14;
  overflow: hidden;
}

/* Video Background Handling */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  /* Dim the video so text pops */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.7) 0%, #050a14 100%);
  z-index: 1;
}

/* Badge */
.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.dot-static {
  width: 8px;
  height: 8px;
  background: #00f2ff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Hero Title */
.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Description */
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #a0aabf;
  margin-bottom: 32px;
  max-width: 700px;
}

/* Button Wrapper */
.btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary Button */
.cyber-btn.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.3);
}

.cyber-btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 242, 255, 0.4);
  color: #050a14;
}

/* Outline Button */
.cyber-btn.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cyber-btn.outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Tech Line */
.tech-line.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #00f2ff 50%,
    transparent 100%
  );
  animation: line-flow 3s infinite;
}

@keyframes line-flow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Core Pillars Section */
.net-design-core-section {
  padding: 100px 0;
  background: #ffffff;
}

.net-design-core-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.net-design-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.net-design-highlight {
  color: #2196f3;
}

.net-design-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.net-design-pillar-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.net-design-pillar-card:hover {
  border-color: #2196f3;
  box-shadow: 0 12px 40px rgba(33, 150, 243, 0.15);
  transform: translateY(-8px);
}

.net-design-pillar-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.net-design-pillar-icon.security-icon {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
}

.net-design-pillar-icon.performance-icon {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #388e3c;
}

.net-design-pillar-icon.scalability-icon {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.net-design-pillar-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.net-design-pillar-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Process Section */
.net-design-process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0d1117 100%);
}

.net-design-process-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(79, 195, 247, 0.2);
  color: #4fc3f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.net-design-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.net-design-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.net-design-step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(10px);
}

.net-design-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 195, 247, 0.5);
  transform: translateY(-8px);
}

.net-design-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.net-design-step-num {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.net-design-step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.net-design-step-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.net-design-step-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Services Section */
.net-design-services-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.net-design-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.net-design-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.net-design-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.net-design-capability-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.net-design-capability-card:hover {
  box-shadow: 0 12px 40px rgba(33, 150, 243, 0.15);
  transform: translateY(-8px);
}

.net-design-cap-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.net-design-cap-icon.icon-blue {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
}

.net-design-cap-icon.icon-green {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #388e3c;
}

.net-design-cap-icon.icon-purple {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.net-design-cap-icon.icon-red {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #c62828;
}

.net-design-cap-icon.icon-orange {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.net-design-cap-icon.icon-cyan {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #00838f;
}

.net-design-capability-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.net-design-capability-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.net-design-cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.net-design-cap-list li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.net-design-cap-list i {
  color: #2196f3;
  font-size: 12px;
}

/* Why Choose Section */
.net-design-why-section {
  padding: 100px 0;
  background: #fff;
}

.net-design-why-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.net-design-why-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 20px;
}

.net-design-why-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.net-design-stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.net-design-stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.net-design-stat-item p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.net-design-why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.net-design-feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.net-design-feature-item:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.1);
  transform: translateX(8px);
}

.net-design-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.net-design-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.net-design-feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* CTA Section */
.net-design-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0d1117 100%);
}

.net-design-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.net-design-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.net-design-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.net-design-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.net-design-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.4);
  color: #fff;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: net-design-fadeUp 0.8s ease forwards;
}

.animate-up.delay-1 {
  animation-delay: 0.2s;
}

.animate-up.delay-2 {
  animation-delay: 0.4s;
}

.animate-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes net-design-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .net-design-section-title,
  .net-design-process-title,
  .net-design-service-title,
  .net-design-why-title {
    font-size: 36px;
  }

  .net-design-stats-row {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .net-design-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .cyber-btn.primary-btn,
  .cyber-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .net-design-section-title,
  .net-design-process-title,
  .net-design-service-title,
  .net-design-why-title {
    font-size: 28px;
  }

  .net-design-core-section,
  .net-design-process-section,
  .net-design-services-section,
  .net-design-why-section {
    padding: 60px 0;
  }

  .net-design-cta-box {
    padding: 40px 30px;
  }

  .net-design-cta-title {
    font-size: 24px;
  }

  .net-design-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Managed Optical Fibre Network - Hero Section
   ======================================== */

/* Hero Section */
.mofn-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #050a14;
  overflow: hidden;
}

/* Why Fiber Section */
.mofn-why-fiber-section {
  padding: 100px 0;
  background: #ffffff;
}

.mofn-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mofn-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.mofn-highlight {
  color: #00b8d4;
}

.mofn-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.mofn-advantage-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.mofn-advantage-card:hover {
  border-color: #00f2ff;
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.mofn-advantage-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.mofn-advantage-icon.speed {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #00838f;
}

.mofn-advantage-icon.distance {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #388e3c;
}

.mofn-advantage-icon.reliability {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.mofn-advantage-icon.security {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.mofn-advantage-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.mofn-metric {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.mofn-advantage-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Services Section */
.mofn-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.mofn-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mofn-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.mofn-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.mofn-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.mofn-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 255, 0.5);
  transform: translateY(-8px);
}

.mofn-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.mofn-service-icon.icon-cyan {
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
}

.mofn-service-icon.icon-blue {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.mofn-service-icon.icon-purple {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: #fff;
}

.mofn-service-icon.icon-green {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: #fff;
}

.mofn-service-icon.icon-orange {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
}

.mofn-service-icon.icon-red {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #fff;
}

.mofn-service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.mofn-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.mofn-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mofn-service-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mofn-service-list i {
  color: #00f2ff;
  font-size: 12px;
}

/* Use Cases Section */
.mofn-use-cases-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.mofn-cases-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mofn-cases-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.mofn-cases-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.mofn-case-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.mofn-case-card:hover {
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.mofn-case-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mofn-case-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.mofn-case-icon.healthcare {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
}

.mofn-case-icon.finance {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #388e3c;
}

.mofn-case-icon.education {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.mofn-case-icon.datacenter {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.mofn-case-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin: 0;
}

.mofn-case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  margin-top: 4px;
}

.mofn-case-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.mofn-case-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.mofn-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mofn-stat strong {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mofn-stat span {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Process Section */
.mofn-process-section {
  padding: 100px 0;
  background: #fff;
}

.mofn-process-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mofn-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.mofn-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.mofn-phase-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.mofn-phase-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.mofn-phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 242, 255, 0.1);
}

.mofn-phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 28px;
  margin-bottom: 20px;
}

.mofn-phase-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.mofn-phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.mofn-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.mofn-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.mofn-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.mofn-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.mofn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.3);
}

.mofn-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 242, 255, 0.4);
  color: #050a14;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-up.delay-1 {
  animation-delay: 0.2s;
}

.animate-up.delay-2 {
  animation-delay: 0.4s;
}

.animate-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .mofn-section-title,
  .mofn-service-title,
  .mofn-cases-title,
  .mofn-process-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .mofn-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .cyber-btn.primary-btn,
  .cyber-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .mofn-section-title,
  .mofn-service-title,
  .mofn-cases-title,
  .mofn-process-title {
    font-size: 28px;
  }

  .mofn-why-fiber-section,
  .mofn-services-section,
  .mofn-use-cases-section,
  .mofn-process-section {
    padding: 60px 0;
  }

  .mofn-cta-box {
    padding: 40px 30px;
  }

  .mofn-cta-title {
    font-size: 24px;
  }

  .mofn-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .mofn-case-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========================================
   NOC Services - Stylesheet
   ======================================== */

/* Hero Section */
.noc-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #050a14;
  overflow: hidden;
}

/* Core Features Section */
.noc-core-section {
  padding: 100px 0;
  background: #ffffff;
}

.noc-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.noc-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.noc-highlight {
  color: #00b8d4;
}

.noc-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.noc-feature-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.noc-feature-card:hover {
  border-color: #00f2ff;
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.noc-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.noc-feature-icon.monitoring {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #00838f;
}

.noc-feature-icon.response {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #388e3c;
}

.noc-feature-icon.proactive {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.noc-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.noc-feature-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.noc-feature-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
.noc-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.noc-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.noc-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.noc-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.noc-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.noc-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 255, 0.5);
  transform: translateY(-8px);
}

.noc-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.noc-service-icon.icon-cyan {
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
}

.noc-service-icon.icon-blue {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.noc-service-icon.icon-purple {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: #fff;
}

.noc-service-icon.icon-green {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: #fff;
}

.noc-service-icon.icon-orange {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
}

.noc-service-icon.icon-red {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #fff;
}

.noc-service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.noc-service-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.noc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.noc-service-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.noc-service-list i {
  color: #00f2ff;
  font-size: 12px;
}

/* Technology Stack Section */
.noc-tech-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.noc-tech-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.noc-tech-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.noc-tech-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.noc-tech-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.noc-tech-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.noc-tech-item:hover {
  box-shadow: 0 8px 30px rgba(0, 242, 255, 0.15);
  transform: translateX(8px);
}

.noc-tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 24px;
  flex-shrink: 0;
}

.noc-tech-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 4px;
}

.noc-tech-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.noc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.noc-stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.noc-stat-box:hover {
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.noc-stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00838f;
  font-size: 24px;
  margin: 0 auto 16px;
}

.noc-stat-box h3 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.noc-stat-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Benefits Section */
.noc-benefits-section {
  padding: 100px 0;
  background: #fff;
}

.noc-benefit-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.noc-benefit-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.noc-benefit-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.noc-benefit-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.noc-benefit-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.noc-benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.noc-benefit-icon.cost {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #388e3c;
}

.noc-benefit-icon.uptime {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #00838f;
}

.noc-benefit-icon.expertise {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.noc-benefit-icon.scalability {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.noc-benefit-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.noc-benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.noc-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.noc-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.noc-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.noc-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.noc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.3);
}

.noc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 242, 255, 0.4);
  color: #050a14;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .noc-section-title,
  .noc-service-title,
  .noc-tech-title,
  .noc-benefit-title {
    font-size: 36px;
  }

  .noc-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .noc-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .cyber-btn.primary-btn,
  .cyber-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .noc-section-title,
  .noc-service-title,
  .noc-tech-title,
  .noc-benefit-title {
    font-size: 28px;
  }

  .noc-core-section,
  .noc-services-section,
  .noc-tech-section,
  .noc-benefits-section {
    padding: 60px 0;
  }

  .noc-cta-box {
    padding: 40px 30px;
  }

  .noc-cta-title {
    font-size: 24px;
  }

  .noc-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .noc-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Cybersecurity Solutions - Styles
   ======================================== */

/* Hero Section */
.cyber-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #0a0514;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(10, 5, 20, 0.95) 100%
  );
}

.z-2 {
  z-index: 2;
}

.cyber-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  margin-bottom: 20px;
}

.dot-static {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #a855f7;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 32px;
}

.btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cyber-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cyber-btn.primary-btn {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.cyber-btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
  color: #fff;
}

.cyber-btn.outline-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cyber-btn.outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #a855f7;
  color: #fff;
}

.tech-line {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(168, 85, 247, 0.2);
}

.tech-line.bottom-left {
  bottom: 40px;
  left: 40px;
  border-top: none;
  border-right: none;
}

/* Threat Landscape Section */
.cyber-threat-landscape-section {
  padding: 100px 0;
  background: #ffffff;
}

.cyber-badge-light {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cyber-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.cyber-highlight {
  color: #a855f7;
}

.cyber-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.cyber-threat-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.cyber-threat-card:hover {
  border-color: #a855f7;
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
  transform: translateY(-8px);
}

.cyber-threat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.cyber-threat-icon.ransomware {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

.cyber-threat-icon.phishing {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
}

.cyber-threat-icon.insider {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #7c3aed;
}

.cyber-threat-icon.apt {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.cyber-threat-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.cyber-metric {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.cyber-threat-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Solutions Section */
.cyber-solutions-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #0a0514 100%);
}

.cyber-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cyber-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cyber-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.cyber-solution-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.cyber-solution-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-8px);
}

.cyber-solution-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.cyber-solution-icon.icon-purple {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: #fff;
}

.cyber-solution-icon.icon-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
}

.cyber-solution-icon.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.cyber-solution-icon.icon-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
}

.cyber-solution-icon.icon-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #fff;
}

.cyber-solution-icon.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.cyber-solution-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cyber-solution-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.cyber-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cyber-solution-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cyber-solution-list i {
  color: #a855f7;
  font-size: 12px;
}

/* Compliance Section */
.cyber-compliance-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.cyber-compliance-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cyber-compliance-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.cyber-compliance-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.cyber-compliance-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.cyber-compliance-card:hover {
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
  transform: translateY(-8px);
}

.cyber-compliance-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cyber-compliance-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cyber-compliance-icon.hipaa {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.cyber-compliance-icon.pci {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.cyber-compliance-icon.gdpr {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  color: #db2777;
}

.cyber-compliance-icon.iso {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
}

.cyber-compliance-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin: 0;
}

.cyber-compliance-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  margin-top: 4px;
}

.cyber-compliance-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.cyber-compliance-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.feature-item i {
  color: #10b981;
  font-size: 14px;
}

/* Process Section */
.cyber-process-section {
  padding: 100px 0;
  background: #fff;
}

.cyber-process-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cyber-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.cyber-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.cyber-phase-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.cyber-phase-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
  transform: translateY(-8px);
}

.cyber-phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(168, 85, 247, 0.1);
}

.cyber-phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.cyber-phase-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.cyber-phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.cyber-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #0a0514 100%);
}

.cyber-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.cyber-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cyber-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cyber-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.cyber-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
  color: #fff;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-up.delay-1 {
  animation-delay: 0.2s;
}

.animate-up.delay-2 {
  animation-delay: 0.4s;
}

.animate-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .cyber-section-title,
  .cyber-service-title,
  .cyber-compliance-title,
  .cyber-process-title {
    font-size: 36px;
  }

  .cyber-compliance-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cyber-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .cyber-btn.primary-btn,
  .cyber-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .cyber-section-title,
  .cyber-service-title,
  .cyber-compliance-title,
  .cyber-process-title {
    font-size: 28px;
  }

  .cyber-threat-landscape-section,
  .cyber-solutions-section,
  .cyber-compliance-section,
  .cyber-process-section {
    padding: 60px 0;
  }

  .cyber-cta-box {
    padding: 40px 30px;
  }

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

  .cyber-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ========================================
   Security Audits & HIPAA Compliance - Styles
   ======================================== */

/* Hero Section */
.hipaa-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #0a1628;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3) 0%,
    rgba(10, 22, 40, 0.95) 100%
  );
}

.z-2 {
  z-index: 2;
}

.hipaa-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  margin-bottom: 20px;
}

.dot-static {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 32px;
}

.btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hipaa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hipaa-btn.primary-btn {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.hipaa-btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
  color: #fff;
}

.hipaa-btn.outline-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hipaa-btn.outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: #fff;
}

.tech-line {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.tech-line.bottom-left {
  bottom: 40px;
  left: 40px;
  border-top: none;
  border-right: none;
}

/* Why Compliance Section */
.hipaa-why-section {
  padding: 100px 0;
  background: #ffffff;
}

.hipaa-badge-light {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hipaa-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.hipaa-highlight {
  color: #3b82f6;
}

.hipaa-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.hipaa-why-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hipaa-why-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-8px);
}

.hipaa-why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.hipaa-why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.hipaa-metric {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hipaa-why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Services Section */
.hipaa-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1628 100%);
}

.hipaa-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hipaa-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.hipaa-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.hipaa-solution-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.hipaa-solution-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-8px);
}

.hipaa-solution-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #fff;
}

.hipaa-solution-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.hipaa-solution-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.hipaa-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hipaa-solution-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hipaa-solution-list i {
  color: #60a5fa;
  font-size: 12px;
}

/* Framework Section */
.hipaa-framework-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.hipaa-framework-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hipaa-framework-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.hipaa-framework-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.hipaa-framework-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.hipaa-framework-card:hover {
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-8px);
}

.hipaa-framework-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hipaa-framework-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.hipaa-framework-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin: 0;
}

.hipaa-framework-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  margin-top: 4px;
}

.hipaa-framework-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.hipaa-framework-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.feature-item i {
  color: #10b981;
  font-size: 14px;
}

/* Process Section */
.hipaa-process-section {
  padding: 100px 0;
  background: #fff;
}

.hipaa-process-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hipaa-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.hipaa-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.hipaa-phase-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.hipaa-phase-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-8px);
}

.hipaa-phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.1);
}

.hipaa-phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.hipaa-phase-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.hipaa-phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.hipaa-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1628 100%);
}

.hipaa-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.hipaa-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.hipaa-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hipaa-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.hipaa-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
  color: #fff;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-up.delay-1 {
  animation-delay: 0.2s;
}

.animate-up.delay-2 {
  animation-delay: 0.4s;
}

.animate-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .hipaa-section-title,
  .hipaa-service-title,
  .hipaa-framework-title,
  .hipaa-process-title {
    font-size: 36px;
  }

  .hipaa-framework-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hipaa-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .hipaa-btn.primary-btn,
  .hipaa-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .hipaa-section-title,
  .hipaa-service-title,
  .hipaa-framework-title,
  .hipaa-process-title {
    font-size: 28px;
  }

  .hipaa-why-section,
  .hipaa-services-section,
  .hipaa-framework-section,
  .hipaa-process-section {
    padding: 60px 0;
  }

  .hipaa-cta-box {
    padding: 40px 30px;
  }

  .hipaa-cta-title {
    font-size: 24px;
  }

  .hipaa-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ========================================
   Managed Firewall Services - Styles
   ======================================== */

/* Hero Section - NO LEFT GAP */
.firewall-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #1a0f0a;
  overflow: hidden;
}

.firewall-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.firewall-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.firewall-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.3) 0%,
    rgba(26, 15, 10, 0.95) 100%
  );
}

.firewall-z-index {
  z-index: 2;
}

.firewall-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  margin-bottom: 20px;
}

.firewall-dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fca5a5;
  border-radius: 50%;
  margin-right: 8px;
  animation: firewallPulse 2s infinite;
}

@keyframes firewallPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.firewall-hero-title {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.firewall-text-gradient {
  background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.firewall-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 32px;
}

.firewall-btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.firewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.firewall-btn-primary {
  background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.firewall-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
  color: #fff;
}

.firewall-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.firewall-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fca5a5;
  color: #fff;
}

.firewall-tech-line {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-top: none;
  border-right: none;
}

/* Protection Section */
.firewall-protection-section {
  padding: 100px 0;
  background: #ffffff;
}

.firewall-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.firewall-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.firewall-highlight {
  color: #ef4444;
}

.firewall-main-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.firewall-protection-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.firewall-protection-card:hover {
  border-color: #ef4444;
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
  transform: translateY(-8px);
}

.firewall-protection-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

.firewall-protection-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.firewall-stat {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.firewall-protection-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Services Section */
.firewall-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #7f1d1d 0%, #1a0f0a 100%);
}

.firewall-services-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.firewall-services-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.firewall-services-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.firewall-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.firewall-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-8px);
}

.firewall-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
  color: #fff;
}

.firewall-service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.firewall-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.firewall-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.firewall-service-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.firewall-service-list i {
  color: #fca5a5;
  font-size: 12px;
}

/* Platforms Section */
.firewall-platforms-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.firewall-platforms-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.firewall-platforms-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.firewall-platforms-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.firewall-platform-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.firewall-platform-card:hover {
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
  transform: translateY(-8px);
}

.firewall-platform-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.firewall-platform-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

.firewall-platform-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin: 0;
}

.firewall-platform-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  margin-top: 4px;
}

.firewall-platform-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.firewall-platform-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.firewall-feature-item i {
  color: #10b981;
  font-size: 14px;
}

/* Process Section */
.firewall-process-section {
  padding: 100px 0;
  background: #fff;
}

.firewall-process-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.firewall-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.firewall-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.firewall-phase-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.firewall-phase-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
  transform: translateY(-8px);
}

.firewall-phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(239, 68, 68, 0.1);
}

.firewall-phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.firewall-phase-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.firewall-phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.firewall-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #7f1d1d 0%, #1a0f0a 100%);
}

.firewall-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.firewall-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.firewall-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.firewall-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.firewall-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
  color: #fff;
}

/* Animations */
.firewall-animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: firewallFadeUp 0.8s ease forwards;
}

.firewall-delay-1 {
  animation-delay: 0.2s;
}

.firewall-delay-2 {
  animation-delay: 0.4s;
}

.firewall-delay-3 {
  animation-delay: 0.6s;
}

@keyframes firewallFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .firewall-hero-title {
    font-size: 48px;
  }

  .firewall-main-title,
  .firewall-services-title,
  .firewall-platforms-title,
  .firewall-process-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .firewall-hero-section {
    min-height: 80vh;
  }

  .firewall-hero-title {
    font-size: 36px;
  }

  .firewall-hero-desc {
    font-size: 16px;
  }

  .firewall-btn-wrapper {
    flex-direction: column;
  }

  .firewall-btn-primary,
  .firewall-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .firewall-main-title,
  .firewall-services-title,
  .firewall-platforms-title,
  .firewall-process-title {
    font-size: 28px;
  }

  .firewall-protection-section,
  .firewall-services-section,
  .firewall-platforms-section,
  .firewall-process-section {
    padding: 60px 0;
  }

  .firewall-cta-box {
    padding: 40px 30px;
  }

  .firewall-cta-title {
    font-size: 24px;
  }

  .firewall-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ========================================
   Data Backup & Recovery - Stylesheet
   ======================================== */

/* Hero Section */
.dbr-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #050a14;
  overflow: hidden;
}

/* Threat Landscape Section */
.dbr-threat-section {
  padding: 100px 0;
  background: #ffffff;
}

.dbr-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dbr-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.dbr-highlight {
  color: #00b8d4;
}

.dbr-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.dbr-threat-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.dbr-threat-card:hover {
  border-color: #ff5252;
  box-shadow: 0 12px 40px rgba(255, 82, 82, 0.15);
  transform: translateY(-8px);
}

.dbr-threat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.dbr-threat-icon.ransomware {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #c62828;
}

.dbr-threat-icon.hardware {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.dbr-threat-icon.human {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.dbr-threat-icon.disaster {
  background: linear-gradient(135deg, #fbe9e7 0%, #ffccbc 100%);
  color: #d84315;
}

.dbr-threat-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.dbr-stat {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.dbr-threat-card p:last-child {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Solutions Section */
.dbr-solutions-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.dbr-solution-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dbr-solution-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.dbr-solution-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.dbr-solution-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.dbr-solution-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 255, 0.5);
  transform: translateY(-8px);
}

.dbr-solution-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.dbr-solution-icon.icon-cyan {
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
}

.dbr-solution-icon.icon-blue {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.dbr-solution-icon.icon-purple {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: #fff;
}

.dbr-solution-icon.icon-green {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: #fff;
}

.dbr-solution-icon.icon-orange {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
}

.dbr-solution-icon.icon-red {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #fff;
}

.dbr-solution-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.dbr-solution-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.dbr-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dbr-solution-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dbr-solution-list i {
  color: #00f2ff;
  font-size: 12px;
}

/* 3-2-1 Rule Section */
.dbr-rule-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.dbr-rule-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dbr-rule-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 20px;
}

.dbr-rule-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.dbr-rule-explanation {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dbr-rule-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.dbr-rule-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 28px;
  font-weight: 800;
  flex-shrink: 0;
}

.dbr-rule-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.dbr-rule-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.dbr-recovery-metrics {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dbr-metrics-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 32px;
  text-align: center;
}

.dbr-metric-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.dbr-metric-box:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.15);
  transform: translateX(8px);
}

.dbr-metric-box:last-child {
  margin-bottom: 0;
}

.dbr-metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 24px;
  flex-shrink: 0;
}

.dbr-metric-content h4 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 4px;
}

.dbr-metric-content p {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.dbr-metric-desc {
  font-size: 14px;
  color: #666;
  display: block;
}

/* Process Section */
.dbr-process-section {
  padding: 100px 0;
  background: #fff;
}

.dbr-process-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dbr-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.dbr-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.dbr-phase-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.dbr-phase-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.dbr-phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 242, 255, 0.1);
}

.dbr-phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 28px;
  margin-bottom: 20px;
}

.dbr-phase-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.dbr-phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.dbr-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.dbr-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.dbr-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.dbr-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.dbr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.3);
}

.dbr-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 242, 255, 0.4);
  color: #050a14;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .dbr-section-title,
  .dbr-solution-title,
  .dbr-rule-title,
  .dbr-process-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .dbr-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .cyber-btn.primary-btn,
  .cyber-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .dbr-section-title,
  .dbr-solution-title,
  .dbr-rule-title,
  .dbr-process-title {
    font-size: 28px;
  }

  .dbr-threat-section,
  .dbr-solutions-section,
  .dbr-rule-section,
  .dbr-process-section {
    padding: 60px 0;
  }

  .dbr-cta-box {
    padding: 40px 30px;
  }

  .dbr-cta-title {
    font-size: 24px;
  }

  .dbr-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .dbr-rule-item {
    flex-direction: column;
    text-align: center;
  }

  .dbr-rule-number {
    margin: 0 auto;
  }
}

/* ========================================
   MSSP Services - Stylesheet
   ======================================== */

/* Hero Section */
.mssp-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #050a14;
  overflow: hidden;
}

/* Threat Landscape Section */
.mssp-threat-section {
  padding: 100px 0;
  background: #ffffff;
}

.mssp-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mssp-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.mssp-highlight {
  color: #00b8d4;
}

.mssp-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.mssp-stat-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.mssp-stat-card:hover {
  border-color: #ff5252;
  box-shadow: 0 12px 40px rgba(255, 82, 82, 0.15);
  transform: translateY(-8px);
}

.mssp-stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.mssp-stat-icon.attacks {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #c62828;
}

.mssp-stat-icon.cost {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.mssp-stat-icon.time {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.mssp-stat-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.mssp-stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.mssp-stat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Services Section */
.mssp-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.mssp-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mssp-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.mssp-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.mssp-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.mssp-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 255, 0.5);
  transform: translateY(-8px);
}

.mssp-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.mssp-service-icon.icon-cyan {
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
}

.mssp-service-icon.icon-blue {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.mssp-service-icon.icon-purple {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: #fff;
}

.mssp-service-icon.icon-green {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: #fff;
}

.mssp-service-icon.icon-orange {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
}

.mssp-service-icon.icon-red {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #fff;
}

.mssp-service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.mssp-service-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.mssp-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mssp-service-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mssp-service-list i {
  color: #00f2ff;
  font-size: 12px;
}

/* SOC Technology Section */
.mssp-tech-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.mssp-tech-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mssp-tech-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 20px;
}

.mssp-tech-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.mssp-tech-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mssp-tech-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mssp-tech-item:hover {
  box-shadow: 0 8px 30px rgba(0, 242, 255, 0.15);
  transform: translateX(8px);
}

.mssp-tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 24px;
  flex-shrink: 0;
}

.mssp-tech-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 4px;
}

.mssp-tech-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.mssp-soc-stats {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mssp-stats-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 32px;
  text-align: center;
}

.mssp-stat-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  align-items: center;
}

.mssp-stat-box:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.15);
  transform: translateX(8px);
}

.mssp-stat-box:last-child {
  margin-bottom: 0;
}

.mssp-box-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 24px;
  flex-shrink: 0;
}

.mssp-box-content h4 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 4px;
}

.mssp-box-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Benefits Section */
.mssp-benefits-section {
  padding: 100px 0;
  background: #fff;
}

.mssp-benefit-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.mssp-benefit-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.mssp-benefit-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.mssp-benefit-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.mssp-benefit-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.mssp-benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.mssp-benefit-icon.cost-save {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #388e3c;
}

.mssp-benefit-icon.expertise {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #00838f;
}

.mssp-benefit-icon.coverage {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.mssp-benefit-icon.scalable {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.mssp-benefit-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.mssp-benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.mssp-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.mssp-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.mssp-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.mssp-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.mssp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.3);
}

.mssp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 242, 255, 0.4);
  color: #050a14;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .mssp-section-title,
  .mssp-service-title,
  .mssp-tech-title,
  .mssp-benefit-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .mssp-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .cyber-btn.primary-btn,
  .cyber-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .mssp-section-title,
  .mssp-service-title,
  .mssp-tech-title,
  .mssp-benefit-title {
    font-size: 28px;
  }

  .mssp-threat-section,
  .mssp-services-section,
  .mssp-tech-section,
  .mssp-benefits-section {
    padding: 60px 0;
  }

  .mssp-cta-box {
    padding: 40px 30px;
  }

  .mssp-cta-title {
    font-size: 24px;
  }

  .mssp-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Data Centre Services - Stylesheet
   ======================================== */

/* Hero Section */
.dcs-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #050a14;
  overflow: hidden;
}

/* Overview Section */
.dcs-overview-section {
  padding: 100px 0;
  background: #ffffff;
}

.dcs-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dcs-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.dcs-highlight {
  color: #00b8d4;
}

.dcs-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.dcs-feature-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.dcs-feature-card:hover {
  border-color: #00f2ff;
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.dcs-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  color: #00838f;
}

.dcs-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
}

.dcs-metric {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.dcs-feature-card > p:last-child {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Services Section */
.dcs-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.dcs-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dcs-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.dcs-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.dcs-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.dcs-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 255, 0.5);
  transform: translateY(-8px);
}

.dcs-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
}

.dcs-service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.dcs-service-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.dcs-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dcs-service-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dcs-service-list i {
  color: #00f2ff;
  font-size: 12px;
}

/* Facility Features Section */
.dcs-facility-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.dcs-facility-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dcs-facility-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.dcs-facility-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.dcs-facility-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.dcs-facility-card:hover {
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.15);
  transform: translateY(-8px);
}

.dcs-facility-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dcs-facility-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
}

.dcs-facility-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin: 0;
}

.dcs-facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dcs-facility-list li {
  font-size: 15px;
  color: #666;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dcs-facility-list i {
  color: #00f2ff;
  font-size: 14px;
}

/* Migration Section */
.dcs-migration-section {
  padding: 100px 0;
  background: #fff;
}

.dcs-migration-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 242, 255, 0.1);
  color: #00b8d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.dcs-migration-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 20px;
}

.dcs-migration-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.dcs-migration-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dcs-step-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.dcs-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.dcs-step-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 6px;
}

.dcs-step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.dcs-benefits-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 36px;
}

.dcs-benefits-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 32px;
  text-align: center;
}

.dcs-benefit-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.dcs-benefit-item:hover {
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.15);
  transform: translateX(8px);
}

.dcs-benefit-item:last-child {
  margin-bottom: 0;
}

.dcs-benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050a14;
  font-size: 20px;
  flex-shrink: 0;
}

.dcs-benefit-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 4px;
}

.dcs-benefit-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* CTA Section */
.dcs-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #050a14 100%);
}

.dcs-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.dcs-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.dcs-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.dcs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 100%);
  color: #050a14;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 242, 255, 0.3);
}

.dcs-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 242, 255, 0.4);
  color: #050a14;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }

  .dcs-section-title,
  .dcs-service-title,
  .dcs-facility-title,
  .dcs-migration-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .dcs-hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .cyber-btn.primary-btn,
  .cyber-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .dcs-section-title,
  .dcs-service-title,
  .dcs-facility-title,
  .dcs-migration-title {
    font-size: 28px;
  }

  .dcs-overview-section,
  .dcs-services-section,
  .dcs-facility-section,
  .dcs-migration-section {
    padding: 60px 0;
  }

  .dcs-cta-box {
    padding: 40px 30px;
  }

  .dcs-cta-title {
    font-size: 24px;
  }

  .dcs-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ========================================
   Microsoft Services - Friesian Technologies
   ======================================== */

/* Hero Section - LEFT ALIGNED */
.ms-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #0a1a2e;
  overflow: hidden;
}

.ms-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ms-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(33, 115, 230, 0.3) 0%,
    rgba(10, 26, 46, 0.95) 100%
  );
}

.ms-z-index {
  z-index: 2;
}

.ms-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(33, 115, 230, 0.15);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(33, 115, 230, 0.3);
  margin-bottom: 20px;
}

.ms-dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  margin-right: 8px;
  animation: msPulse 2s infinite;
}

@keyframes msPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.ms-hero-title {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.ms-text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ms-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 32px;
}

.ms-btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ms-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ms-btn-primary {
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(33, 115, 230, 0.3);
}

.ms-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 115, 230, 0.4);
  color: #fff;
}

.ms-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.ms-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: #fff;
}

.ms-tech-line {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(33, 115, 230, 0.2);
  border-top: none;
  border-right: none;
}

/* Services Overview Section */
.ms-services-overview-section {
  padding: 100px 0;
  background: #ffffff;
}

.ms-overview-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.ms-overview-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.ms-highlight {
  color: #2173e6;
}

.ms-overview-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Accordion Styles */
.ms-accordion-wrapper {
  margin-top: 50px;
}

.ms-accordion-item {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.ms-accordion-item:hover {
  border-color: #2173e6;
  box-shadow: 0 4px 12px rgba(33, 115, 230, 0.1);
}

.ms-accordion-item.active {
  border-color: #2173e6;
}

.ms-accordion-header {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  gap: 20px;
}

.ms-accordion-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2173e6;
}

.ms-accordion-info {
  flex: 1;
}

.ms-accordion-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin: 0 0 4px 0;
}

.ms-accordion-subtitle {
  font-size: 14px;
  color: #64748b;
}

.ms-accordion-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ms-accordion-toggle i {
  transition: transform 0.3s ease;
}

.ms-accordion-item.active .ms-accordion-toggle i {
  transform: rotate(180deg);
}

.ms-accordion-toggle:hover {
  background: #f1f5f9;
}

.ms-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ms-accordion-item.active .ms-accordion-content {
  max-height: 1000px;
}

.ms-accordion-desc {
  padding: 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 24px;
}

.ms-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 28px 28px 28px;
}

.ms-capability-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}

.ms-capability-item i {
  color: #2173e6;
  font-size: 16px;
}

/* Specialized Services Section */
.ms-specialized-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1a2e 100%);
}

.ms-specialized-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(96, 165, 250, 0.2);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.ms-specialized-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.ms-specialized-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.ms-specialized-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.ms-specialized-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-8px);
}

.ms-specialized-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
}

.ms-specialized-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.ms-specialized-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.ms-specialized-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ms-specialized-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.ms-specialized-list i {
  color: #60a5fa;
  font-size: 18px;
  margin-top: 2px;
}

.ms-specialized-list strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.ms-specialized-list span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Why Choose Section */
.ms-why-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.ms-why-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.ms-why-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.ms-why-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.ms-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid #e5e7eb;
}

.ms-why-card:hover {
  border-color: #2173e6;
  box-shadow: 0 12px 40px rgba(33, 115, 230, 0.15);
  transform: translateY(-8px);
}

.ms-why-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(33, 115, 230, 0.1);
}

.ms-why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2173e6;
  font-size: 28px;
  margin-bottom: 20px;
}

.ms-why-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.ms-why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* CTA Section */
.ms-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1a2e 100%);
}

.ms-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.ms-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.ms-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.ms-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(33, 115, 230, 0.3);
}

.ms-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 115, 230, 0.4);
  color: #fff;
}

/* Animations */
.ms-animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: msFadeUp 0.8s ease forwards;
}

.ms-delay-1 {
  animation-delay: 0.2s;
}

.ms-delay-2 {
  animation-delay: 0.4s;
}

.ms-delay-3 {
  animation-delay: 0.6s;
}

@keyframes msFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .ms-hero-title {
    font-size: 48px;
  }

  .ms-overview-title,
  .ms-specialized-title,
  .ms-why-title {
    font-size: 36px;
  }

  .ms-capabilities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ms-hero-section {
    min-height: 80vh;
  }

  .ms-hero-title {
    font-size: 36px;
  }

  .ms-hero-desc {
    font-size: 16px;
  }

  .ms-btn-wrapper {
    flex-direction: column;
  }

  .ms-btn-primary,
  .ms-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .ms-overview-title,
  .ms-specialized-title,
  .ms-why-title {
    font-size: 28px;
  }

  .ms-services-overview-section,
  .ms-specialized-section,
  .ms-why-section {
    padding: 60px 0;
  }

  .ms-cta-box {
    padding: 40px 30px;
  }

  .ms-cta-title {
    font-size: 24px;
  }

  .ms-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .ms-accordion-header {
    padding: 20px;
    gap: 12px;
  }

  .ms-accordion-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .ms-accordion-info h3 {
    font-size: 18px;
  }
}

/* ========================================
   IT Hardware Sales - Friesian Technologies
   BLUE COLOR SCHEME
   ======================================== */

/* Hero Section - LEFT ALIGNED */
.hardware-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #0a1a2e;
  overflow: hidden;
}

.hardware-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hardware-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hardware-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(33, 115, 230, 0.3) 0%,
    rgba(10, 26, 46, 0.95) 100%
  );
}

.hardware-z-index {
  z-index: 2;
}

.hardware-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(33, 115, 230, 0.15);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(33, 115, 230, 0.3);
  margin-bottom: 20px;
}

.hardware-dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  margin-right: 8px;
  animation: hardwarePulse 2s infinite;
}

@keyframes hardwarePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hardware-hero-title {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hardware-text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hardware-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 32px;
}

.hardware-btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hardware-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hardware-btn-primary {
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(33, 115, 230, 0.3);
}

.hardware-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 115, 230, 0.4);
  color: #fff;
}

.hardware-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hardware-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: #fff;
}

.hardware-tech-line {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(33, 115, 230, 0.2);
  border-top: none;
  border-right: none;
}

/* Categories Section */
.hardware-categories-section {
  padding: 100px 0;
  background: #ffffff;
}

.hardware-category-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hardware-category-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.hardware-highlight {
  color: #2173e6;
}

.hardware-category-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.hardware-product-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hardware-product-card:hover {
  border-color: #2173e6;
  box-shadow: 0 12px 40px rgba(33, 115, 230, 0.15);
  transform: translateY(-8px);
}

.hardware-product-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2173e6;
}

.hardware-product-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.hardware-product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.hardware-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hardware-product-list li {
  font-size: 14px;
  color: #64748b;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.hardware-product-list li:last-child {
  border-bottom: none;
}

/* Why Section */
.hardware-why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1a2e 100%);
}

.hardware-why-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(96, 165, 250, 0.2);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hardware-why-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.hardware-why-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.hardware-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.hardware-benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-8px);
}

.hardware-benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
}

.hardware-benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.hardware-benefit-metric {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hardware-benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Vendors Section */
.hardware-vendors-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.hardware-vendors-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hardware-vendors-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.hardware-vendors-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.hardware-vendor-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.hardware-vendor-card:hover {
  box-shadow: 0 12px 40px rgba(33, 115, 230, 0.15);
  transform: translateY(-8px);
}

.hardware-vendor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hardware-vendor-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2173e6;
}

.hardware-vendor-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin: 0;
}

.hardware-vendor-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Process Section */
.hardware-process-section {
  padding: 100px 0;
  background: #fff;
}

.hardware-process-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hardware-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.hardware-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.hardware-phase-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.hardware-phase-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(33, 115, 230, 0.15);
  transform: translateY(-8px);
}

.hardware-phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(33, 115, 230, 0.1);
}

.hardware-phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.hardware-phase-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.hardware-phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.hardware-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1a2e 100%);
}

.hardware-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.hardware-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.hardware-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hardware-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(33, 115, 230, 0.3);
}

.hardware-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 115, 230, 0.4);
  color: #fff;
}

/* Animations */
.hardware-animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: hardwareFadeUp 0.8s ease forwards;
}

.hardware-delay-1 {
  animation-delay: 0.2s;
}
.hardware-delay-2 {
  animation-delay: 0.4s;
}
.hardware-delay-3 {
  animation-delay: 0.6s;
}

@keyframes hardwareFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hardware-hero-title {
    font-size: 48px;
  }
  .hardware-category-title,
  .hardware-why-title,
  .hardware-vendors-title,
  .hardware-process-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hardware-hero-section {
    min-height: 80vh;
  }
  .hardware-hero-title {
    font-size: 36px;
  }
  .hardware-hero-desc {
    font-size: 16px;
  }
  .hardware-btn-wrapper {
    flex-direction: column;
  }
  .hardware-btn-primary,
  .hardware-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hardware-category-title,
  .hardware-why-title,
  .hardware-vendors-title,
  .hardware-process-title {
    font-size: 28px;
  }
  .hardware-categories-section,
  .hardware-why-section,
  .hardware-vendors-section,
  .hardware-process-section {
    padding: 60px 0;
  }
  .hardware-cta-box {
    padding: 40px 30px;
  }
  .hardware-cta-title {
    font-size: 24px;
  }
  .hardware-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Staff Augmentation - Friesian Technologies
   BLUE COLOR SCHEME
   ======================================== */

/* Hero Section - LEFT ALIGNED */
.staff-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #0a1a2e;
  overflow: hidden;
}

.staff-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.staff-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(33, 115, 230, 0.3) 0%,
    rgba(10, 26, 46, 0.95) 100%
  );
}

.staff-z-index {
  z-index: 2;
}

.staff-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(33, 115, 230, 0.15);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(33, 115, 230, 0.3);
  margin-bottom: 20px;
}

.staff-dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  margin-right: 8px;
  animation: staffPulse 2s infinite;
}

@keyframes staffPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.staff-hero-title {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.staff-text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.staff-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 32px;
}

.staff-btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.staff-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.staff-btn-primary {
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(33, 115, 230, 0.3);
}

.staff-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 115, 230, 0.4);
  color: #fff;
}

.staff-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.staff-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: #fff;
}

.staff-tech-line {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(33, 115, 230, 0.2);
  border-top: none;
  border-right: none;
}

/* Roles Section */
.staff-roles-section {
  padding: 100px 0;
  background: #ffffff;
}

.staff-roles-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.staff-roles-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.staff-highlight {
  color: #2173e6;
}

.staff-roles-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.staff-role-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.staff-role-card:hover {
  border-color: #2173e6;
  box-shadow: 0 12px 40px rgba(33, 115, 230, 0.15);
  transform: translateY(-8px);
}

.staff-role-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2173e6;
}

.staff-role-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
  text-align: center;
}

.staff-role-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.staff-role-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff-role-list li {
  font-size: 14px;
  color: #64748b;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.staff-role-list li:last-child {
  border-bottom: none;
}

/* Benefits Section */
.staff-benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1a2e 100%);
}

.staff-benefits-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(96, 165, 250, 0.2);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.staff-benefits-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.staff-benefits-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.staff-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.staff-benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-8px);
}

.staff-benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
}

.staff-benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.staff-benefit-metric {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.staff-benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Models Section */
.staff-models-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.staff-models-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.staff-models-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.staff-models-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.staff-model-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.staff-model-card:hover {
  border-color: #2173e6;
  box-shadow: 0 12px 40px rgba(33, 115, 230, 0.15);
  transform: translateY(-8px);
}

.staff-model-card.featured {
  border-color: #2173e6;
  box-shadow: 0 8px 30px rgba(33, 115, 230, 0.2);
}

.staff-model-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.staff-model-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2173e6;
}

.staff-model-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 8px;
  text-align: center;
}

.staff-model-duration {
  font-size: 16px;
  font-weight: 600;
  color: #2173e6;
  margin-bottom: 16px;
  text-align: center;
}

.staff-model-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 24px;
  text-align: center;
}

.staff-model-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff-model-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.staff-model-features i {
  color: #10b981;
  font-size: 16px;
}

/* Process Section */
.staff-process-section {
  padding: 100px 0;
  background: #fff;
}

.staff-process-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(33, 115, 230, 0.1);
  color: #2173e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.staff-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f3a;
  margin-bottom: 16px;
}

.staff-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.staff-phase-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.staff-phase-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(33, 115, 230, 0.15);
  transform: translateY(-8px);
}

.staff-phase-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(33, 115, 230, 0.1);
}

.staff-phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.staff-phase-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 12px;
}

.staff-phase-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* CTA Section */
.staff-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1a2e 100%);
}

.staff-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.staff-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.staff-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.staff-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #60a5fa 0%, #2173e6 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(33, 115, 230, 0.3);
}

.staff-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 115, 230, 0.4);
  color: #fff;
}

/* Animations */
.staff-animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: staffFadeUp 0.8s ease forwards;
}

.staff-delay-1 {
  animation-delay: 0.2s;
}
.staff-delay-2 {
  animation-delay: 0.4s;
}
.staff-delay-3 {
  animation-delay: 0.6s;
}

@keyframes staffFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .staff-hero-title {
    font-size: 48px;
  }
  .staff-roles-title,
  .staff-benefits-title,
  .staff-models-title,
  .staff-process-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .staff-hero-section {
    min-height: 80vh;
  }
  .staff-hero-title {
    font-size: 36px;
  }
  .staff-hero-desc {
    font-size: 16px;
  }
  .staff-btn-wrapper {
    flex-direction: column;
  }
  .staff-btn-primary,
  .staff-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .staff-roles-title,
  .staff-benefits-title,
  .staff-models-title,
  .staff-process-title {
    font-size: 28px;
  }
  .staff-roles-section,
  .staff-benefits-section,
  .staff-models-section,
  .staff-process-section {
    padding: 60px 0;
  }
  .staff-cta-box {
    padding: 40px 30px;
  }
  .staff-cta-title {
    font-size: 24px;
  }
  .staff-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   PROJECT MANAGEMENT PAGE - STYLESHEET
   Freisian Technologies
   Color Scheme: Blue (#2563eb, #3b82f6, #1e40af)
   ======================================== */

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.position-relative {
  position: relative;
}

.z-2 {
  z-index: 2;
}

/* ========================================
   HERO SECTION
   ======================================== */
.pm-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #0f172a;
  overflow: hidden;
}

/* Video Background */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, #0f172a 100%);
  z-index: 1;
}

/* Badge */
.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 50px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.dot-pulse {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
}

/* Hero Title */
.pm-hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Description */
.pm-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 700px;
}

.pm-hero-desc strong {
  color: #cbd5e1;
  font-weight: 600;
}

/* Button Wrapper */
.btn-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary Button */
.pm-btn.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  border: none;
}

.pm-btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* Outline Button */
.pm-btn.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pm-btn.outline-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #ffffff;
}

/* Tech Line */
.tech-line.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #3b82f6 50%,
    transparent 100%
  );
  animation: line-glow 3s infinite;
}

@keyframes line-glow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ========================================
   CORE PILLARS SECTION
   ======================================== */
.pm-core-section {
  padding: 100px 0;
  background: #ffffff;
}

.pm-core-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pm-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.pm-highlight {
  color: #2563eb;
}

.pm-section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.pm-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.pm-pillar-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  transform: translateY(-8px);
}

.pm-pillar-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  transition: all 0.3s ease;
}

.pm-pillar-icon.icon-planning {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

.pm-pillar-icon.icon-execution {
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
  color: #1d4ed8;
}

.pm-pillar-icon.icon-communication {
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  color: #1e3a8a;
}

.pm-pillar-icon.icon-delivery {
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
  color: #1e40af;
}

.pm-pillar-card:hover .pm-pillar-icon {
  transform: scale(1.1);
}

.pm-pillar-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.pm-pillar-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.pm-process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.pm-process-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pm-process-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.pm-text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-process-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.pm-step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(10px);
}

.pm-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-8px);
}

.pm-step-card-support {
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
}

.pm-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pm-step-num {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.pm-step-card:hover .pm-step-icon {
  transform: rotate(360deg);
}

.pm-step-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.pm-step-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.pm-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-step-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-step-list i {
  color: #60a5fa;
  font-size: 12px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.pm-services-section {
  padding: 100px 0;
  background: #f8fafc;
}

.pm-service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pm-service-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.pm-service-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
}

.pm-capability-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.pm-capability-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  transform: translateY(-8px);
}

.pm-cap-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.pm-capability-card:hover .pm-cap-icon {
  transform: scale(1.1) rotate(5deg);
}

.pm-cap-icon.icon-it {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

.pm-cap-icon.icon-software {
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  color: #1d4ed8;
}

.pm-cap-icon.icon-digital {
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
  color: #1e3a8a;
}

.pm-cap-icon.icon-security {
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
  color: #1e40af;
}

.pm-cap-icon.icon-integration {
  background: linear-gradient(135deg, #bfdbfe 0%, #60a5fa 100%);
  color: #1d4ed8;
}

.pm-cap-icon.icon-pmo {
  background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 100%);
  color: #1e3a8a;
}

.pm-capability-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.pm-capability-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 20px;
}

.pm-cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-cap-list li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-cap-list i {
  color: #3b82f6;
  font-size: 12px;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.pm-why-section {
  padding: 100px 0;
  background: #ffffff;
}

.pm-why-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pm-why-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.pm-why-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
}

.pm-stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.pm-stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.pm-stat-item p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.pm-why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pm-feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pm-feature-item:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
  transform: translateX(8px);
}

.pm-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pm-feature-item:hover .pm-feature-icon {
  transform: scale(1.1);
}

.pm-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.pm-feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.pm-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.pm-cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  backdrop-filter: blur(10px);
}

.pm-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.pm-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.pm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.pm-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-up.delay-1 {
  animation-delay: 0.2s;
}

.animate-up.delay-2 {
  animation-delay: 0.4s;
}

.animate-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets and below (991px) */
@media (max-width: 991px) {
  .pm-hero-title {
    font-size: 48px;
  }

  .pm-section-title,
  .pm-process-title,
  .pm-service-title,
  .pm-why-title {
    font-size: 36px;
  }

  .pm-stats-row {
    gap: 24px;
  }
}

/* Mobile devices (767px) */
@media (max-width: 767px) {
  .pm-hero-section {
    min-height: 80vh;
  }

  .pm-hero-title {
    font-size: 36px;
  }

  .pm-hero-desc {
    font-size: 16px;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .pm-btn.primary-btn,
  .pm-btn.outline-btn {
    width: 100%;
    justify-content: center;
  }

  .pm-section-title,
  .pm-process-title,
  .pm-service-title,
  .pm-why-title {
    font-size: 28px;
  }

  .pm-core-section,
  .pm-process-section,
  .pm-services-section,
  .pm-why-section {
    padding: 60px 0;
  }

  .pm-cta-box {
    padding: 40px 30px;
  }

  .pm-cta-title {
    font-size: 24px;
  }

  .pm-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .pm-stats-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
  .pm-hero-title {
    font-size: 28px;
  }

  .pm-section-title,
  .pm-process-title,
  .pm-service-title,
  .pm-why-title {
    font-size: 24px;
  }

  .pm-pillar-card,
  .pm-step-card,
  .pm-capability-card {
    padding: 24px 20px;
  }
}

/* SIDE MENU */

.side-menu {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-menu .menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-top: -50px;
}

/* Logo */
.side-menu .logo img {
  width: 170px;
  height: auto;
  margin-top: 50px;
}

/* Contact block */
.side-menu .sidebar-menu {
  margin: 0;
}

.side-menu .sidebar-menu h4 {
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}

.side-menu .sidebar-menu p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.side-menu .nmbr,
.side-menu .email {
  display: block;
  margin-bottom: 12px;
}

/* Button */
.side-menu .ibt-btn-rounded {
  margin-top: 16px;
}

/* =========================================
   SIDE MENU: SIMPLE LAPTOP FIX (1250px-1400px)
   ========================================= */

@media (min-width: 1250px) and (max-width: 1400px) {
  /* 1. LAYOUT: Start from the Top  */
  .side-menu {
    justify-content: flex-start !important; /* Forces everything to the top */
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }

  /* 2. LOGO: Make it smaller to save space */
  .side-menu .logo img {
    width: 130px !important;
    height: auto;
    margin-bottom: 20px !important;
  }

  /* 3. CONTENT: Remove big gaps */
  .side-menu .menu-content {
    gap: 5px !important; /* Tighter spacing */
    align-items: center;
  }

  /* 4. TEXT: Simple & Compact */
  .side-menu .sidebar-menu h4 {
    margin-bottom: 5px !important;
    font-size: 14px;
  }

  .side-menu .sidebar-menu p {
    margin-bottom: 10px !important;
  }

  .side-menu .nmbr,
  .side-menu .email {
    margin-bottom: 5px !important;
  }

  /* 5. BUTTON & ICONS: Pull them up */
  .side-menu .ibt-btn-rounded {
    margin-top: 5px !important;
  }

  .side-menu .social-icon {
    margin-top: 15px !important; /* Just enough space below button */
  }
}

/* Add arrow ONLY to Services menu item */
.menu-style1 > ul > li.menu-item-has-children.mega-menu-container > a::before {
  background-image: url(../images/icon/arrow.svg) !important;
  bottom: 9px;
  right: 20px;
}

.menu-style1 > ul > li > a.active {
  padding: 0px 30px 0px 30px !important; /* Balanced left-right padding */
}

/*FINAL MOBILE MENU */

.side-menu2 ul li a::before,
.side-menu2 ul li a::after,
.side-menu2 .sub-menu::before,
.side-menu2 .sub-menu::after {
  display: none !important;
}

/* Hide sub-menu initially */
.side-menu2 .sub-menu {
  display: none !important;
  padding-left: 20px;
  border-left: 1px solid #eee;
}

/* 2. ARROW TOGGLE BUTTON */
.side-menu2 li {
  position: relative;
}

.arrow-toggle {
  position: absolute;
  top: 0;
  right: -25px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 50;
  background-image: url("../images/icon/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: transform 0.3s ease;
}

.arrow-toggle.active {
  transform: rotate(180deg);
}

/* 3. SHOW MENU (The Fix for "Invisible" Items) */
.side-menu2 .sub-menu.open {
  display: block !important;

  /* OVERRIDE OLD THEME STYLES */
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  max-height: 1000px !important; /* Ensure it can grow */

  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Mobile Menu - Improved Heading Styles
   ======================================== */

/* Main menu items styling */
.side-menu2 > ul > li > a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1f3a;
  padding: 12px 0;
  display: block;
}

/* Category headings (Network Solutions, Cybersecurity, etc.) */
.side-menu2 .sub-menu > li.menu-item-has-children > a {
  font-size: 15px;
  font-weight: 700;
  color: #2196f3;
  padding: 10px 0;
  display: block;
  margin-top: 8px;
}

/* Service items under categories */
.side-menu2 .sub-menu .sub-menu li a {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  padding: 8px 0;
  display: block;
  line-height: 1.4;
}

.side-menu2 .sub-menu .sub-menu li a:hover {
  color: #2196f3;
  padding-left: 5px;
  transition: all 0.3s ease;
}

/* Add spacing between category sections */
.side-menu2 .sub-menu > li.menu-item-has-children {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.side-menu2 .sub-menu > li.menu-item-has-children:last-child {
  border-bottom: none;
}

/* Adjust arrow position for cleaner look */
.side-menu2 .sub-menu .arrow-toggle {
  right: -20px;
  width: 40px;
  height: 40px;
  background-size: 10px;
}

/* Add subtle background to open categories */
.side-menu2 .sub-menu > li.menu-item-has-children > .sub-menu.open {
  background: #f9f9f9;
  padding: 10px 15px;
  margin-top: 5px;
  border-radius: 8px;
}
