/*WIDER MENU  */

@media (min-width: 992px) {
  .main-menu.menu-style1 > ul > li ul.sub-menu {
    width: 450px;
    padding: 15px 0;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    left: -50px;
    overflow: visible !important;
  }

  /* 2. The Link - Default State */
  .main-menu.menu-style1 > ul > li ul.sub-menu li a {
    white-space: nowrap;
    padding: 12px 25px;
    font-size: 15px;
    color: #b0b0b0;
    transition: all 0.2s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: block;
    position: relative;
    z-index: 1;
  }

  /* 3. The Arrow - Rotated "Cross Down" (Diagonal) */
  .main-menu.menu-style1 > ul > li ul.sub-menu li a::before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
    color: #2ba5c8;
    font-size: 13px;
    transition: all 0.2s ease-out;
  }

  /* 4. Hover State - Move Text & Arrow */
  .main-menu.menu-style1 > ul > li ul.sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #2ba5c8;
    padding-left: 45px;
  }

  .main-menu.menu-style1 > ul > li ul.sub-menu li a:hover::before {
    opacity: 1;
    left: 20px;
  }

  /* Remove border from last item */
  .main-menu.menu-style1 > ul > li ul.sub-menu li:last-child a {
    border-bottom: none;
  }
}

/*HEADER MENU ARROW */

/* 1. Add breathing room inside the button */
.main-menu.menu-style1 > ul > li.menu-item-has-children > a {
  padding-right: 20px !important;
  position: relative;
  display: inline-block;
}

/* 2. Position the arrow perfectly in that space 
.main-menu.menu-style1 > ul > li.menu-item-has-children > a::after,
.main-menu.menu-style1 > ul > li.menu-item-has-children > a i { 
    right: 5px !important; 
    left: auto !important; 
    top: 65% !important;
    transform: translateY(-50%) !important;
    position: absolute !important;
    margin: 0 !important; 
} */

.vs-header6 .header-logo img,
.sticky-active .header-logo img {
  max-width: 180px;
  height: auto;
  display: block;
  padding: 8px 0;
}

/* The Image Box */
.about-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 480px;
}

.about-img-box .main-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
  display: block;
  object-fit: contain;
  transform: scale(1.02);
  object-position: center;
}

/* Hover Effect: Zoom image slightly */
.about-img-box:hover .main-img {
  transform: scale(1.03);
}

/*  Floating Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid #00d2b5;
  /* Teal Accent */
}

.experience-badge .year {
  font-size: 36px;
  font-weight: 800;
  color: #00d2b5;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
}

/* The Content Side */
.about-content-wrapper .sub-title {
  color: #00d2b5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.about-content-wrapper .description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-top: 15px;
}

/*  The New Stats Row Styling */
.inner-stats-row {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 25px 0;
}

.stat-item .stat-number {
  font-size: 42px;
  font-weight: 800;
  /* Your Brand Gradient */
  background: linear-gradient(102deg, #8250c8 0.77%, #2c84c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-item .stat-desc {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
}

.about-content-wrapper .title {
  font-size: 32px !important;
  line-height: 1.3 !important;
  margin-bottom: 20px;
  max-width: 90%;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .about-content-wrapper {
    padding-left: 0;
  }

  .experience-badge {
    display: none;
  }

  .inner-stats-row {
    gap: 20px;
  }

  .stat-item .stat-number {
    font-size: 32px;
  }
}

/* Custom Subtitle  */
.clean-subtitle {
  color: #00d2b5;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
}

.clean-subtitle::before,
.clean-subtitle::after {
  content: none !important;
  display: none !important;
}

/* FEATURES SECTION */

.features-sec-tech {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

/*  The Tag  */
.feature-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;

  /* LOGO GRADIENT: Cyan to Blue */
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*  Main Heading */
.feature-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 0;
}

/*  The Card Container */
.feature-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/*  HOVER EFFECT: Lift & Shadow */
.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 114, 255, 0.15);
  /* Blue shadow matches logo */
  border-color: transparent;
}

/*  HOVER EFFECT: Bottom Gradient Line */
.feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  /* LOGO GRADIENT LINE */
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-item:hover::after {
  transform: scaleX(1);
}

/*  Icon Box Styling */
.feature-item .icon-box {
  width: 70px;
  height: 70px;
  background: #f0f9ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.feature-item .icon-box i {
  font-size: 28px;
  color: #0072ff;
  transition: all 0.4s ease;
}

/*  HOVER EFFECT: Icon Box Fills with Logo Gradient */
.feature-item:hover .icon-box {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

.feature-item:hover .icon-box i {
  color: #ffffff;
  transform: scale(1.1);
}

/* Text Styling */
.feature-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* PREMIUM FOOTER STYLES*/

.premium-footer {
  width: 100%;
  background-color: #0b0b15;
  color: #a0a0a0;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 24px 20px;
}

/* --- CTA SECTION --- */
.cta-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 16px;
  font-weight: 400;
  max-width: 500px;
}

/* "GET A QUOTE" BUTTON */
.premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  border-radius: 50px;

  /* Transparent with White Outline */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;

  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* HOVER: Blue Gradient (Matches Tech Theme) */
.premium-btn:hover {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 114, 255, 0.4);
  transform: translateY(-3px);
}

/* Divider Line */
.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

/* --- LOGO --- */
.footer-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.brand-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 25px;
}

/* --- WIDGETS --- */
.widget-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

/* Blue Underline for Titles */
.widget-title::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #348ef1;
  margin-top: 8px;
  border-radius: 2px;
}

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

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

.footer-list a {
  color: #a0a0a0;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer-list a:hover {
  color: #348ef1;
  /* Blue Hover */
  padding-left: 5px;
}

/* --- SOCIAL ICONS --- */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: #348ef1;
  /* Blue Hover */
  transform: translateY(-3px);
}

/* --- CONTACT & BOTTOM --- */
.contact-box {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-box .icon-box {
  color: #348ef1;
  /* Blue Icon */
  font-size: 16px;
  margin-top: 3px;
}

.contact-box .text-box p {
  margin: 0;
  font-size: 15px;
}

.contact-box a {
  color: #a0a0a0;
  text-decoration: none;
  transition: 0.3s;
}

.contact-box a:hover {
  color: #348ef1;
}

/* Footer Bottom Area */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 10px;
  font-size: 13px;
}

.text-brand-blue {
  color: #348ef1;
  font-weight: 600;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
}

.legal-links a:hover {
  color: #fff;
}

/* Mobile Tweak */
@media (max-width: 767px) {
  .footer-inner {
    padding: 40px 20px;
  }

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

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

  .legal-links {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* PROJECT MARQUEE  */

.project-marquee-sec {
  background-color: #f4f7fa;
  overflow: hidden;
}

.project-marquee-slider .swiper-slide {
  width: 400px;
  margin-right: 40px;
  padding: 30px 0;
}

.moving-card {
  position: relative;
  width: 100%;
  height: 450px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: default;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.moving-card .logo-area img {
  max-width: 220px;
  height: auto;
  transition: all 0.5s ease;
  opacity: 0.8;
}

.card-reveal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(52, 142, 241, 0.9) 0%,
    rgba(44, 62, 80, 0.95) 100%
  );
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.project-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.project-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.moving-card:hover {
  transform: scale(1.1);
  /* Comes to front */
  box-shadow: 0 30px 60px rgba(52, 142, 241, 0.3);
  z-index: 10;
}

.moving-card:hover .card-reveal {
  transform: translateY(0);
}

.moving-card:hover .project-name,
.moving-card:hover .project-info {
  transform: translateY(0);
  opacity: 1;
}

.moving-card:hover .logo-area img {
  opacity: 0.2;
  transform: scale(0.8);
}

.service-sec15 {
  padding-top: 0px;
}

.about-us-sec6 {
  padding-bottom: 30px;
}

.features-sec-tech {
  padding-top: 30px;
}

.project-marquee-sec {
  padding-top: 20px;
  padding-bottom: 30px;
}

.hero-video-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}

.hero-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .hero-video-wrapper {
    min-height: 300px;
    margin-top: 30px;
  }
}

/* =========================
   HERO BUTTONS
   ========================= */
.hero-content10 .ibt-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;

  /* Sizing */
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: none !important;
}

.hero-content10 .ibt-btn::before,
.hero-content10 .ibt-btn::after {
  display: none !important;
  content: none !important;
  border: none !important;
}

/*  HOVER STATE*/
.hero-content10 .ibt-btn:hover {
  background: linear-gradient(90deg, #8250c8 0%, #348ef1 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(130, 80, 200, 0.4) !important;
}

/* Spacing between buttons */
.hero-content10 .ibt-btn + .ibt-btn {
  margin-left: 20px;
}

.hero-content10 .title {
  font-size: 52px !important;
  line-height: 1.2 !important;
  font-weight: 700;
  margin-bottom: 20px;
}

.vs-header6 .header-menu-area {
  min-height: 70px !important;
}

/* 1. Slim down the main white box */
.vs-header15 .header-menu-area {
  padding: 10px 10px !important;
  /* Reduces top/bottom padding significantly */
  min-height: 70px !important;
  /* Forces the box to be shorter */
}

/* 2. Constrain the Logo Size */
.vs-header15 .header-logo img {
  max-height: 80px !important;
  /* Limits logo height so it fits the slimmer bar */
  width: auto;
  display: block;
}

/* 5. Mobile Tweak (Keep it slim on phones too) */
@media (max-width: 991px) {
  .vs-header15 .header-menu-area {
    padding: 15px 0 !important;
    min-height: 60px !important;
  }
}

/* =========================
   REFINED CYBER-GRID STYLES
   ========================= */

.cyber-grid-sec {
  background-color: #0b0c10;
  padding: 60px 0;
  position: relative;
  margin-top: 20px;
}

/* 1. The Card Container */
.cyber-card {
  position: relative;
  height: 100%;
  background: #14161f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  /* Slightly tighter corners */
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 2. Background Pattern  */
.card-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  transition: opacity 0.4s;
}

.cyber-card:hover .card-bg-texture {
  opacity: 0.6;
}

/* 3. Card Body */
.card-body {
  position: relative;
  z-index: 2;
  padding: 40px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Wide Layouts */
.cyber-card.wide .card-body {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.cyber-card.wide .card-body.right-align {
  text-align: right;
  justify-content: flex-end;
}

/* 4. REFINED ICONS (Crisp, not fuzzy) */
.icon-zone i {
  font-size: 36px;
  color: #fff;
  text-shadow: 0 0 8px rgba(52, 142, 241, 0.8);
  margin-bottom: 25px;
  display: block;
  transition: all 0.4s ease;
}

/* 5. Typography */
.cyber-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

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

/* 6. Links / Buttons */
.cyber-link,
.cyber-link-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #348ef1;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s;
}

.cyber-link-sm {
  color: rgba(255, 255, 255, 0.7);
}

/*HOVER EFFECTS */

.cyber-card:hover {
  transform: translateY(-7px);
  border-color: rgba(52, 142, 241, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Icon lights up on hover */
.cyber-card:hover .icon-zone i {
  color: #348ef1;
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(52, 142, 241, 1);
}

/* Link Hover */
.cyber-card:hover .cyber-link,
.cyber-card:hover .cyber-link-sm {
  color: #fff;
  gap: 15px;
}

/* Purple Featured Card */
.featured-purple:hover {
  border-color: rgba(130, 80, 200, 0.6);
}

.featured-purple:hover .icon-zone i {
  color: #8250c8;
  text-shadow: 0 0 15px rgba(130, 80, 200, 1);
}

/* Responsive */
@media (max-width: 991px) {
  .cyber-card.wide .card-body {
    flex-direction: column;
    text-align: left !important;
    align-items: flex-start;
  }

  .cyber-card.wide .icon-zone {
    order: -1;
    margin-bottom: 20px;
  }
}

/*FEATURE GRID*/

.feature-sec-light {
  background-color: #ffffff;
  padding: 70px 0;
  position: relative;
}

/* Section Title */
.sub-title-light {
  display: inline-block;
  color: #348ef1;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  background: rgba(52, 142, 241, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
}

.feature-sec-light .title {
  color: #1a1a1a;
  font-weight: 800;
  font-size: 36px;
}

/* The Light Card */
.feature-card-light {
  background: #f9faff;
  border: 1px solid #eef0f5;
  border-radius: 16px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Icon Box */
.feature-card-light .icon-wrapper {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.feature-card-light .icon-wrapper i {
  font-size: 24px;
  color: #348ef1;
  transition: all 0.4s ease;
}

/* Text */
.feature-card-light .title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/*HOVER EFFECTS*/

.feature-card-light:hover {
  background: #ffffff;
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(52, 142, 241, 0.1);
}

.feature-card-light:hover .icon-wrapper {
  background: #348ef1;
  transform: scale(1.1);
}

.feature-card-light:hover .icon-wrapper i {
  color: #ffffff;
}

/* =========================
   PROCESS SECTION STYLES
   ========================= */

.process-sec {
  background-color: #f8faff;
  /* Light Grey/Blue Background */
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.process-wrapper {
  position: relative;
  padding-top: 30px;
}

/* The Horizontal Line connecting steps */
.process-line {
  position: absolute;
  top: 50px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: #e0e6ed;
  z-index: 1;
  display: block;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Step Number (01, 02...) */
.step-number {
  font-size: 60px;
  font-weight: 900;
  color: rgba(52, 142, 241, 0.08);
  /* Very faint blue */
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  line-height: 1;
}

/* Icon Bubble */
.step-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 3px solid #fff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.step-icon i {
  font-size: 28px;
  color: #348ef1;
  transition: all 0.4s ease;
}

/* Text */
.process-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.process-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effect */
.process-step:hover .step-icon {
  background: #348ef1;
  transform: translateY(-10px);
}

.process-step:hover .step-icon i {
  color: #fff;
}

/* Mobile Tweak: Hide line on phones */
@media (max-width: 991px) {
  .process-line {
    display: none;
  }

  .process-step {
    margin-bottom: 50px;
  }
}

/* --- MSSP Hero Section Styles --- */
.service-hero-mssp {
  margin-top: 20px;
  position: relative;
  background: url("../images/Services/Managed Security.png") no-repeat center
    center/cover;
  padding: 100px 0 80px 0;
  min-height: 450px;
  display: flex;
  align-items: center;
}

/* Dark Overlay to make text readable */
.service-hero-mssp .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.7) 100%
  );
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(52, 142, 241, 0.15);
  color: #348ef1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(52, 142, 241, 0.3);
}

.hero-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Sora", sans-serif;
}

.hero-desc {
  color: #cbd5e1;
  /* Light gray text */
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-breadcrumbs li {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
}

.hero-breadcrumbs li a {
  color: #cbd5e1;
  transition: 0.3s;
}

.hero-breadcrumbs li a:hover {
  color: #348ef1;
}

.hero-breadcrumbs li.active {
  color: #348ef1;
}

.hero-breadcrumbs i {
  font-size: 10px;
  opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .service-hero-mssp {
    padding: 120px 0 80px 0;
  }
}

/* --- Service Overview Section --- */
.service-overview-sec {
  padding: 100px 0;
  background-color: #ffffff;
  /* Clean white background */
}

.sub-heading {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #348ef1;
  /* Brand Blue */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-heading {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  /* Dark Navy */
  line-height: 1.2;
  margin-bottom: 25px;
}

.section-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  /* Muted Slate */
  margin-bottom: 35px;
}

/* The "Solution" Highlight Box */
.solution-box {
  background: #f1f5f9;
  /* Very light grey/blue */
  border-left: 4px solid #348ef1;
  padding: 25px;
  border-radius: 0 8px 8px 0;
}

.solution-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.solution-text {
  font-size: 16px;
  color: #475569;
  margin: 0;
}

/* Image Styling */
.overview-img-box {
  position: relative;
  padding-left: 30px;
  /* Space for the floating badge */
}

.main-overview-img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  /* Soft shadow for depth */
}

/* Floating Badge Animation */
.floating-badge {
  position: absolute;
  bottom: 40px;
  left: 0;
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float-badge 4s ease-in-out infinite;
}

.floating-badge .icon-circle {
  width: 50px;
  height: 50px;
  background: #e0f2fe;
  color: #348ef1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.floating-badge .badge-text {
  display: flex;
  flex-direction: column;
}

.floating-badge .badge-num {
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
  line-height: 1;
}

.floating-badge .badge-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
}

@keyframes float-badge {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .section-heading {
    font-size: 32px;
  }

  .overview-img-box {
    margin-top: 50px;
    padding-left: 0;
  }

  .floating-badge {
    left: 20px;
  }
}

/* --- MSSP Benefits Section --- */
.mssp-benefits-sec {
  padding: 70px 0;
  background-color: #f8fafc;
}

/* The Card Container */
.benefit-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  /* Subtle border */
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Lift and Shadow */
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #348ef1;
  /* Border turns blue on hover */
}

/* The Icon Styling */
.card-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(52, 142, 241, 0.08);
  /* Very light blue bg */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #348ef1;
  transition: 0.3s;
}

.benefit-card:hover .card-icon {
  background: #348ef1;
  color: #ffffff;
  transform: rotateY(180deg);
}

/* Text Content */
.card-content h4 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .benefit-card {
    flex-direction: column;
    padding: 30px;
  }

  .card-icon {
    margin-bottom: 20px;
  }
}

/* --- MSSP Process Section --- */
.mssp-process-sec {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-wrapper {
  position: relative;
  padding-top: 30px;
}

/* The Grey Connector Line */
.process-line {
  position: absolute;
  top: 75px;
  /* Aligns with the middle of the icons */
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
  display: block;
}

.process-step-item {
  position: relative;
  z-index: 1;
  /* Sits on top of the line */
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px;
}

/* The Step Number (01, 02...) */
.step-num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 50px;
  color: #f1f5f9;
  /* Very faint background number */
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  line-height: 1;
}

/* The Icon Box */
.step-icon-box {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 32px;
  color: #348ef1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Hover Effect */
.process-step-item:hover .step-icon-box {
  background: #348ef1;
  color: #ffffff;
  border-color: #348ef1;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(52, 142, 241, 0.3);
}

.process-step-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.process-step-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .process-line {
    display: none;
    /* Hide line on tablet/mobile */
  }

  .process-step-item {
    margin-bottom: 50px;
  }

  .step-num {
    font-size: 40px;
    top: -30px;
  }
}

/* Anil Code */

/* =========================================
   REDESIGNED SERVICE PAGE STYLES
   ========================================= */

.services-overview-section {
  padding: 100px 0;
  background-color: #f4f7fa;
}

/* Headers */
.section-subtitle-cyan {
  color: #2ba5c8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title-black {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 20px;
}

.section-desc-grey {
  font-size: 18px;
  color: #5f6b7a;
  line-height: 1.6;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #2ba5c8 0%, #1a8aab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- THE TECH CARD --- */
.tech-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  z-index: 1;
}

/* Hover State */
.tech-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(43, 165, 200, 0.15); /* Cyan Glow */
  border-color: rgba(43, 165, 200, 0.3);
}

/* Background Number  */
.card-bg-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: #f0f4f8;
  font-family: "Sora", sans-serif;
  line-height: 1;
  transition: 0.4s;
  z-index: -1;
}

.tech-service-card:hover .card-bg-number {
  color: rgba(43, 165, 200, 0.1);
  transform: scale(1.1);
}

/* Icon Box */
.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(43, 165, 200, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2ba5c8;
  margin-bottom: 25px;
  transition: 0.4s;
}

.tech-service-card:hover .card-icon {
  background: #2ba5c8;
  color: #ffffff;
  border-radius: 50%; /* Circle morph effect */
  transform: rotate(360deg);
}

/* Text */
.tech-service-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 15px;
  transition: 0.3s;
}

.tech-service-card:hover h3 {
  color: #2ba5c8;
}

.tech-service-card p {
  font-size: 15px;
  color: #5f6b7a;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Read More Link */
.read-more-link {
  font-size: 14px;
  font-weight: 700;
  color: #0b1b33;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.read-more-link i {
  transition: 0.3s;
  color: #2ba5c8;
}

.tech-service-card:hover .read-more-link {
  color: #2ba5c8;
  gap: 15px; /* Arrow slides out */
}

/* Bottom Line Animation */
.hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2ba5c8, #1a8aab);
  transition: 0.4s;
}

.tech-service-card:hover .hover-line {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-dark {
    font-size: 32px;
  }
}

/* =========================================
   ENGAGEMENT ROADMAP 
   ========================================= */

.roadmap-section {
  padding: 70px 0;
  background-color: #0b1b33; /* Deep Navy Brand Color */
  position: relative;
  overflow: hidden;
}

/* Header Adjustments for Dark Background */
.roadmap-section .section-title-light {
  color: #ffffff; /* Override text color to white */
}

.roadmap-section .section-desc-light {
  color: #a0aabf !important; /* Light Grey */
}

/* The Grid Layout */
.roadmap-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

/* The Card */
.roadmap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
  width: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

/* Highlight Step 4 (Vigilance) */
.roadmap-card.highlight-step {
  background: linear-gradient(
    145deg,
    rgba(43, 165, 200, 0.1),
    rgba(11, 27, 51, 0.5)
  );
  border-color: rgba(43, 165, 200, 0.3);
}

/* Hover Effect */
.roadmap-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: #2ba5c8;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Step Badge (01, 02...) */
.step-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b1b33;
  color: #2ba5c8;
  border: 1px solid rgba(43, 165, 200, 0.3);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
}

/* Icons */
.roadmap-icon {
  font-size: 32px;
  color: #fff;
  margin: 20px 0 20px;
  height: 60px;
  width: 60px;
  background: rgba(43, 165, 200, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: 0.4s;
}

.roadmap-card:hover .roadmap-icon {
  background: #2ba5c8;
  color: #0b1b33;
  box-shadow: 0 0 20px rgba(43, 165, 200, 0.5);
}

/* Text */
.roadmap-card h3 {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.roadmap-card p {
  color: #a0aabf;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Bottom Glow Bar */
.glow-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #2ba5c8;
  transition: 0.4s;
  box-shadow: 0 -2px 10px rgba(43, 165, 200, 0.5);
}

.roadmap-card:hover .glow-bar {
  width: 100%;
}

/* Connector Arrows */
.roadmap-connector {
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
  0%,
  100% {
    opacity: 0.1;
    transform: translateX(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(5px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .roadmap-grid {
    flex-direction: column;
  }
  .roadmap-connector {
    display: none; /* Hide arrows on mobile */
  }
  .roadmap-card {
    margin-bottom: 20px;
  }
}

/* =========================================
   INDUSTRIES & TECH STACK 
   ========================================= */

.industry-tech-section {
  padding: 70px 0;
  background-color: #f8fbff; /* Very light blue-white */
}

/* --- Industry Card Design --- */
.industry-modern-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industry-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(43, 165, 200, 0.1);
  border-color: rgba(43, 165, 200, 0.3);
}

/* Icon */
.ind-icon {
  font-size: 32px;
  color: #2ba5c8; /* Brand Cyan */
  margin-bottom: 20px;
  background: rgba(43, 165, 200, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: 0.3s;
}

.industry-modern-card:hover .ind-icon {
  background: #2ba5c8;
  color: #fff;
}

/* Text Content */
.industry-modern-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 8px;
}

.compliance-tag {
  font-size: 12px;
  font-weight: 700;
  color: #2ba5c8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  background: rgba(43, 165, 200, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.ind-desc {
  font-size: 15px;
  color: #5f6b7a;
  line-height: 1.6;
  margin: 0;
}

/* --- Tech Stack Wrapper --- */
.tech-stack-wrapper {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.tech-stack-title {
  font-size: 14px;
  font-weight: 800;
  color: #a0aabf;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #ffffff;
  border: 1px solid #e1e8f0;
  border-radius: 50px;
  color: #0b1b33;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.tech-badge i {
  color: #5f6b7a;
  font-size: 18px;
  transition: 0.3s;
}

.tech-badge:hover {
  border-color: #2ba5c8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(43, 165, 200, 0.15);
}

.tech-badge:hover i {
  color: #2ba5c8;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-badges {
    gap: 10px;
  }
  .tech-badge {
    font-size: 13px;
    padding: 10px 20px;
  }
}
/* =====================================
   PROCESS TIMELINE – PREMIUM VERSION
===================================== */

.process-timeline-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Header */
.timeline-header {
  max-width: 720px;
  margin: 0 auto 80px;
}

.timeline-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2a8ace;
  margin-bottom: 15px;
}

.timeline-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.timeline-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
}

/* Timeline Layout */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #2a8ace 0%,
    rgba(42, 138, 206, 0.15) 100%
  );
}

/* Timeline Item */
.timeline-item {
  display: flex;
  gap: 40px;
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Step Dot */
.timeline-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a8ace, #7ee2ef);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(42, 138, 206, 0.35);
  flex-shrink: 0;
  z-index: 2;
}

/* Card */
.timeline-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(42, 138, 206, 0.08);
  transition: all 0.35s ease;
}

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

.timeline-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Hover Effect */
.timeline-item:hover .timeline-card {
  transform: translateX(10px);
  box-shadow: 0 25px 60px rgba(42, 138, 206, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-line {
    left: 30px;
  }

  .timeline-item {
    gap: 25px;
  }

  .timeline-dot {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }

  .timeline-card {
    padding: 25px 25px;
  }

  .timeline-title {
    font-size: 32px;
  }
}

/* =========================================
   SERVICE LISTING PAGE 
   ========================================= */

.service-list-card {
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 20px 50px rgba(42, 138, 206, 0.08);
}

/* hover lift */
.service-list-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(42, 138, 206, 0.15);
}

/* subtle gradient border */
.service-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(42, 138, 206, 0.35),
    rgba(120, 200, 255, 0.1)
  );
  border-radius: inherit;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

/* ICON */
.service-list-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2a8ace, #6fdcff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.service-list-icon i {
  font-size: 28px;
  color: #ffffff;
}

/* TITLE */
.service-list-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

/* DESCRIPTION */
.service-list-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* LINK */
.service-list-link {
  font-weight: 600;
  color: #2a8ace;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-list-link i {
  transition: transform 0.3s ease;
}

.service-list-link:hover {
  gap: 14px;
}

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

/* ===== Premium Card Base ===== */
.premium-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid #eef3f8;
}

/* Lift on hover */
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(42, 138, 206, 0.12);
}

/* ===== Top Accent Line ===== */
.premium-card .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #2a8ace, #7ee2ef);
  transition: width 0.45s ease;
}

/* Animate line on hover */
.premium-card:hover .card-accent {
  width: 100%;
}

/* Optional: slight icon motion */
.premium-card .service-icon {
  transition: transform 0.4s ease;
}

.premium-card:hover .service-icon {
  transform: scale(1.08);
}

/* ===========================
   VIDEO HERO SECTION
=========================== */

.service-video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

/* Video */
.service-video-hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Overlay */
.service-video-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 12, 24, 0.9),
    rgba(5, 12, 24, 0.55)
  );
  z-index: 2;
}

/* Content */
.service-video-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  animation: heroFadeUp 1s ease forwards;
}

/* Badge */
.hero-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(42, 138, 206, 0.15);
  border: 1px solid rgba(42, 138, 206, 0.4);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Title */
.hero-title {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Button */
.hero-btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, #2a8ace, #49c5f6);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(42, 138, 206, 0.4);
}

/* Animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* ===========================
   FIREWALL COVERAGE – LIGHT UI
=========================== */

.firewall-coverage-section {
  padding: 70px 0;
  background: #f6f8fc;
}

/* Section Header */
.firewall-coverage-section .section-eyebrow {
  color: #2a8ace;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.firewall-coverage-section .section-title {
  color: #0b1b33;
  font-size: 42px;
  margin: 14px 0;
}

.firewall-coverage-section .section-desc {
  color: #5f6b7a;
  max-width: 720px;
  margin: 0 auto;
}

/* Remove dark / tilt behavior */
.tilt-card {
  perspective: none;
}

.tilt-card-inner {
  position: relative;
  height: 100%;
  padding: 42px 36px;
  background: #ffffff;
  border-radius: 20px;
  border-top: 4px solid transparent;
  box-shadow: 0 18px 40px rgba(15, 30, 60, 0.08);
  transition: all 0.35s ease;
}

/* Hover Effect */
.tilt-card-inner:hover {
  transform: translateY(-10px);
  border-top-color: #2a8ace;
  box-shadow: 0 28px 60px rgba(15, 30, 60, 0.14);
}

/* Card Number */
.card-index {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 44px;
  font-weight: 700;
  color: rgba(42, 138, 206, 0.18);
}

/* Card Title */
.tilt-card-inner h3 {
  font-size: 22px;
  color: #0b1b33;
  margin-bottom: 14px;
}

/* Card Text */
.tilt-card-inner p {
  font-size: 16px;
  color: #5f6b7a;
  line-height: 1.6;
}

/* Responsive spacing fix */
@media (max-width: 767px) {
  .firewall-coverage-section {
    padding: 80px 0;
  }
}

/* ===========================
   FIREWALL FLOW SECTION
=========================== */

.firewall-flow-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f7fafd, #ffffff);
}

.flow-header {
  max-width: 760px;
  margin: 0 auto 80px;
}

.flow-eyebrow {
  color: #2a8ace;
  font-size: 14px;
  letter-spacing: 1px;
}

.flow-title {
  font-size: 44px;
  margin: 15px 0;
  color: #0b1b33;
}

.flow-desc {
  color: #5f6b7a;
  font-size: 17px;
}

/* Flow Track */
.flow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Flow Item */
.flow-item {
  position: relative;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

/* Top animated line */
.flow-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #2a8ace, #7ee2ef);
  transition: width 0.4s ease;
}

.flow-item:hover::before {
  width: 100%;
}

/* Hover lift */
.flow-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* Step Number */
.flow-step {
  font-size: 52px;
  font-weight: 700;
  color: rgba(42, 138, 206, 0.15);
  display: block;
  margin-bottom: 20px;
}

/* Text */
.flow-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0b1b33;
}

.flow-item p {
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .flow-track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .flow-track {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   BENEFITS SECTION
=========================== */

.benefits-section {
  padding: 70px 0;
  background: #f6f8fc;
}

/* Header */
.benefits-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.benefits-eyebrow {
  color: #2a8ace;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.benefits-title {
  font-size: 44px;
  color: #0b1b33;
  margin: 16px 0;
  font-weight: 700;
}

.benefits-desc {
  font-size: 17px;
  color: #5f6b7a;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
  margin-top: 60px;
}

/* Benefit Card - Horizontal Layout */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 30, 60, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  border-left: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateX(8px);
  border-left-color: #2a8ace;
  box-shadow: 0 20px 50px rgba(42, 138, 206, 0.12);
}

/* Icon Wrapper */
.benefit-icon-wrap {
  flex-shrink: 0;
}

/* Icon */
.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a8ace, #49c5f6);
  border-radius: 14px;
  transition: all 0.35s ease;
}

.benefit-icon i {
  font-size: 26px;
  color: #ffffff;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(42, 138, 206, 0.35);
}

/* Content */
.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  font-size: 20px;
  color: #0b1b33;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-content p {
  font-size: 15px;
  color: #5f6b7a;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .benefits-section {
    padding: 90px 0;
  }

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

@media (max-width: 767px) {
  .benefits-section {
    padding: 70px 0;
  }

  .benefits-title {
    font-size: 32px;
  }

  .benefit-card {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }

  .benefit-icon-wrap {
    margin: 0 auto;
  }
}

/* ===========================
   INDUSTRIES / USE CASES SECTION
=========================== */

.industries-section {
  padding: 70px 0;
  background: #ffffff;
}

/* Header */
.industries-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.industries-eyebrow {
  color: #2a8ace;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.industries-title {
  font-size: 44px;
  color: #0b1b33;
  margin: 16px 0;
  font-weight: 700;
}

.industries-desc {
  font-size: 17px;
  color: #5f6b7a;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Industries Grid */
.industries-grid {
  margin-top: 60px;
}

/* Industry Card */
.industry-card {
  position: relative;
  padding: 40px 32px;
  background: #f8fafc;
  border-radius: 18px;
  border: 2px solid #e8ecf1;
  transition: all 0.35s ease;
  height: 100%;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2a8ace, #49c5f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  background: #ffffff;
  border-color: #2a8ace;
  box-shadow: 0 20px 50px rgba(42, 138, 206, 0.12);
  transform: translateY(-8px);
}

/* Icon */
.industry-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a8ace, #49c5f6);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.industry-icon i {
  font-size: 28px;
  color: #ffffff;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(42, 138, 206, 0.35);
}

/* Title */
.industry-card h3 {
  font-size: 22px;
  color: #0b1b33;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Challenge Text */
.industry-challenge {
  font-size: 15px;
  color: #0b1b33;
  margin-bottom: 12px;
  line-height: 1.6;
}

.industry-challenge strong {
  color: #2a8ace;
  font-weight: 600;
}

/* Solution Text */
.industry-solution {
  font-size: 15px;
  color: #5f6b7a;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Compliance Badges */
.industry-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8ecf1;
}

.compliance-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(42, 138, 206, 0.08);
  color: #2a8ace;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.industry-card:hover .compliance-badge {
  background: rgba(42, 138, 206, 0.15);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .industries-section {
    padding: 90px 0;
  }

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

@media (max-width: 767px) {
  .industries-section {
    padding: 70px 0;
  }

  .industries-title {
    font-size: 32px;
  }

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

/* =========================================
   1. HERO SECTION (PREMIUM DARK THEME)
   ========================================= */

/* Global Variables for VAPT Page */
:root {
  --cyber-dark: #050a14;
  --cyber-blue: #00f2ff;
  /* Neon Cyan */
  --cyber-blue-dim: rgba(0, 242, 255, 0.1);
  --text-grey: #a0aabf;
}

.vapt-hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: var(--cyber-dark);
  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;
}

/* Cyber Badge */
.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid rgba(0, 242, 255, 0.3);
  color: var(--cyber-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 25px;
  font-family: "Sora", sans-serif;
}

.dot-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--cyber-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyber-blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/* Typography */
.hero-title {
  font-family: "Sora", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.text-gradient-cyan {
  background: linear-gradient(90deg, #fff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

.hero-desc {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  color: var(--text-grey);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-desc strong {
  color: #fff;
  font-weight: 600;
}

/* Buttons */
.btn-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cyber-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Sora", sans-serif;
}

.primary-btn {
  background: var(--cyber-blue);
  color: #000;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}

.primary-btn:hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
  transform: translateY(-2px);
  color: #000;
}

.outline-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}

.outline-btn:hover {
  border-color: var(--cyber-blue);
  color: var(--cyber-blue);
}

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

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

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

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

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

/* =========================================
   2. VAPT LIGHT SECTION (Business Drivers)
   ========================================= */

.vapt-light-section {
  padding: 70px 0;
  background-color: #f8faff;
  /* Very light cool grey */
  position: relative;
}

/* Typography (Light Theme) */
.vapt-subtitle-light {
  display: block;
  color: #2ba5c8;
  /* Brand Cyan */
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.vapt-title-light {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0b1b33;
  /* Dark Navy Text */
  margin-bottom: 20px;
}

.text-primary-blue {
  color: #2ba5c8;
}

.vapt-desc-light {
  font-size: 18px;
  color: #5f6b7a;
  /* Slate Grey */
  line-height: 1.7;
}

/* Driver Cards */
.driver-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Soft Shadow */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Lift up */
.driver-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(43, 165, 200, 0.15);
  /* Blue Shadow */
  border-color: rgba(43, 165, 200, 0.3);
}

/* The Highlight Card (Middle) */
.driver-card.highlight {
  border-top: 4px solid #2ba5c8;
}

.driver-card.highlight:hover {
  transform: translateY(-10px);
  background: #fdfdfd;
  box-shadow: 0 20px 50px rgba(43, 165, 200, 0.15);
}

/* Icons */
.driver-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(43, 165, 200, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2ba5c8;
  margin-bottom: 25px;
  transition: 0.3s;
}

.driver-card:hover .driver-icon-box {
  background: #2ba5c8;
  color: #fff;
  transform: rotateY(180deg);
}

/* Card Text */
.driver-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 15px;
}

.driver-card p {
  font-size: 15px;
  color: #5f6b7a;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Internal List */
.driver-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.driver-list li {
  font-size: 14px;
  color: #0b1b33;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.driver-list li i {
  color: #2ba5c8;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .vapt-title-light {
    font-size: 32px;
  }
}

/* =========================================
   3. METHODOLOGY SECTION (Dark & Interactive)
   ========================================= */

.vapt-process-section {
  padding: 70px 0;
  background-color: #0b0c15;
  /* Deep Cyber Black */
  position: relative;
  overflow: hidden;
}

/* Section Headers (Dark Theme) */
.vapt-subtitle-dark {
  display: block;
  color: #a0aabf;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.vapt-title-dark {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.vapt-desc-dark {
  font-size: 18px;
  color: #a0aabf;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* The Chain Layout */
.kill-chain-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 60px;
}

/* Connecting Line (The "Circuit") */
.kill-chain-wrapper::before {
  content: "";
  position: absolute;
  top: 50px;
  /* Aligns with icons */
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(43, 165, 200, 0.2) 0%,
    rgba(255, 46, 99, 0.5) 50%,
    rgba(43, 165, 200, 0.2) 100%
  );
  z-index: 0;
}

/* Individual Step Card */
.chain-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 25px 30px;
  position: relative;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy effect */
  z-index: 1;
  /* Sits above the line */
  overflow: hidden;
}

/* Hover: Lift & Glow */
.chain-step:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.05);
  border-color: #2ba5c8;
  box-shadow: 0 20px 40px rgba(43, 165, 200, 0.15);
}

/* Special "Attack" Phase (Red Glow) */
.chain-step.attack-phase:hover {
  border-color: #ff2e63;
  /* Red */
  box-shadow: 0 20px 40px rgba(255, 46, 99, 0.2);
}

/* Watermark Number (01, 02...) */
.step-bg-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Sora", sans-serif;
  line-height: 1;
  z-index: 0;
  transition: 0.4s;
}

.chain-step:hover .step-bg-number {
  color: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}

/* Icons */
.chain-icon {
  width: 70px;
  height: 70px;
  background: #0b0c15;
  /* Covers the connecting line */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: #2ba5c8;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

.chain-step:hover .chain-icon {
  color: #fff;
  background: #2ba5c8;
  border-color: #2ba5c8;
  box-shadow: 0 0 20px rgba(43, 165, 200, 0.4);
}

.chain-step.attack-phase:hover .chain-icon {
  background: #ff2e63;
  border-color: #ff2e63;
  box-shadow: 0 0 20px rgba(255, 46, 99, 0.4);
}

/* Text */
.chain-step h4 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.chain-step p {
  font-size: 14px;
  color: #a0aabf;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Step Indicator Dot (Bottom) */
.step-indicator {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 20px auto 0;
  transition: 0.4s;
}

.chain-step:hover .step-indicator {
  background: #2ba5c8;
  transform: scale(1.5);
}

.chain-step.attack-phase:hover .step-indicator {
  background: #ff2e63;
}

/* Responsive */
@media (max-width: 991px) {
  .kill-chain-wrapper {
    grid-template-columns: 1fr;
    /* Stack vertically on mobile */
    gap: 20px;
  }

  /* Hide the horizontal line on mobile */
  .kill-chain-wrapper::before {
    display: none;
  }

  .chain-step {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 30px 20px;
  }

  .chain-icon {
    margin: 0 20px 0 0;
    /* Move icon to left */
    flex-shrink: 0;
  }

  .step-bg-number {
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
  }
}

/* =========================================
   4. COVERAGE SECTION (Interactive Tabs)
   ========================================= */

.vapt-coverage-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.coverage-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  background: #f8fbff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* LEFT SIDE: Navigation Buttons */
.coverage-nav {
  flex: 0 0 300px;
  /* Fixed width */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-btn {
  text-align: left;
  background: #fff;
  border: 1px solid #eef2f6;
  padding: 18px 25px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #5f6b7a;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
}

.nav-btn i {
  color: #a0aabf;
  font-size: 18px;
  transition: 0.3s;
}

/* Active/Hover State */
.nav-btn:hover,
.nav-btn.active {
  background: linear-gradient(90deg, #2ba5c8 0%, #1e88a8 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(43, 165, 200, 0.2);
  transform: translateX(5px);
}

.nav-btn:hover i,
.nav-btn.active i {
  color: #fff;
}

/* RIGHT SIDE: Content Area */
.coverage-content-area {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #eef2f6;
  position: relative;
  min-height: 400px;
}

/* Tab Animation Logic */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Header inside content */
.content-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.icon-box-lg {
  width: 70px;
  height: 70px;
  background: rgba(43, 165, 200, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #2ba5c8;
}

.content-header h3 {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0b1b33;
  margin: 0;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6b7a;
  margin-bottom: 30px;
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  font-size: 15px;
  font-weight: 600;
  color: #0b1b33;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list li i {
  color: #2ba5c8;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .coverage-container {
    flex-direction: column;
    padding: 20px;
  }

  .coverage-nav {
    flex: auto;
  }
}

/* =========================================
   5. DELIVERABLES SECTION (Dark)
   ========================================= */

.vapt-deliverables-section {
  padding: 100px 0;
  background-color: #0b0c15;
  /* Matches other dark sections */
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Deliverable Boxes (Left) */
.deliverable-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: 0.3s;
}

.deliverable-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--test-cyan);
  transform: translateX(10px);
}

.d-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  /* Make background slightly brighter so it stands out */
  background: rgba(43, 165, 200, 0.15) !important;
  border: 1px solid rgba(43, 165, 200, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Force the Icon itself to be Cyan and Visible */
.d-icon i {
  color: #2ba5c8 !important;
  /* Bright Cyan */
  font-size: 24px !important;
  opacity: 1 !important;
}

/* Hover Effect for Left Boxes */
.deliverable-box:hover .d-icon {
  background: #2ba5c8 !important;
  box-shadow: 0 0 15px rgba(43, 165, 200, 0.6);
}

.deliverable-box:hover .d-icon i {
  color: #000 !important;
  /* Turn icon black on hover for contrast */
}

.deliverable-box h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.deliverable-box p {
  color: #a0aabf;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Tools Section (Right) */
.tools-wrapper {
  position: relative;
  padding: 40px;
  background: linear-gradient(
    145deg,
    rgba(20, 30, 60, 0.4) 0%,
    rgba(11, 12, 21, 0.8) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.tools-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-align: center;
  opacity: 0.7;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.tool-tag {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.tool-tag i {
  color: var(--test-red);
}

.tool-tag:hover {
  background: var(--test-cyan);
  color: #ffffff;
  border-color: var(--test-cyan);
  transform: scale(1.05);
}

.tool-tag:hover i {
  color: #ffffff;
}

/* Glow Effect behind tools */
.tools-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(43, 165, 200, 0.2) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* INCIDENT RESPONSE Hero Section */

:root {
  --ir-dark: #0b0c15;
  /* Deep Cyber Black */
  --ir-red: #ff2e63;
  /* Neon Red for Emergency */
  --ir-cyan: #2ba5c8;
  /* Brand Cyan */
  --text-grey: #a0aabf;
}

/* 2. Hero Section Container */
.ir-hero {
  position: relative;
  padding: 120px 0 120px;
  background-color: var(--ir-dark);
  overflow: hidden;
  color: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.ir-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Dark Red Overlay */
.ir-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 46, 99, 0.05) 0%, #0b0c15 90%);
  z-index: 1;
}

/* 3. Typography & Badges */
.ir-title {
  font-family: "Sora", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
  /* Left Aligned */
}

/* Gradient Text Effect */
.text-gradient-red {
  background: linear-gradient(135deg, #fff 0%, var(--ir-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 46, 99, 0.4);
}

.ir-desc {
  font-size: 19px;
  color: var(--text-grey);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: left;
  /* Left Aligned */
}

.ir-desc strong {
  color: #fff;
  font-weight: 600;
}

/* Badge Style */
.ir-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 46, 99, 0.1);
  border: 1px solid rgba(255, 46, 99, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ir-red);
  font-family: "Sora", sans-serif;
}

.pulse-dot-red {
  width: 8px;
  height: 8px;
  background: var(--ir-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ir-red);
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 46, 99, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 46, 99, 0);
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 46, 99, 0);
  }
}

/* 4. Buttons */
.cyber-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Sora", sans-serif;
}

/* Solid Red Button */
.red-btn {
  background: linear-gradient(135deg, #ff2e63 0%, #ff0f4b 100%);
  color: #fff !important;
  border: 1px solid var(--ir-red);
  box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
}

.red-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 46, 99, 0.5);
  color: #fff !important;
}

/* Outline Button */
.outline-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  backdrop-filter: blur(5px);
}

.outline-btn:hover {
  border-color: var(--ir-cyan);
  color: var(--ir-cyan) !important;
  background: rgba(43, 165, 200, 0.1);
}

/* Ringing Phone Icon */
.animate-ring {
  animation: phoneRing 1s infinite ease-in-out;
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
  }

  75% {
    transform: rotate(15deg);
  }
}

/* 5. Stats Row (Left Aligned) */
.ir-stats-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: flex-start;
  /* Left Aligned */
  gap: 60px;
}

.ir-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Left Aligned Text */
}

.ir-stat .num {
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ir-red);
  text-shadow: 0 0 20px rgba(255, 46, 99, 0.4);
  line-height: 1;
  margin-bottom: 5px;
}

.ir-stat .label {
  font-size: 13px;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 1px;
}

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

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

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

/* 7. Responsive Styles */
@media (max-width: 991px) {
  .ir-hero {
    padding: 150px 0 100px;
    height: auto;
  }

  .ir-title {
    font-size: 42px;
  }

  .ir-stats-row {
    gap: 30px !important;
    flex-wrap: wrap;
  }
}

/* =========================================
   2. IMPACT SECTION 
   ========================================= */

/* Global Variables for this page (Consistent with VAPT) */
:root {
  --brand-cyan: #2ba5c8;
  /* Your Logo Color */
  --brand-dark: #0b0c15;
  --text-navy: #0b1b33;
  --text-grey: #5f6b7a;
}

.ir-impact-section {
  padding: 70px 0;
  background-color: #f8faff;
  /* Light Blue-Grey Background */
  position: relative;
}

/* Typography */
.section-subtitle-cyan {
  display: block;
  color: var(--brand-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title-light {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-navy);
  margin-bottom: 20px;
}

.section-desc-light {
  font-size: 18px;
  color: var(--text-grey);
  line-height: 1.7;
}

/* Text Gradient (Cyan) */
.text-gradient-cyan {
  background: linear-gradient(135deg, #2ba5c8 0%, #1e88a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Cards Design (Matches VAPT) --- */
.impact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(43, 165, 200, 0.1);
  /* Subtle Cyan Border */
  box-shadow: 0 10px 30px rgba(11, 27, 51, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Highlight Card (Middle) */
.impact-card.highlight {
  border-top: 4px solid var(--brand-cyan);
}

/* Hover Effects */
.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(43, 165, 200, 0.15);
  /* Cyan Glow Shadow */
  border-color: rgba(43, 165, 200, 0.3);
}

/* Icons */
.impact-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(43, 165, 200, 0.1);
  /* Light Cyan BG */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand-cyan);
  margin-bottom: 25px;
  transition: 0.3s;
}

.impact-card:hover .impact-icon-box {
  background: var(--brand-cyan);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(43, 165, 200, 0.2);
}

/* Card Text */
.impact-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-navy);
  margin-bottom: 15px;
}

.impact-card p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.65;
  margin-bottom: 0;
}

.impact-card p strong {
  color: var(--brand-cyan);
  font-weight: 600;
}

/* Decorative Bottom Line (Animates on Hover) */
.impact-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), #1e88a8);
  transition: width 0.4s ease;
}

.impact-card:hover .impact-line {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-light {
    font-size: 32px;
  }
}

/* =========================================
   3. IR LIFECYCLE (Dark Theme)
   ========================================= */

.ir-process-section {
  padding: 70px 0;
  background-color: var(--brand-dark);
  position: relative;
  overflow: hidden;
}

/* Typography (Dark) */
.section-title-dark {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-desc-dark {
  font-size: 18px;
  color: var(--text-grey);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Timeline Layout */
.ir-timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 60px;
}

/* The Connecting Line (Circuit Style) */
.ir-timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 50px;
  /* Aligns with icons */
  left: 10%;
  width: 80%;
  height: 2px;
  /* Gradient line using Brand Cyan */
  background: linear-gradient(
    90deg,
    rgba(43, 165, 200, 0.1) 0%,
    var(--brand-cyan) 50%,
    rgba(43, 165, 200, 0.1) 100%
  );
  z-index: 0;
}

/* Timeline Cards */
.timeline-step {
  background: rgba(255, 255, 255, 0.02);
  /* Glass effect */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 25px 30px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  z-index: 1;
}

/* Hover: Lift Card, Add Cyan Glow Border */
.timeline-step:hover {
  transform: translateY(-15px);
  background: rgba(43, 165, 200, 0.05);
  border-color: var(--brand-cyan);
  box-shadow: 0 20px 50px rgba(43, 165, 200, 0.15);
}

/* Watermark Number */
.step-number-bg {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Sora", sans-serif;
  line-height: 1;
  z-index: 0;
  transition: 0.4s;
}

.timeline-step:hover .step-number-bg {
  color: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}

/* Icons - DEFAULT STATE */
.step-icon {
  width: 70px;
  height: 70px;
  background: var(--brand-dark);
  /* Keep Dark Background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: var(--brand-cyan);
  /* Keep Cyan Icon */
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

/* Icons - HOVER STATE (Fix: Keep colors the same, just add glow) */
.timeline-step:hover .step-icon {
  background: var(--brand-dark);
  /* Stays Dark */
  color: var(--brand-cyan);
  /* Stays Cyan */
  border-color: var(--brand-cyan);
  /* Border glows */
  box-shadow: 0 0 20px rgba(43, 165, 200, 0.6);
  /* Glow Effect */
}

/* Card Text */
.timeline-step h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Sora", sans-serif;
  position: relative;
  z-index: 2;
}

.timeline-step p {
  color: var(--text-grey);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Step Dot (Bottom visual cue) */
.step-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 20px auto 0;
  transition: 0.4s;
}

.timeline-step:hover .step-dot {
  background: var(--brand-cyan);
  transform: scale(1.5);
  box-shadow: 0 0 10px var(--brand-cyan);
}

/* Responsive */
@media (max-width: 991px) {
  .ir-timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ir-timeline-wrapper::before {
    display: none;
  }

  .timeline-step {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 30px 20px;
  }

  .step-icon {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }

  .step-number-bg {
    font-size: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* =========================================
   4. CAPABILITIES SECTION (Light Theme)
   ========================================= */

.ir-capabilities-section {
  padding: 70px 0;
  background-color: #ffffff;
  position: relative;
}

/* Capability Cards (Row Layout) */
.cap-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 35px;
  background: #f8fbff;
  /* Very light blue tint */
  border: 1px solid rgba(43, 165, 200, 0.1);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

/* Hover Effect */
.cap-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 27, 51, 0.08);
  border-color: rgba(43, 165, 200, 0.3);
}

/* Icons */
.cap-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--brand-cyan);
  box-shadow: 0 10px 25px rgba(43, 165, 200, 0.15);
  transition: 0.3s;
}

.cap-card:hover .cap-icon {
  background: var(--brand-cyan);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

/* Text */
.cap-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 12px;
}

.cap-content p {
  font-size: 15px;
  color: #5f6b7a;
  line-height: 1.65;
  margin: 0;
}

/* --- Tools Strip (Light Version) --- */
.tools-strip {
  margin-top: 60px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.tools-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #a0aabf;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.tools-grid-light {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #5f6b7a;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.tool-badge i {
  color: var(--brand-cyan);
}

.tool-badge:hover {
  border-color: var(--brand-cyan);
  color: #0b1b33;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(43, 165, 200, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .cap-card {
    flex-direction: column;
    padding: 30px;
  }

  .cap-icon {
    margin-bottom: 15px;
  }
}

/* =========================================
   5. RETAINER SECTION (Dark VIP Card)
   ========================================= */

.ir-retainer-section {
  padding: 80px 0 120px;
  background-color: #ffffff;
  /* Flows naturally from previous section */
}

.retainer-box {
  background: var(--brand-dark);
  /* Deep Black */
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(11, 27, 51, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography */
.retainer-subtitle {
  color: var(--brand-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.retainer-title {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.retainer-desc {
  color: #a0aabf;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 90%;
}

.retainer-desc strong {
  color: #fff;
}

/* List */
.retainer-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.retainer-list li {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.retainer-list li i {
  color: var(--brand-cyan);
}

/* Button (Cyan Glow) */
.cyan-glow-btn {
  background: var(--brand-cyan);
  color: #fff !important;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(43, 165, 200, 0.4);
  transition: 0.3s;
}

.cyan-glow-btn:hover {
  background: #fff;
  color: #0b1b33 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(43, 165, 200, 0.6);
}

/* Background Effect */
.retainer-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(43, 165, 200, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
  .retainer-box {
    padding: 40px 30px;
  }

  .retainer-title {
    font-size: 32px;
  }

  .retainer-desc {
    max-width: 100%;
  }
}

/* ========================================
   DATA BACKUP & RECOVERY - HERO SECTION
   ======================================== */

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* =========================================
   DATA BACKUP HERO SECTION (Final Version)
   ========================================= */

.data-hero-section {
  /* Deep Navy to Dark Blue Gradient */
  background: linear-gradient(135deg, #0a1929 0%, #0f172a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

/* --- BACKGROUND ANIMATION --- */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.element-1 {
  width: 400px;
  height: 400px;
  background: #1e88e5;
  top: -100px;
  left: -100px;
}
.element-2 {
  width: 350px;
  height: 350px;
  background: #00bcd4;
  bottom: -80px;
  right: -80px;
  animation-delay: 5s;
}
.element-3 {
  width: 300px;
  height: 300px;
  background: #42a5f5;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* --- CONTAINER --- */
.data-container {
  position: relative;
  z-index: 2;
}

/* --- LEFT CONTENT STYLING --- */
.hero-content-left {
  padding-right: 20px;
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 136, 229, 0.1);
  border: 1px solid rgba(30, 136, 229, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.hero-badge i {
  color: #00bcd4;
  font-size: 14px;
}
.hero-badge span {
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Title */
.hero-main-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

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

/* Description */
.hero-description {
  font-size: 19px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 30px;
  max-width: 95%;
}

/* --- FEATURE HIGHLIGHT CARDS (New Addition) --- */
.data-feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
  max-width: 500px;
}

.data-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(30, 136, 229, 0.05); /* Subtle Blue Tint */
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(30, 136, 229, 0.1);
  border-left: 3px solid #1e88e5; /* Accent Bar */
  transition: all 0.3s ease;
}

.data-feature-item:hover {
  background: rgba(30, 136, 229, 0.15);
  transform: translateX(10px);
  border-color: rgba(30, 136, 229, 0.4);
}

.df-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
}

.df-icon i {
  color: #fff;
  font-size: 18px;
}

.df-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.df-text p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
}

/* --- BUTTONS --- */
.hero-cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.4);
  color: #fff;
}

/* Secondary Button */
.btn-secondary {
  background: rgba(30, 136, 229, 0.1);
  color: #42a5f5;
  border-color: rgba(30, 136, 229, 0.3);
}
.btn-secondary:hover {
  border-color: #42a5f5;
  color: #fff;
  background: rgba(30, 136, 229, 0.2);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 14px;
}
.trust-item i {
  color: #00bcd4;
}

/* --- RIGHT CONTENT (Stats Card) --- */
.data-visual-right {
  animation: fadeInRight 0.8s ease-out 0.3s backwards;
  display: flex;
  justify-content: flex-end;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.data-stats-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 136, 229, 0.2);
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Card Header */
.card-header-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot-blue {
  width: 8px;
  height: 8px;
  background: #00bcd4;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.8);
  animation: pulse-cyan 2s infinite;
}

@keyframes pulse-cyan {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.status-text {
  color: #00bcd4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.stat-box {
  background: rgba(30, 136, 229, 0.05);
  border: 1px solid rgba(30, 136, 229, 0.15);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s;
}

.stat-box:hover {
  background: rgba(30, 136, 229, 0.1);
  transform: translateY(-3px);
  border-color: rgba(30, 136, 229, 0.3);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.icon-blue {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
}
.icon-cyan {
  background: linear-gradient(135deg, #00bcd4, #26c6da);
}

.stat-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.stat-info p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  text-transform: uppercase;
}

/* Graph Decoration */
.data-graph-decoration {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 50px;
  opacity: 0.5;
}

.graph-bar {
  flex: 1;
  background: linear-gradient(to top, #1e88e5, #00bcd4);
  border-radius: 4px 4px 0 0;
}

.graph-bar.active {
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
  .data-hero-section {
    text-align: left;
    padding: 100px 0;
  }
  .hero-main-title {
    font-size: 42px;
  }
  .hero-content-left {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .data-visual-right {
    justify-content: center;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .data-feature-list {
    width: 100%;
    max-width: 100%;
  }
}
/* ========================================
   DATA BACKUP SERVICES SECTION
   ======================================== */

/* Services Section */
.backup-services-section {
  background: #f8fafc;
  padding: 100px 0;
  position: relative;
}

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

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 136, 229, 0.1);
  color: #1e88e5;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.section-description {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e88e5, #00bcd4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(30, 136, 229, 0.2);
  box-shadow: 0 20px 60px rgba(30, 136, 229, 0.15);
}

/* Card Icon Wrapper */
.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.card-icon i {
  font-size: 32px;
  color: #ffffff;
}

.card-number {
  font-size: 48px;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1;
}

/* Card Content */
.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.3;
}

.card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 24px;
}

/* Card Features */
.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
  padding-left: 0;
}

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

.card-features i {
  color: #00bcd4;
  font-size: 16px;
  flex-shrink: 0;
}

/* Scroll Animation */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.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.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .backup-services-section {
    padding: 80px 0;
  }

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

  .section-title {
    font-size: 32px;
  }

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

  .service-card {
    padding: 32px 24px;
  }

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

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

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

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

  .card-number {
    font-size: 36px;
  }
}

/* ========================================
   HOW IT WORKS / PROCESS SECTION
   ======================================== */

.backup-process-section {
  background: #ffffff;
  padding: 70px 0;
  position: relative;
}

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

/* Section Header - Reuse from services section */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

/* Process Steps */
.process-steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
}

.process-step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Step Visual */
.step-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e88e5 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.step-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(30, 136, 229, 0.25);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 0.6s ease forwards 0.2s;
}

.step-icon i {
  font-size: 36px;
  color: #ffffff;
}

.step-connector {
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #1e88e5, #00bcd4);
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

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

/* Step Content */
.step-content {
  padding-top: 20px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInRight 0.6s ease forwards 0.3s;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.3;
}

.step-description {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 20px;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
  background: #f8fafc;
  padding: 10px 16px;
  border-radius: 8px;
  border-left: 3px solid #00bcd4;
}

.step-features i {
  color: #00bcd4;
  font-size: 14px;
  flex-shrink: 0;
}

/* Recovery Highlight */
.recovery-highlight {
  background: linear-gradient(135deg, #0a1929 0%, #0d2137 100%);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 25, 41, 0.3);
}

.recovery-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.15), transparent);
  border-radius: 50%;
  filter: blur(60px);
}

.recovery-icon {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.recovery-icon i {
  font-size: 48px;
  color: #00bcd4;
}

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

.recovery-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.recovery-description {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
  opacity: 0.9;
  margin-bottom: 32px;
}

.recovery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.recovery-stat {
  text-align: left;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #e5e7eb;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger animations for multiple steps */
.process-step:nth-child(1) .step-number {
  animation-delay: 0.1s;
}
.process-step:nth-child(1) .step-icon {
  animation-delay: 0.2s;
}
.process-step:nth-child(1) .step-content {
  animation-delay: 0.3s;
}

.process-step:nth-child(2) .step-number {
  animation-delay: 0.3s;
}
.process-step:nth-child(2) .step-icon {
  animation-delay: 0.4s;
}
.process-step:nth-child(2) .step-content {
  animation-delay: 0.5s;
}

.process-step:nth-child(3) .step-number {
  animation-delay: 0.5s;
}
.process-step:nth-child(3) .step-icon {
  animation-delay: 0.6s;
}
.process-step:nth-child(3) .step-content {
  animation-delay: 0.7s;
}

.process-step:nth-child(4) .step-number {
  animation-delay: 0.7s;
}
.process-step:nth-child(4) .step-icon {
  animation-delay: 0.8s;
}
.process-step:nth-child(4) .step-content {
  animation-delay: 0.9s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .recovery-highlight {
    padding: 40px;
  }

  .recovery-stats {
    gap: 24px;
  }

  .stat-value {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .backup-process-section {
    padding: 80px 0;
  }

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

  .process-step {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }

  .step-visual {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }

  .step-number {
    font-size: 48px;
    margin-bottom: 0;
  }

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

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

  .step-connector {
    display: none;
  }

  .step-content {
    padding-top: 0;
  }

  .step-title {
    font-size: 24px;
  }

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

  .recovery-highlight {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .recovery-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }

  .recovery-icon i {
    font-size: 36px;
  }

  .recovery-title {
    font-size: 24px;
    text-align: center;
  }

  .recovery-description {
    text-align: center;
    margin-bottom: 24px;
  }

  .recovery-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .recovery-stat {
    text-align: center;
  }

  .stat-value {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .step-visual {
    flex-direction: column;
    align-items: center;
  }

  .step-number {
    font-size: 40px;
  }

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

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

  .recovery-title {
    font-size: 20px;
  }

  .recovery-description {
    font-size: 14px;
  }
}
/* ========================================
   FEATURES & BENEFITS SECTION
   ======================================== */

.backup-features-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 70px 0;
  position: relative;
}

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

/* Section Header - Reuse from previous sections */

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

/* Feature Card */
.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e88e5, #00bcd4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 136, 229, 0.3);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.12);
}

/* Feature Icon Box */
.feature-icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.1),
    rgba(0, 188, 212, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  transform: scale(1.1);
}

.feature-icon-box i {
  font-size: 28px;
  color: #1e88e5;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box i {
  color: #ffffff;
  transform: scale(1.1);
}

/* Feature Content */
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-description {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 16px;
}

/* Feature Badge */
.feature-badge {
  display: inline-block;
  background: rgba(30, 136, 229, 0.1);
  color: #1e88e5;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Benefits Highlight */
.benefits-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  background: linear-gradient(135deg, #0a1929 0%, #0d2137 100%);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.benefits-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.15), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 24px;
  color: #00bcd4;
}

.benefit-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits-highlight {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .backup-features-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .feature-icon-box {
    width: 56px;
    height: 56px;
  }

  .feature-icon-box i {
    font-size: 24px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-description {
    font-size: 13px;
  }

  .benefits-highlight {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .benefit-item {
    flex-direction: row;
    align-items: center;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .benefit-icon i {
    font-size: 20px;
  }

  .benefit-content h4 {
    font-size: 16px;
  }

  .benefit-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .feature-icon-box {
    width: 50px;
    height: 50px;
  }

  .feature-icon-box i {
    font-size: 22px;
  }

  .benefit-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =========================================
   SECURITY RESELLER - HERO (FINAL)
   ========================================= */

.reseller-hero-section {
  position: relative;
  background: linear-gradient(135deg, #0a1929 0%, #0d2137 50%, #0a1929 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0; /* Reduced top/bottom padding slightly to fit tall content */
  overflow: hidden;
}

/* Background Animation */
.hero-ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float-orb 25s ease-in-out infinite;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: #1e88e5;
  top: -150px;
  left: -150px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: #00bcd4;
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}
.orb-3 {
  width: 350px;
  height: 350px;
  background: #42a5f5;
  top: 40%;
  right: 5%;
  animation-delay: 15s;
}
@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* --- FLUID CONTAINER --- */
.reseller-container-fluid {
  width: 92%;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Layout Wrapper */
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 Split */
  gap: 80px;
  align-items: center;
}

/* --- LEFT SIDE --- */
.hero-text-content {
  animation: fadeInLeft 0.8s ease-out;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Badge */
.hero-badge-line {
  margin-bottom: 25px;
}
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 136, 229, 0.15);
  border: 1px solid rgba(30, 136, 229, 0.4);
  padding: 10px 24px;
  border-radius: 50px;
  color: #00bcd4;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* HEADING - 4 Lines Stacked */
.hero-main-heading {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05; /* Tighter line height for stacking */
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

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

/* Description */
.hero-lead-text {
  font-size: 19px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Buttons */
.hero-action-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.35);
  transition: 0.3s;
}
.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 136, 229, 0.5);
  color: #fff;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #00bcd4;
  border: 2px solid rgba(0, 188, 212, 0.4);
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.btn-outline-light:hover {
  background: rgba(0, 188, 212, 0.1);
  border-color: #00bcd4;
  color: #fff;
  transform: translateY(-3px);
}

/* Trust Indicators */
.trust-indicators-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}
.trust-badge i {
  color: #00bcd4;
  font-size: 16px;
}

/* --- RIGHT SIDE: BIGGER STATS CARDS --- */
.hero-stats-stack {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Increased Gap */
  animation: fadeInRight 0.8s ease-out 0.3s backwards;
  max-width: 470px; /* Increased Width */
  width: 100%;
  margin-left: auto;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-card-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  /* INCREASED PADDING TO MAKE THEM BIGGER */
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}

.stat-card-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(30, 136, 229, 0.5);
  transform: scale(1.02); /* Slight grow effect */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon-box {
  width: 70px;
  height: 70px; /* Bigger Icon Box */
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px; /* Bigger Icon Size */
  flex-shrink: 0;
}

.stat-info .stat-number {
  font-size: 42px; /* Bigger Number */
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.stat-info .stat-desc {
  font-size: 15px; /* Bigger Description */
  color: #b8c5d6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  margin-top: 8px;
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 1400px) {
  .hero-main-heading {
    font-size: 64px;
  }
  .hero-content-wrapper {
    gap: 50px;
  }
  .stat-card-item {
    padding: 25px 30px;
  }
}

@media (max-width: 991px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
  }
  .reseller-hero-section {
    padding: 80px 0;
  }
  .hero-main-heading {
    font-size: 48px;
  }
  .hero-stats-stack {
    margin: 0;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-stats-stack {
    gap: 15px;
  }
  .stat-card-item {
    padding: 20px;
  }
  .stat-number {
    font-size: 32px;
  }
}
/* =========================================
   SECURITY SOLUTIONS SECTION
   ========================================= */

/* Section Container */
.reseller-solutions-section {
  background: #f8fafc;
  padding: 100px 0;
  position: relative;
}

/* Section Header */
.solutions-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 136, 229, 0.1);
  color: #1e88e5;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.section-label i {
  font-size: 16px;
}

.section-heading {
  font-size: 52px;
  font-weight: 800;
  color: #0a1929;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-subtext {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Solution Card */
.solution-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top Accent Line */
.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e88e5, #00bcd4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-12px);
  border-color: rgba(30, 136, 229, 0.3);
  box-shadow: 0 24px 60px rgba(30, 136, 229, 0.15);
}

/* Card Header Area */
.card-header-area {
  margin-bottom: 28px;
}

/* Solution Icon */
.solution-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ebf5ff, #e0f2fe);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1e88e5;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

/* Solution Title */
.solution-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a1929;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Solution Description */
.solution-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Vendor Tags Section */
.vendor-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.vendor-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.vendor-tag i {
  color: #00bcd4;
  font-size: 14px;
}

.vendor-tag:hover {
  background: #e0f2fe;
  color: #1e88e5;
  transform: translateX(4px);
}

/* Card Animation on Load */
.solution-card {
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.6s ease forwards;
}

.solution-card:nth-child(1) {
  animation-delay: 0.1s;
}
.solution-card:nth-child(2) {
  animation-delay: 0.2s;
}
.solution-card:nth-child(3) {
  animation-delay: 0.3s;
}
.solution-card:nth-child(4) {
  animation-delay: 0.4s;
}
.solution-card:nth-child(5) {
  animation-delay: 0.5s;
}
.solution-card:nth-child(6) {
  animation-delay: 0.6s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .section-heading {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .reseller-solutions-section {
    padding: 80px 0;
  }

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

  .section-heading {
    font-size: 36px;
  }

  .section-subtext {
    font-size: 16px;
  }

  .solution-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 32px;
  }

  .solution-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .solution-title {
    font-size: 20px;
  }
}

/* =========================================
   VALUE PROPOSITION SECTION
   ========================================= */

/* Section Container */
.reseller-value-section {
  background: linear-gradient(135deg, #0a1929 0%, #0d2137 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Ambient Background Effect */
.reseller-value-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(30, 136, 229, 0.08),
    transparent 70%
  );
  filter: blur(100px);
  z-index: 0;
}

/* Value Header */
.value-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.value-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 188, 212, 0.15);
  color: #00bcd4;
  border: 1px solid rgba(0, 188, 212, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.value-heading {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.value-subtext {
  font-size: 18px;
  line-height: 1.8;
  color: #b8c5d6;
}

/* Value Cards Grid */
.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

/* Value Benefit Card */
.value-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Featured Card (Middle) */
.featured-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(30, 136, 229, 0.3);
  box-shadow: 0 24px 60px rgba(30, 136, 229, 0.15);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Hover Effects */
.value-benefit-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 188, 212, 0.4);
  box-shadow: 0 28px 70px rgba(0, 188, 212, 0.2);
}

.featured-card:hover {
  transform: scale(1.08) translateY(-12px);
}

/* Benefit Icon Box */
.benefit-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(30, 136, 229, 0.15);
  border: 2px solid rgba(30, 136, 229, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #00bcd4;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.value-benefit-card:hover .benefit-icon-box {
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

/* Benefit Heading */
.benefit-heading {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Benefit Text */
.benefit-text {
  font-size: 15px;
  line-height: 1.7;
  color: #b8c5d6;
  margin-bottom: 28px;
}

/* Benefit Features List */
.benefit-features {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 14px;
  padding-left: 0;
}

.benefit-features li:last-child {
  margin-bottom: 0;
}

.benefit-features i {
  color: #00bcd4;
  font-size: 14px;
  flex-shrink: 0;
}

/* CTA Banner at Bottom */
.value-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.15),
    rgba(0, 188, 212, 0.1)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
}

.cta-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.cta-text {
  font-size: 16px;
  color: #b8c5d6;
  margin: 0;
}

/* Card Animation on Load */
.value-benefit-card {
  opacity: 0;
  transform: translateY(30px);
  animation: cardSlideUp 0.6s ease forwards;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .value-cards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured-card {
    transform: scale(1);
  }

  .featured-card:hover {
    transform: translateY(-12px);
  }

  .value-heading {
    font-size: 44px;
  }

  .value-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .btn-primary-gradient {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .reseller-value-section {
    padding: 80px 0;
  }

  .value-heading {
    font-size: 36px;
  }

  .value-subtext {
    font-size: 16px;
  }

  .value-benefit-card {
    padding: 36px 28px;
  }

  .benefit-heading {
    font-size: 22px;
  }

  .value-cta-banner {
    padding: 32px 24px;
  }

  .cta-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .value-heading {
    font-size: 32px;
  }

  .benefit-icon-box {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .cta-heading {
    font-size: 20px;
  }
}

/* =========================================
   SECTION: PROCESS CIRCUIT (Dark & Connected)
   ========================================= */

.process-circuit-section {
  background-color: #0a0e27; /* Deep Navy */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Header */
.circuit-header {
  max-width: 700px;
  margin: 0 auto 80px;
}

.circuit-badge {
  display: inline-block;
  color: #00d2ff;
  border: 1px solid rgba(0, 210, 255, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  background: rgba(0, 210, 255, 0.05);
}

.circuit-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.circuit-desc {
  font-size: 18px;
  color: #b0c4de;
  line-height: 1.6;
}

/* --- The Wrapper & Line --- */
.circuit-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-top: 20px; /* Space for the number to stick up */
}

/* The Glowing Line connecting the steps */
.circuit-line-bg {
  position: absolute;
  top: 45px; /* Aligns with the center of the number circle */
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 210, 255, 0) 0%,
    rgba(0, 210, 255, 0.5) 50%,
    rgba(0, 210, 255, 0) 100%
  );
  z-index: 0;
}

/* --- Individual Node --- */
.process-node {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  margin-bottom: 30px;
  text-align: center;
}

/* The Number Bubble */
.node-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px; /* Spacing between number and card */
  background: #0a0e27; /* Matches section bg to hide line behind it */
  border: 2px solid #00d2ff;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

/* The Glass Card */
.node-card {
  background: linear-gradient(
    180deg,
    rgba(20, 25, 45, 0.6),
    rgba(10, 14, 25, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

/* Hover Effect */
.node-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 210, 255, 0.4);
  background: linear-gradient(
    180deg,
    rgba(20, 25, 45, 0.8),
    rgba(10, 14, 25, 1)
  );
}

/* Icon */
.node-icon {
  font-size: 32px;
  color: #00d2ff;
  margin-bottom: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.node-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.node-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* CTA Area */
.circuit-cta {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 991px) {
  .circuit-line-bg {
    display: none; /* Hide line on tablet/mobile */
  }
  .node-number {
    margin-bottom: 10px;
  }
  .process-node {
    margin-bottom: 40px;
  }
}

/* =========================================
   NOC HERO SECTION - LEFT ALIGNED
   ========================================= */

.noc-hero-section {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.noc-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.noc-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: noc-grid-move 30s linear infinite;
}

@keyframes noc-grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.noc-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.noc-particle-1 {
  top: 20%;
  left: 15%;
  animation: noc-float 15s infinite ease-in-out;
}

.noc-particle-2 {
  top: 60%;
  left: 75%;
  animation: noc-float 12s infinite ease-in-out 2s;
}

.noc-particle-3 {
  top: 80%;
  left: 30%;
  animation: noc-float 18s infinite ease-in-out 4s;
}

@keyframes noc-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(100px, -80px) scale(1.5);
    opacity: 0.8;
  }
}

.noc-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.noc-glow-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #3b82f6, transparent);
}

.noc-glow-2 {
  bottom: -10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6, transparent);
}

/* Container */
.noc-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.noc-hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Content */
.noc-hero-content {
  animation: noc-fade-in-left 0.8s ease-out;
}

@keyframes noc-fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.noc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.noc-hero-badge i {
  color: #3b82f6;
  font-size: 16px;
}

.noc-hero-badge span {
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.noc-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 580px;
}

/* Feature Highlights */
.noc-feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.noc-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(59, 130, 246, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 3px solid #3b82f6;
  transition: all 0.3s ease;
}

.noc-feature-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(5px);
}

.noc-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.noc-feature-icon i {
  color: #ffffff;
  font-size: 20px;
}

.noc-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.noc-feature-text p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

/* CTA Buttons */
.noc-hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

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

.noc-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.noc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  color: #ffffff;
}

.noc-btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.noc-btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

/* Trust Bar */
.noc-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.noc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}

.noc-trust-item i {
  color: #10b981;
  font-size: 16px;
}

.noc-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(59, 130, 246, 0.2);
}

/* Right Visual - Dashboard */
.noc-hero-visual {
  animation: noc-fade-in-right 0.8s ease-out 0.3s backwards;
  margin-top: 0;
}

@keyframes noc-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.noc-dashboard-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Live Status */
.noc-live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.noc-pulse-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  animation: noc-pulse 2s infinite;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

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

.noc-status-text {
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
}

/* Stats Grid */
.noc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.noc-stat-box {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.noc-stat-box:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.noc-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.noc-icon-green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.noc-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.noc-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.noc-icon-orange {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.noc-stat-icon i {
  color: #ffffff;
  font-size: 20px;
}

.noc-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.noc-stat-label {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

/* Activity Graph */
.noc-activity-graph {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 20px;
}

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

.noc-graph-header h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.noc-graph-status {
  font-size: 12px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}

.noc-graph-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
}

.noc-bar {
  flex: 1;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  border-radius: 6px 6px 0 0;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.noc-bar:hover {
  opacity: 1;
}

.noc-bar-active {
  opacity: 1;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

/* Responsive */
@media (max-width: 1200px) {
  .noc-hero-content-wrapper {
    gap: 60px;
  }

  .noc-hero-title {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .noc-hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .noc-hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .noc-hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .noc-hero-container {
    padding: 0 20px;
  }

  .noc-hero-title {
    font-size: 40px;
  }

  .noc-hero-description {
    font-size: 16px;
  }

  .noc-hero-cta {
    flex-direction: column;
  }

  .noc-btn-primary,
  .noc-btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .noc-trust-bar {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .noc-hero-title {
    font-size: 32px;
  }

  .noc-dashboard-card {
    padding: 24px;
  }
}

/* =========================================
   NOC CORE SERVICES SECTION - FIXED
   ========================================= */

.noc-services-section {
  background: #0f1419;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.noc-services-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
  border-radius: 50%;
  filter: blur(100px);
}

.noc-services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.noc-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.noc-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.noc-section-badge i {
  font-size: 14px;
}

.noc-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.noc-section-description {
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8;
}

/* Services Grid */
.noc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Service Card */
.noc-service-card {
  background: rgba(59, 130, 246, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.noc-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #3b82f6,
    #60a5fa,
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.noc-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.06);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

/* Card Shine Effect */
.noc-service-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.noc-service-card:hover .noc-service-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Service Icon - FIXED: ALL SAME COLOR */
.noc-service-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.noc-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  background: rgba(59, 130, 246, 0.4);
}

.noc-service-card:hover .noc-icon-glow {
  opacity: 1;
}

.noc-service-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(96, 165, 250, 0.15)
  );
  border: 2px solid rgba(59, 130, 246, 0.3);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.noc-service-card:hover .noc-service-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-color: #60a5fa;
  transform: scale(1.05);
}

.noc-service-icon i {
  font-size: 36px;
  color: #60a5fa;
  transition: all 0.5s ease;
}

.noc-service-card:hover .noc-service-icon i {
  color: #ffffff;
}

/* Service Content */
.noc-service-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.noc-service-description {
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* Service Features */
.noc-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.noc-service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.noc-service-features i {
  color: #3b82f6;
  font-size: 12px;
  flex-shrink: 0;
}

/* Service Footer */
.noc-service-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.noc-response-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
}

.noc-response-time i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
  .noc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .noc-services-section {
    padding: 80px 0;
  }

  .noc-services-container {
    padding: 0 20px;
  }

  .noc-section-title {
    font-size: 36px;
  }

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

  .noc-service-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .noc-section-title {
    font-size: 28px;
  }

  .noc-section-description {
    font-size: 16px;
  }
}

/* =========================================
   NOC MONITORING COVERAGE SECTION
   ========================================= */

.noc-coverage-section {
  background: linear-gradient(180deg, #0f1419 0%, #1a1f3a 100%);
  padding: 50px 0;
  position: relative;
}

.noc-coverage-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.noc-coverage-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.noc-coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.noc-coverage-badge i {
  font-size: 14px;
}

.noc-coverage-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.noc-coverage-description {
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8;
}

/* Coverage Grid */
.noc-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Coverage Item */
.noc-coverage-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.noc-coverage-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.noc-coverage-item:hover::before {
  transform: scaleX(1);
}

.noc-coverage-item:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

/* Coverage Icon */
.noc-coverage-icon-wrap {
  margin-bottom: 24px;
}

.noc-coverage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(96, 165, 250, 0.15)
  );
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.noc-coverage-item:hover .noc-coverage-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-color: #60a5fa;
  transform: scale(1.05);
}

.noc-coverage-icon i {
  font-size: 32px;
  color: #60a5fa;
  transition: color 0.4s ease;
}

.noc-coverage-item:hover .noc-coverage-icon i {
  color: #ffffff;
}

/* Coverage Content */
.noc-coverage-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.noc-coverage-item > p {
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* Coverage List */
.noc-coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.noc-coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.noc-coverage-list i {
  color: #3b82f6;
  font-size: 12px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .noc-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .noc-coverage-section {
    padding: 80px 0;
  }

  .noc-coverage-container {
    padding: 0 20px;
  }

  .noc-coverage-title {
    font-size: 36px;
  }

  .noc-coverage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .noc-coverage-item {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .noc-coverage-title {
    font-size: 28px;
  }

  .noc-coverage-description {
    font-size: 16px;
  }
}

/* =========================================
   NOC BENEFITS SECTION
   ========================================= */

.noc-benefits-section {
  background: #0f1419;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.noc-benefits-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent);
  border-radius: 50%;
  filter: blur(100px);
}

.noc-benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.noc-benefits-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.noc-benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.noc-benefits-badge i {
  font-size: 14px;
}

.noc-benefits-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.noc-benefits-description {
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8;
}

/* Benefits Grid */
.noc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Benefit Card - Horizontal Layout */
.noc-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 18px;
  border-left: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.noc-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.noc-benefit-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.noc-benefit-card:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  border-left-color: transparent;
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

/* Icon Wrapper */
.noc-benefit-icon-wrap {
  flex-shrink: 0;
}

/* Benefit Icon */
.noc-benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(96, 165, 250, 0.15)
  );
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.noc-benefit-card:hover .noc-benefit-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-color: #60a5fa;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
}

.noc-benefit-icon i {
  font-size: 26px;
  color: #60a5fa;
  transition: color 0.4s ease;
}

.noc-benefit-card:hover .noc-benefit-icon i {
  color: #ffffff;
}

/* Benefit Content */
.noc-benefit-content {
  flex: 1;
}

.noc-benefit-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

/* Responsive */
@media (max-width: 1200px) {
  .noc-benefits-grid {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .noc-benefits-section {
    padding: 80px 0;
  }

  .noc-benefits-title {
    font-size: 40px;
  }

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

@media (max-width: 768px) {
  .noc-benefits-container {
    padding: 0 20px;
  }

  .noc-benefits-title {
    font-size: 36px;
  }

  .noc-benefit-card {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  .noc-benefit-icon-wrap {
    margin: 0 auto;
  }

  .noc-benefit-card:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .noc-benefits-section {
    padding: 70px 0;
  }

  .noc-benefits-title {
    font-size: 28px;
  }

  .noc-benefits-description {
    font-size: 16px;
  }

  .noc-benefit-card {
    padding: 24px 20px;
  }
}

/* =========================================
   THREAT INTEL THEME
   ========================================= */

/* 1. Override the Gradient Text for this specific section */
.threat-intel-theme .text-gradient-indigo {
  background: linear-gradient(
    90deg,
    #6366f1 0%,
    #a855f7 100%
  ); /* Indigo to Purple */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

/* 2. Badge Color Override */
.threat-intel-theme .cyber-badge {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.5);
  color: #818cf8; /* Light Indigo */
}

.threat-intel-theme .dot-pulse {
  background-color: #818cf8;
  box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.7);
  animation: pulse-indigo 2s infinite;
}

@keyframes pulse-indigo {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(129, 140, 248, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
  }
}

/* 3. Button Gradient Override */
.threat-intel-theme .cyber-btn.primary-btn {
  background: linear-gradient(90deg, #4338ca 0%, #6366f1 100%);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.threat-intel-theme .cyber-btn.primary-btn:hover {
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
}

/* 4. Tech Line Color */
.threat-intel-theme .tech-line {
  background: linear-gradient(90deg, #6366f1, transparent);
}

/* 5. Border Left Color */
.threat-intel-theme .hero-desc {
  border-left-color: #6366f1;
}
.threat-intel-theme .video-overlay {
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.7) 0%,
    rgba(2, 6, 23, 0.4) 100%
  ) !important;
}

.vapt-hero-section .video-overlay {
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.3) 0%,
    rgba(2, 6, 23, 0.4) 100%
  ) !important;
}

/* =========================================
   ESAT HERO 
   ========================================= */

.esat-hero-section {
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

/* --- ANIMATED BACKGROUND --- */
.esat-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.esat-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Cyan Grid Lines */
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: esat-grid-move 30s linear infinite;
}

@keyframes esat-grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

/* Particles (Cyan/Blue) */
.esat-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(6, 182, 212, 0.6); /* Cyan */
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}

.esat-particle-1 {
  top: 20%;
  left: 15%;
  animation: esat-float 15s infinite ease-in-out;
}
.esat-particle-2 {
  top: 60%;
  left: 75%;
  animation: esat-float 12s infinite ease-in-out 2s;
}
.esat-particle-3 {
  top: 80%;
  left: 30%;
  animation: esat-float 18s infinite ease-in-out 4s;
}

@keyframes esat-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(100px, -80px) scale(1.5);
    opacity: 0.8;
  }
}

/* Glow Orbs (Blue/Cyan) */
.esat-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.esat-glow-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #3b82f6, transparent); /* Royal Blue */
}

.esat-glow-2 {
  bottom: -10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06b6d4, transparent); /* Cyan */
}

/* --- CONTAINER & LAYOUT --- */
.esat-hero-container {
  position: relative;
  z-index: 2;
}

/* --- LEFT CONTENT --- */
.esat-hero-content {
  animation: esat-fade-in-left 0.8s ease-out;
}

@keyframes esat-fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Badge (Blue Tint) */
.esat-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.esat-hero-badge i {
  color: #3b82f6;
  font-size: 16px;
}
.esat-hero-badge span {
  color: #93c5fd; /* Light Blue */
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Gradient Text: Blue to Cyan (Matches Logo) */
.esat-gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.esat-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 580px;
}

/* Features List */
.esat-feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.esat-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(59, 130, 246, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 3px solid #3b82f6;
  transition: all 0.3s ease;
}

.esat-feature-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(10px);
}

.esat-feature-icon {
  width: 48px;
  height: 48px;
  /* Gradient Icon Box */
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.esat-feature-icon i {
  color: #fff;
  font-size: 20px;
}

.esat-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.esat-feature-text p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

/* Buttons */
.esat-hero-cta {
  display: flex;
  gap: 16px;
}

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

/* Primary: Cloudscale Gradient */
.esat-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.esat-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  color: #fff;
}

/* Secondary: Blue Outline */
.esat-btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.esat-btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  color: #fff;
  transform: translateY(-3px);
}

/* --- RIGHT VISUAL (DASHBOARD) --- */
.esat-hero-visual {
  animation: esat-fade-in-right 0.8s ease-out 0.3s backwards;
}

@keyframes esat-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.esat-dashboard-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.esat-dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
}

/* Live Status */
.esat-live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.esat-pulse-dot {
  width: 10px;
  height: 10px;
  background: #06b6d4; /* Cyan for "Digital Life" */
  border-radius: 50%;
  animation: esat-pulse 2s infinite;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}

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

.esat-status-text {
  color: #06b6d4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Steps List */
.esat-steps-container {
  margin-bottom: 30px;
}

.esat-step-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.esat-step-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.esat-step-num {
  font-family: monospace;
  opacity: 0.5;
}

/* Active Step (Success - Blue/Cyan) */
.esat-step-item.active-success {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.4);
  color: #22d3ee;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

/* Stats Grid */
.esat-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.esat-stat-box {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  transition: 0.3s;
}

.esat-stat-box:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

.esat-stat-number {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.esat-stat-label {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .esat-hero-section {
    text-align: left;
    padding: 100px 0;
  }
  .esat-hero-title {
    font-size: 42px;
  }
  .esat-hero-cta {
    flex-direction: column;
  }
  .esat-hero-visual {
    margin-top: 50px;
  }
}

/* ===== DARK MEGA MENU (CLEAN & ALIGNED) ===== */
.mega-menu-container {
  position: static !important;
}

.clean-mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 95vw; /* Slightly wider to prevent cramping */
  max-width: 1250px;
  transform: translateX(-50%) translateY(20px);
  background: #222222; /* Pure dark grey background */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border for definition */
  margin-top: 5px;
}

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

/* --- COLUMN ALIGNMENT --- */
.mega-menu-category {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.col-lg-3:last-child .mega-menu-category {
  border-right: none;
  padding-right: 0;
}

/* --- HEADINGS --- */
.mega-menu-category-title {
  font-size: 13px;
  font-weight: 700;
  color: #888888; /* Muted grey label */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  padding-left: 10px; /* Aligns with the list items below */
  display: block;
}

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

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

.mega-menu-list li a {
  display: flex;
  align-items: center;
  gap: 15px; /* Consistent gap between icon and text */
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* --- ICON BOXES (The Square container for icons) --- */
.menu-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;

  /* Default Color (Network - Blue) */
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

/* Specific Colors based on classes added in HTML */
.menu-icon-box.cyber {
  background: rgba(139, 92, 246, 0.15); /* Purple */
  color: #a78bfa;
}

.menu-icon-box.cloud {
  background: rgba(245, 158, 11, 0.15); /* Orange */
  color: #fbbf24;
}

.menu-icon-box.staff {
  background: rgba(16, 185, 129, 0.15); /* Green */
  color: #34d399;
}

/* --- TEXT STYLING --- */
.mega-menu-list li a span {
  font-size: 14.5px;
  font-weight: 500;
  color: #e5e5e5; /* Bright white text */
  transition: color 0.2s ease;
}

/* --- HOVER EFFECTS --- */
.mega-menu-list li a:hover {
  background: rgba(255, 255, 255, 0.05); /* Subtle highlight */
}

.mega-menu-list li a:hover span {
  color: #ffffff;
}

.mega-menu-list li a:hover .menu-icon-box {
  transform: scale(1.1); /* Pop effect */
  background: #ffffff; /* Icon box turns white */
}

/* Icon colors on hover */
.mega-menu-list li a:hover .menu-icon-box {
  color: #3b82f6;
} /* Network Blue */
.mega-menu-list li a:hover .menu-icon-box.cyber {
  color: #8b5cf6;
} /* Cyber Purple */
.mega-menu-list li a:hover .menu-icon-box.cloud {
  color: #f59e0b;
} /* Cloud Orange */
.mega-menu-list li a:hover .menu-icon-box.staff {
  color: #10b981;
} /* Staff Green */

/* --- RESPONSIVE --- */
@media (max-width: 1199px) {
  .clean-mega-menu {
    width: 100%;
    left: 0;
    transform: none;
    max-width: none;
  }
}

/* ===============================================
   CYBERSECURITY SOLUTIONS 
   =============================================== */

.cyber-features-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  overflow: hidden;
}

/* Section Header */
.section-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 50px;
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse-glow-light 2s ease-in-out infinite;
}

@keyframes pulse-glow-light {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
  }
}

.section-title-cs {
  font-size: 48px;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Feature Card */
.feature-card {
  position: relative;
  padding: 40px 30px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.03) 0%,
    rgba(0, 102, 204, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 150, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.15);
}

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

/* Feature Icon */
.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.1) 0%,
    rgba(0, 102, 204, 0.1) 100%
  );
  border: 2px solid rgba(0, 150, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #0096ff;
  transition: all 0.4s ease;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(0, 150, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.25);
}

.feature-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(0, 150, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-glow {
  opacity: 1;
  animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Feature Content */
.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Feature Benefits */
.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.feature-benefits li {
  font-size: 14px;
  color: #444444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-benefits li i {
  color: #0096ff;
  font-size: 12px;
}

/* Background Effects */
.cyber-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 150, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #0096ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.6);
  animation: float-particle 8s ease-in-out infinite;
}

.floating-particle.p1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-particle.p2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-particle.p3 {
  bottom: 30%;
  left: 80%;
  animation-delay: 4s;
}

@keyframes float-particle {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(30px, -30px);
    opacity: 1;
  }
}

/* ===============================================
   WHY CHOOSE US SECTION
   =============================================== */

.why-choose-section {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(180deg, #000000 0%, #0f0f0f 100%);
  overflow: hidden;
}

/* Why Choose Content */
.why-choose-content {
  position: relative;
  z-index: 2;
}

.section-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 50px;
}

/* Why Choose List */
.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.why-item:hover {
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateX(10px);
}

.why-item:hover::before {
  left: 100%;
}

.why-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1) 0%,
    rgba(0, 153, 255, 0.1) 100%
  );
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00ffff;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.why-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Stats Wrapper */
.stats-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 40px;
}

/* Stat Cards */
.stat-card {
  position: relative;
  padding: 35px 25px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(20, 20, 20, 0.7) 100%
  );
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.5s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.stat-card:hover::before {
  width: 200px;
  height: 200px;
}

.stat-icon {
  font-size: 40px;
  color: #00ffff;
  margin-bottom: 15px;
  opacity: 0.8;
}

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

.stat-number {
  color: #ffffff !important; /* Forces White Text */
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); /* Adds a glow so it pops */
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-left: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-top: 10px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover .stat-glow {
  opacity: 1;
}

/* Center Badge */
.stats-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(10, 10, 10, 0.95) 100%
  );
  border: 3px solid rgba(0, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 10px 60px rgba(0, 255, 255, 0.5);
  }
}

.badge-icon {
  font-size: 40px;
  color: #00ffff;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tech Line Decoration */
.tech-line {
  position: absolute;
  width: 400px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.5),
    transparent
  );
  z-index: 0;
}

.tech-line.top-right {
  top: 100px;
  right: 0;
  transform: rotate(-45deg);
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.counting {
  animation: countUp 0.8s ease-out;
}

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

@media (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 40px;
  }

  .why-choose-content {
    margin-bottom: 60px;
  }

  .stats-wrapper {
    padding: 20px;
  }

  .stats-center-badge {
    width: 120px;
    height: 120px;
  }

  .badge-icon {
    font-size: 32px;
  }

  .badge-text {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .cyber-features-section,
  .why-choose-section {
    padding: 80px 0;
  }

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

  .section-title {
    font-size: 32px;
  }

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

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

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

  .why-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .why-icon {
    margin-bottom: 15px;
  }

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

  .stats-center-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-suffix {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
  }

  .feature-icon-wrapper,
  .feature-icon {
    width: 60px;
    height: 60px;
  }

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

  .feature-title {
    font-size: 20px;
  }

  .stat-card {
    padding: 25px 15px;
  }
}
/* ===============================================
   SECURITY PROCESS SECTION - CLEAN & SIMPLE
   =============================================== */

/* Section Background */
.security-process-section {
  background-color: #ffffff;
  padding: 100px 0;
}

/* Unique Card Style */
.cyber-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cyber-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 150, 255, 0.1);
  border-color: #0096ff;
}

/* Unique Header Styles */
.cyber-number {
  font-size: 40px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05); /* Subtle grey number */
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.cyber-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 150, 255, 0.1);
  color: #0096ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
}

/* Text Styles (Forced Dark) */
.cyber-title {
  color: #1a1a1a !important; /* Force Black */
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cyber-desc {
  color: #555555 !important; /* Force Dark Grey */
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* List Styles */
.cyber-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cyber-list li {
  color: #4b5563 !important; /* Dark Grey List Text */
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
}

.cyber-list li::before {
  content: "\f00c"; /* FontAwesome Check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0096ff;
  margin-right: 10px;
  font-size: 12px;
}

.cyber-list li:last-child {
  border-bottom: none;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* Process Card */
.process-card {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.process-card:hover {
  border-color: #0096ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 150, 255, 0.12);
}

/* Process Number */
.process-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 150, 255, 0.08);
  line-height: 1;
}

/* Process Icon */
.process-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.1) 0%,
    rgba(0, 102, 204, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.process-icon i {
  font-size: 28px;
  color: #0096ff;
}

.process-card:hover .process-icon {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
}

.process-card:hover .process-icon i {
  color: #ffffff;
}

/* Process Content */

/* ===============================================
   NETWORK PAGE ONLY (Unique Classes)
   =============================================== */

/* Main Section Background */
.network-process-section {
  background: linear-gradient(135deg, #020a1c 0%, #0d1b2a 100%);
  padding: 100px 0;
  color: #ffffff;
}

/* Unique Heading Styles */
.net-badge {
  display: inline-block;
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.net-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff !important; /* Force White */
  line-height: 1.2;
  margin-bottom: 20px;
}

.net-highlight {
  background: linear-gradient(90deg, #00f0ff, #0096ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.net-desc {
  font-size: 18px;
  color: #a0aab5 !important; /* Force Light Grey */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Unique Card Styles */
.net-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.net-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: #00f0ff;
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.net-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.net-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.net-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00f0ff, #0096ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
}

.net-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff !important; /* Force White */
  margin-bottom: 15px;
}

.net-card p {
  font-size: 15px;
  color: #b0b8c1 !important; /* Force Grey */
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .net-title {
    font-size: 32px;
  }
  .net-card {
    padding: 30px 20px;
  }
}
/* ===============================================
   TECHNOLOGY PARTNERS SECTION 
   =============================================== */

.tech-partners-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

/* Partner Categories */
.partner-categories {
  display: grid;
  gap: 25px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Partner Category */
.partner-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.partner-category:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 200, 255, 0.3);
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-header i {
  font-size: 28px;
  color: #00ccff;
}

.category-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Partner Logos */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.partner-logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 200, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 50px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
  font-size: 40px;
  font-weight: 800;
  color: #00ccff;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }

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

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

@media (max-width: 767px) {
  .security-process-section,
  .tech-partners-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }

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

  .process-card {
    padding: 28px 22px;
  }

  .process-number {
    font-size: 36px;
    top: 20px;
    right: 20px;
  }

  .partner-category {
    padding: 24px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-value {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 26px;
  }

  .process-icon {
    width: 55px;
    height: 55px;
  }

  .process-icon i {
    font-size: 24px;
  }

  .process-title {
    font-size: 20px;
  }

  .category-header i {
    font-size: 24px;
  }

  .category-header h3 {
    font-size: 18px;
  }

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

/* ===============================================
   DATA CENTER SERVICES - CLEAN STYLES (UPDATED)
   =============================================== */

/* Common Section Styles */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 30px;
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge.dark {
  background: rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.3);
  color: #00ccff;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.white {
  color: #ffffff;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-desc {
  font-size: 17px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.section-desc.white {
  color: rgba(255, 255, 255, 0.95);
}

/* ===============================================
   WHAT WE OFFER SECTION (High Contrast Force Fix)
   =============================================== */

.what-we-offer-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.service-card {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #0096ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 150, 255, 0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.1) 0%,
    rgba(0, 102, 204, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 32px;
  color: #0096ff;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
}

.service-card:hover .service-icon i {
  color: #ffffff;
}

/* Force Text Colors to be visible with !important */
.service-title {
  font-size: 24px;
  font-weight: 800;
  color: #000000 !important; /* Force Black */
  margin-bottom: 14px;
}

.service-desc {
  font-size: 16px;
  color: #333333 !important; /* Force Dark Grey */
  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 500;
}

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

.service-features li {
  font-size: 15px;
  color: #222222 !important; /* Force Dark Text */
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.service-features li i {
  color: #0096ff;
  font-size: 14px;
}

/* ===============================================
   KEY FEATURES SECTION (RENAMED TO DC- CLASSES)
   =============================================== */

/* Renamed to match your new HTML to prevent conflicts */
.dc-features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.dc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.dc-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 35px 28px;
  transition: all 0.3s ease;
}

.dc-feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 200, 255, 0.2);
}

.dc-feature-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.1) 0%,
    rgba(0, 150, 255, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.dc-feature-icon i {
  font-size: 28px;
  color: #00ccff;
}

/* Specific Header Classes for this section */
.dc-section-header {
  margin-bottom: 60px;
}

.dc-section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 30px;
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dc-section-badge.dark {
  background: rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.3);
  color: #00ccff;
}

.dc-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.dc-section-title.white {
  color: #ffffff;
}

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

.dc-section-desc {
  font-size: 17px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.dc-section-desc.white {
  color: rgba(255, 255, 255, 0.95);
}

.dc-feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.dc-feature-desc {
  font-size: 15px;
  color: #e0e0e0 !important;
  line-height: 1.8;
  margin: 0;
  opacity: 1;
  font-weight: 400;
}

/* ===============================================
   SUPPORT & MONITORING SECTION (Standard)
   =============================================== */

.support-monitoring-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.support-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.support-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.support-item:hover {
  border-color: #0096ff;
  box-shadow: 0 8px 25px rgba(0, 150, 255, 0.1);
}

.support-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.1) 0%,
    rgba(0, 102, 204, 0.1) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon i {
  font-size: 24px;
  color: #0096ff;
}

.support-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.support-text p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

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

.stat-box {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.stat-box:hover {
  border-color: #0096ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 150, 255, 0.1);
}

.stat-box .stat-icon {
  font-size: 32px;
  color: #0096ff;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin: 10px 0;
}

.stat-unit {
  font-size: 18px;
  font-weight: 700;
  color: #0096ff;
  margin-bottom: 12px;
  min-height: 22px;
}

.stat-label {
  font-size: 13px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* 1. Force the Number  */
.support-stats .stat-box .stat-number {
  color: #1a1a1a !important;
  text-shadow: none !important;
}

/* 2. label  */
.support-stats .stat-box .stat-label {
  color: #666666 !important;
}

/* 3.  unit  */
.support-stats .stat-box .stat-unit {
  color: #0096ff !important;
  text-shadow: none !important;
}

/* ===============================================
   WHY CLOUDSCALE SECTION (RENAMED TO DC- CLASSES)
   =============================================== */

/* Renamed to match your new HTML */
.dc-why-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.dc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.dc-why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.dc-why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 200, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 200, 255, 0.2);
}

.dc-why-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.dc-why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.1) 0%,
    rgba(0, 150, 255, 0.1) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dc-why-icon i {
  font-size: 26px;
  color: #00ccff;
}

.dc-why-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dc-why-desc {
  font-size: 15px;
  color: #e0e0e0 !important;
  line-height: 1.8;
  margin: 0;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn.primary {
  background: #ffffff;
  color: #0066cc;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: #0066cc;
}

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

@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 991px) {
  .section-title,
  .dc-section-title {
    font-size: 36px;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 767px) {
  .what-we-offer-section,
  .dc-features-section,
  .support-monitoring-section,
  .dc-why-section {
    padding: 70px 0;
  }

  .section-title,
  .dc-section-title {
    font-size: 30px;
  }

  .section-desc,
  .dc-section-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .services-grid,
  .dc-features-grid,
  .dc-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .dc-feature-card,
  .dc-why-card {
    padding: 28px 22px;
  }

  .support-item {
    flex-direction: column;
    text-align: center;
  }

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

  .final-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .section-title,
  .dc-section-title {
    font-size: 26px;
  }

  .service-icon,
  .dc-feature-icon,
  .dc-why-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i,
  .dc-feature-icon i,
  .dc-why-icon i {
    font-size: 26px;
  }

  .service-title,
  .dc-feature-title,
  .dc-why-title {
    font-size: 20px;
  }

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

  .stat-number {
    font-size: 30px;
  }

  .dc-why-number {
    font-size: 32px;
  }

  .cta-content h3 {
    font-size: 24px;
  }
}

/* ===============================================
   MICROSOFT SERVICES - SERVICES SECTION
   =============================================== */

.ms-services-section {
  padding: 70px 0;
  background: #f8f8f8;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 120, 212, 0.1);
  border: 1px solid rgba(0, 120, 212, 0.3);
  border-radius: 30px;
  color: #0078d4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 17px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Services Accordion */
.ms-services-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ms-service-item {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ms-service-item:hover {
  border-color: #0078d4;
  box-shadow: 0 8px 30px rgba(0, 120, 212, 0.1);
}

.ms-service-item.active {
  border-color: #0078d4;
  box-shadow: 0 8px 30px rgba(0, 120, 212, 0.15);
}

/* Service Header */
.ms-service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  cursor: pointer;
  user-select: none;
}

.ms-service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.1) 0%,
    rgba(80, 230, 255, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ms-service-icon i {
  font-size: 28px;
  color: #0078d4;
}

.ms-service-item.active .ms-service-icon {
  background: linear-gradient(135deg, #0078d4 0%, #50e6ff 100%);
}

.ms-service-item.active .ms-service-icon i {
  color: #ffffff;
}

.ms-service-info {
  flex: 1;
}

.ms-service-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.ms-service-subtitle {
  font-size: 14px;
  color: #0078d4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.ms-service-toggle {
  width: 40px;
  height: 40px;
  background: rgba(0, 120, 212, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ms-service-toggle i {
  font-size: 16px;
  color: #0078d4;
  transition: transform 0.3s ease;
}

.ms-service-item.active .ms-service-toggle {
  background: #0078d4;
}

.ms-service-item.active .ms-service-toggle i {
  color: #ffffff;
  transform: rotate(180deg);
}

.ms-service-toggle:hover {
  background: #0078d4;
}

.ms-service-toggle:hover i {
  color: #ffffff;
}

/* Service Content */
.ms-service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ms-service-item.active .ms-service-content {
  max-height: 1000px;
}

.ms-service-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin: 0 32px 24px 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

/* Capabilities Grid */
.ms-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 0 32px 32px 32px;
}

.ms-capability {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333333;
  padding: 12px;
  background: #f8f8f8;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.ms-capability:hover {
  background: rgba(0, 120, 212, 0.05);
}

.ms-capability i {
  color: #0078d4;
  font-size: 16px;
  flex-shrink: 0;
}

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

@media (max-width: 991px) {
  .ms-hero-title {
    font-size: 44px;
  }

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

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

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

  .ms-hero-title {
    font-size: 34px;
  }

  .ms-hero-desc {
    font-size: 15px;
  }

  .ms-hero-btns {
    flex-direction: column;
  }

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

  .ms-services-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .ms-service-header {
    padding: 20px;
    gap: 16px;
  }

  .ms-service-icon {
    width: 50px;
    height: 50px;
  }

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

  .ms-service-title {
    font-size: 18px;
  }

  .ms-service-subtitle {
    font-size: 12px;
  }

  .ms-service-desc {
    margin: 0 20px 20px 20px;
    padding-bottom: 20px;
  }

  .ms-capabilities-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 20px 20px;
  }
}

@media (max-width: 575px) {
  .ms-hero-title {
    font-size: 28px;
  }

  .ms-hero-badge {
    font-size: 11px;
    padding: 8px 16px;
  }

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

  .ms-service-header {
    flex-wrap: wrap;
  }

  .ms-service-info {
    order: 2;
    flex: 1 1 100%;
  }

  .ms-service-toggle {
    order: 3;
  }

  .ms-capability {
    font-size: 14px;
  }
}

/* ===============================================
   SPECIALIZED SERVICES SECTION
   =============================================== */

.ms-specialized-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  position: relative;
}

.section-badge.dark {
  background: rgba(80, 230, 255, 0.1);
  border-color: rgba(80, 230, 255, 0.3);
  color: #50e6ff;
}

.section-title.white {
  color: #ffffff;
}

.section-desc.white {
  color: rgba(255, 255, 255, 0.85);
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #50e6ff 0%, #0078d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.specialized-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.specialized-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(80, 230, 255, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.specialized-card:hover::before {
  left: 100%;
}

.specialized-card:hover {
  border-color: rgba(80, 230, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(80, 230, 255, 0.1);
}

.specialized-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.2) 0%,
    rgba(80, 230, 255, 0.2) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.specialized-icon i {
  font-size: 32px;
  color: #50e6ff;
}

.specialized-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.specialized-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 28px;
}

.specialized-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.specialized-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.specialized-features li i {
  color: #50e6ff;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.specialized-features li div {
  flex: 1;
}

.specialized-features strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.specialized-features span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===============================================
   WHY CHOOSE US SECTION
   =============================================== */

.ms-why-choose-section {
  padding: 100px 0;
  background: #ffffff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.why-choose-card {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  border-color: #0078d4;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 120, 212, 0.12);
}

.why-choose-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 120, 212, 0.08);
  line-height: 1;
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.1) 0%,
    rgba(80, 230, 255, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.why-choose-icon i {
  font-size: 28px;
  color: #0078d4;
}

.why-choose-card:hover .why-choose-icon {
  background: linear-gradient(135deg, #0078d4 0%, #50e6ff 100%);
}

.why-choose-card:hover .why-choose-icon i {
  color: #ffffff;
}

.why-choose-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.why-choose-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Trust Indicators */
.ms-trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding-top: 60px;
  border-top: 2px solid #e8e8e8;
}

.trust-indicator-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.trust-indicator-item:hover {
  background: rgba(0, 120, 212, 0.05);
  transform: translateY(-3px);
}

.trust-indicator-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0078d4 0%, #50e6ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-indicator-icon i {
  font-size: 24px;
  color: #ffffff;
}

.trust-indicator-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.trust-indicator-content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 1199px) {
  .specialized-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 991px) {
  .specialized-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .ms-trust-indicators {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ms-specialized-section,
  .ms-why-choose-section {
    padding: 70px 0;
  }

  .specialized-card {
    padding: 30px 24px;
  }

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

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

  .specialized-title {
    font-size: 20px;
  }

  .specialized-features li {
    gap: 12px;
  }

  .specialized-features strong {
    font-size: 14px;
  }

  .specialized-features span {
    font-size: 13px;
  }

  .why-choose-card {
    padding: 30px 24px;
  }

  .why-choose-number {
    font-size: 36px;
    top: 24px;
    right: 24px;
  }

  .why-choose-icon {
    width: 56px;
    height: 56px;
  }

  .why-choose-icon i {
    font-size: 24px;
  }

  .why-choose-title {
    font-size: 20px;
  }

  .trust-indicator-item {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }

  .trust-indicator-icon {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .specialized-title {
    font-size: 18px;
  }

  .why-choose-title {
    font-size: 18px;
  }

  .trust-indicator-content h4 {
    font-size: 16px;
  }
}

/*================================================
  PROJECT MANAGEMENT PAGE - SECTIONS 1 & 2
  Clean, Professional, Process-Focused Design
================================================*/

/*===== ROOT VARIABLES =====*/
:root {
  /* Colors */
  --pm-primary: #0096ff;
  --pm-primary-dark: #0066cc;
  --pm-accent: #28a745;
  --pm-dark: #1a1a1a;
  --pm-darker: #000000;
  --pm-light: #ffffff;
  --pm-light-bg: #f8f9fa;
  --pm-gray: #6c757d;
  --pm-gray-light: #e9ecef;

  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 40px;

  /* Typography */
  --font-family: "Inter", sans-serif;
  --heading-size: 42px;
  --heading-size-mobile: 28px;
  --body-size: 16px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 24px rgba(0, 150, 255, 0.15);

  /* Transitions */
  --transition: 0.3s ease;
}

/*===== GLOBAL SECTION STYLES =====*/
.pm-what-we-offer,
.pm-project-lifecycle {
  padding: var(--section-padding);
  font-family: var(--font-family);
}

/* Only style containers within PM sections */
.pm-what-we-offer .container,
.pm-project-lifecycle .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*===== SECTION HEADER =====*/
.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: var(--heading-size);
  font-weight: 700;
  color: var(--pm-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--pm-gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--heading-size-mobile);
  }

  .section-subtitle {
    font-size: 16px;
  }
}

/*================================================
  SECTION 1: WHAT WE OFFER (Light Background)
================================================*/
.pm-what-we-offer {
  background-color: var(--pm-light);
  position: relative;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  background: var(--pm-light);
  border: 1px solid var(--pm-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pm-primary);
}

/* Service Icon */
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--pm-primary) 0%,
    var(--pm-primary-dark) 100%
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-icon i {
  font-size: 32px;
  color: var(--pm-light);
}

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

/* Service Title */
.service-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--pm-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Service Description */
.service-description {
  font-size: var(--body-size);
  color: var(--pm-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--pm-dark);
  border-bottom: 1px solid var(--pm-gray-light);
  transition: all var(--transition);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--pm-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.service-card:hover .service-features li {
  padding-left: 8px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

/*================================================
  SECTION 2: PROJECT LIFECYCLE (Dark Background)
================================================*/
.pm-project-lifecycle {
  background: linear-gradient(180deg, var(--pm-dark) 0%, var(--pm-darker) 100%);
  position: relative;
}

.pm-project-lifecycle .section-title {
  color: var(--pm-light);
}

.pm-project-lifecycle .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Lifecycle Timeline */
.lifecycle-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Timeline Connector Line */
.lifecycle-timeline::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 90px;
  bottom: 90px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--pm-primary) 0%,
    var(--pm-primary-dark) 50%,
    var(--pm-primary) 100%
  );
  opacity: 0.3;
}

/* Lifecycle Phase */
.lifecycle-phase {
  display: flex;
  gap: 30px;
  position: relative;
}

/* Phase Number Badge */
.phase-number {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--pm-primary) 0%,
    var(--pm-primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--pm-light);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.3);
  transition: all var(--transition);
}

.lifecycle-phase:hover .phase-number {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 150, 255, 0.5);
}

/* Phase Content */
.phase-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all var(--transition);
}

.lifecycle-phase:hover .phase-content {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--pm-primary);
  transform: translateX(10px);
}

/* Phase Title */
.phase-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--pm-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Phase Description */
.phase-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Phase Items List */
.phase-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.phase-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
}

.phase-items li i {
  color: var(--pm-primary);
  font-size: 12px;
  flex-shrink: 0;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .lifecycle-timeline::before {
    left: 35px;
  }

  .phase-number {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }

  .phase-items {
    grid-template-columns: 1fr;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .lifecycle-timeline::before {
    left: 25px;
    top: 70px;
    bottom: 70px;
  }

  .lifecycle-phase {
    flex-direction: column;
    gap: 20px;
  }

  .phase-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .phase-content {
    padding: 25px;
  }

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

  .phase-items {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/*===== UTILITY CLASSES =====*/
.text-center {
  text-align: center;
}

/*===== ACCESSIBILITY =====*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*===== PRINT STYLES =====*/
@media print {
  .service-card,
  .phase-content {
    break-inside: avoid;
  }
}

/*================================================
  PROJECT MANAGEMENT PAGE - SECTIONS 3, 4 & 5
================================================*/

/*===== ROOT VARIABLES  =====*/
:root {
  --pm-primary: #0096ff;
  --pm-primary-dark: #0066cc;
  --pm-accent: #28a745;
  --pm-dark: #1a1a1a;
  --pm-darker: #000000;
  --pm-light: #ffffff;
  --pm-light-bg: #f8f9fa;
  --pm-gray: #6c757d;
  --pm-gray-light: #e9ecef;
  --section-padding: 80px 0;
  --card-padding: 40px;
  --font-family: "Inter", sans-serif;
  --heading-size: 42px;
  --heading-size-mobile: 28px;
  --body-size: 16px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 24px rgba(0, 150, 255, 0.15);
  --transition: 0.3s ease;
}

/*===== SCOPED SECTION STYLES =====*/
.pm-key-capabilities,
.pm-industries,
.pm-why-choose {
  padding: var(--section-padding);
  font-family: var(--font-family);
}

.pm-key-capabilities .container,
.pm-industries .container,
.pm-why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*===== SECTION HEADER (Reuse if needed) =====*/
.pm-key-capabilities .section-header,
.pm-industries .section-header,
.pm-why-choose .section-header {
  margin-bottom: 60px;
}

.pm-key-capabilities .section-title,
.pm-industries .section-title,
.pm-why-choose .section-title {
  font-size: var(--heading-size);
  font-weight: 700;
  color: var(--pm-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pm-key-capabilities .section-subtitle,
.pm-industries .section-subtitle,
.pm-why-choose .section-subtitle {
  font-size: 18px;
  color: var(--pm-gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pm-key-capabilities .section-title,
  .pm-industries .section-title,
  .pm-why-choose .section-title {
    font-size: var(--heading-size-mobile);
  }

  .pm-key-capabilities .section-subtitle,
  .pm-industries .section-subtitle,
  .pm-why-choose .section-subtitle {
    font-size: 16px;
  }
}

/*================================================
  SECTION 3: KEY CAPABILITIES (Light Background)
================================================*/
.pm-key-capabilities {
  background-color: var(--pm-light);
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Capability Card */
.capability-card {
  background: var(--pm-light);
  border: 1px solid var(--pm-gray-light);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  transition: all var(--transition);
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pm-primary);
}

/* Capability Icon */
.capability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--pm-primary) 0%,
    var(--pm-primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.capability-icon i {
  font-size: 32px;
  color: var(--pm-light);
}

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

/* Capability Title */
.capability-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pm-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Capability Description */
.capability-description {
  font-size: 15px;
  color: var(--pm-gray);
  line-height: 1.6;
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    padding: 30px;
  }
}

/*================================================
  SECTION 4: INDUSTRIES WE SERVE (Dark Background)
================================================*/
.pm-industries {
  background: linear-gradient(180deg, var(--pm-dark) 0%, var(--pm-darker) 100%);
}

.pm-industries .section-title {
  color: var(--pm-light);
}

.pm-industries .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Industry Card */
.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--pm-primary);
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 150, 255, 0.2);
}

/* Industry Icon */
.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--pm-primary) 0%,
    var(--pm-primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

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

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

/* Industry Title */
.industry-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pm-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Industry Note */
.industry-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 30px;
  }
}

/*================================================
  SECTION 5: WHY CHOOSE CLOUDSCALE (Light Background)
================================================*/
.pm-why-choose {
  background-color: var(--pm-light-bg);
}

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

/* Benefit Card */
.benefit-card {
  background: var(--pm-light);
  border: 1px solid var(--pm-gray-light);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pm-primary);
}

/* Benefit Icon */
.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--pm-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.benefit-icon i {
  font-size: 28px;
  color: var(--pm-light);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.05);
  background: var(--pm-primary-dark);
}

/* Benefit Title */
.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pm-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Benefit Description */
.benefit-description {
  font-size: 15px;
  color: var(--pm-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Benefit Stat Box - Special for 95% card */
.benefit-stat-box {
  background: var(--pm-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.benefit-stat-box .stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--pm-light);
  line-height: 1;
}

.benefit-stat-box .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--pm-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-align: left;
}

/* Benefit Checklist */
.benefit-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--pm-dark);
}

.benefit-checklist li i {
  color: var(--pm-accent);
  font-size: 14px;
  flex-shrink: 0;
}

/* Benefit Badges - for certifications */
.benefit-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--pm-primary);
  color: var(--pm-light);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Engagement Tags */
.engagement-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--pm-light-bg);
  border: 1px solid var(--pm-gray-light);
  color: var(--pm-dark);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.benefit-card:hover .tag {
  background: rgba(0, 150, 255, 0.1);
  border-color: var(--pm-primary);
  color: var(--pm-primary);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-stat-box .stat-number {
    font-size: 48px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 30px;
  }

  .benefit-stat-box {
    flex-direction: column;
    gap: 12px;
  }

  .benefit-stat-box .stat-number {
    font-size: 42px;
  }

  .benefit-stat-box .stat-label {
    text-align: center;
  }
}

/* ===============================================
   INDUSTRIES SECTION 
   =============================================== */

.pm-industries .section-title {
  color: #ffffff !important;
}

.pm-industries .section-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.industry-title {
  color: #ffffff !important;
}

.industry-note {
  color: rgba(255, 255, 255, 0.7) !important;
}

.industry-card:hover .industry-title {
  color: #0096ff !important;
  transition: color 0.3s ease;
}
/*===== UTILITY CLASSES =====*/
.text-center {
  text-align: center;
}

/*===== ACCESSIBILITY =====*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*===== PRINT STYLES =====*/
@media print {
  .capability-card,
  .industry-card,
  .benefit-card {
    break-inside: avoid;
  }
}

/*================================================
  OUR COMPANIES BUTTON - HEADER (DARK THEME)
================================================*/

/* Companies Menu Container */
.companies-menu {
  position: relative;
}

/* Smaller Button Size */
.ibt-btn-sm {
  padding: 20px 20px !important;
  font-size: 14px !important;
}

.ibt-btn-sm i {
  font-size: 14px;
  margin-right: 6px;
}

/* Companies Panel Dropdown - NOW BLACK */
.companies-panel {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  /* Deep Black Background */
  background: #050505;
  /* Subtle White Border for contrast against dark page backgrounds */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5); /* Darker Shadow */
  min-width: 320px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.companies-menu:hover .companies-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Panel Header */
.companies-panel h6 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666; /* Darker Grey for label */
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Company Link */
.company-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  border: 1px solid transparent; /* Prevents layout jump on hover */
}

.company-link:last-child {
  margin-bottom: 0;
}

/* HOVER EFFECT - Dark Grey Highlight */
.company-link:hover {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

/* Company Icon with Favicon */
.company-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  /* Light background for icon so logo stays visible */
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  transition: all 0.3s ease;
}

.company-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-link:hover .company-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

/* Company Info */
.company-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Company Name - NOW WHITE */
.company-info strong {
  font-size: 15px;
  color: #ffffff; /* White Text */
  font-weight: 600;
  line-height: 1.2;
}

/* Description - Light Grey */
.company-info span {
  font-size: 12px;
  color: #bbbbbb; /* Light Grey Text */
  line-height: 1.3;
}

/* Responsive - Hide on smaller screens */
@media (max-width: 1199px) {
  .companies-menu {
    display: none;
  }
}

/* Mobile Menu Version */
.mobile-companies-menu {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-companies-menu {
    display: block;
  }
}

/*================================================
  IT HARDWARE SALES PAGE - SECTIONS 1 & 2
  Clean, Professional Design
================================================*/

/*===== ROOT VARIABLES =====*/
:root {
  /* Colors */
  --hw-primary: #0096ff;
  --hw-primary-dark: #0066cc;
  --hw-accent: #28a745;
  --hw-dark: #1a1a1a;
  --hw-darker: #000000;
  --hw-light: #ffffff;
  --hw-light-bg: #f8f9fa;
  --hw-gray: #6c757d;
  --hw-gray-light: #e9ecef;

  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 40px;

  /* Typography */
  --font-family: "Inter", sans-serif;
  --heading-size: 42px;
  --heading-size-mobile: 28px;
  --body-size: 16px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 24px rgba(0, 150, 255, 0.15);

  /* Transitions */
  --transition: 0.3s ease;
}

/*===== SCOPED SECTION STYLES =====*/
.hardware-what-we-offer,
.hardware-products {
  padding: var(--section-padding);
  font-family: var(--font-family);
}

.hardware-what-we-offer .container,
.hardware-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*===== SECTION HEADER =====*/
.hardware-what-we-offer .section-header,
.hardware-products .section-header {
  margin-bottom: 60px;
}

.hardware-what-we-offer .section-title,
.hardware-products .section-title {
  font-size: var(--heading-size);
  font-weight: 700;
  color: var(--hw-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hardware-what-we-offer .section-subtitle,
.hardware-products .section-subtitle {
  font-size: 18px;
  color: var(--hw-gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hardware-what-we-offer .section-title,
  .hardware-products .section-title {
    font-size: var(--heading-size-mobile);
  }

  .hardware-what-we-offer .section-subtitle,
  .hardware-products .section-subtitle {
    font-size: 16px;
  }
}

/*================================================
  SECTION 1: WHAT WE OFFER (Light Background)
================================================*/
.hardware-what-we-offer {
  background-color: var(--hw-light);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  background: var(--hw-light);
  border: 1px solid var(--hw-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--hw-primary);
}

/* Service Icon */
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--hw-primary) 0%,
    var(--hw-primary-dark) 100%
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-icon i {
  font-size: 32px;
  color: var(--hw-light);
}

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

/* Service Title */
.service-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--hw-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Service Description */
.service-description {
  font-size: var(--body-size);
  color: var(--hw-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--hw-dark);
  border-bottom: 1px solid var(--hw-gray-light);
  transition: all var(--transition);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--hw-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.service-card:hover .service-features li {
  padding-left: 8px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

/*================================================
  SECTION 2: PRODUCT CATEGORIES (Dark Background)
================================================*/
.hardware-products {
  background: linear-gradient(180deg, var(--hw-dark) 0%, var(--hw-darker) 100%);
}

.hardware-products .section-title {
  color: var(--hw-light);
}

.hardware-products .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Product Card */
.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all var(--transition);
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--hw-primary);
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 150, 255, 0.2);
}

/* Product Icon */
.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--hw-primary) 0%,
    var(--hw-primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.product-icon i {
  font-size: 32px;
  color: var(--hw-light);
}

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

/* Product Title */
.product-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--hw-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Product Description */
.product-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Product Specs List */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-specs li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
  position: relative;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--hw-primary);
  font-weight: bold;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 30px;
  }
}

/*===== UTILITY CLASSES =====*/
.text-center {
  text-align: center;
}

/*===== ACCESSIBILITY =====*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*===== PRINT STYLES =====*/
@media print {
  .service-card,
  .product-card {
    break-inside: avoid;
  }
}

/*================================================
  IT HARDWARE SALES PAGE - SECTIONS 3, 4 & 5
  Clean, Professional Design
================================================*/

/*===== ROOT VARIABLES (if not already defined) =====*/
:root {
  --hw-primary: #0096ff;
  --hw-primary-dark: #0066cc;
  --hw-accent: #28a745;
  --hw-dark: #1a1a1a;
  --hw-darker: #000000;
  --hw-light: #ffffff;
  --hw-light-bg: #f8f9fa;
  --hw-gray: #6c757d;
  --hw-gray-light: #e9ecef;
  --section-padding: 80px 0;
  --card-padding: 40px;
  --font-family: "Inter", sans-serif;
  --heading-size: 42px;
  --heading-size-mobile: 28px;
  --body-size: 16px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 24px rgba(0, 150, 255, 0.15);
  --transition: 0.3s ease;
}

/*===== SCOPED SECTION STYLES =====*/
.hardware-why-choose,
.hardware-process,
.hardware-brands {
  padding: var(--section-padding);
  font-family: var(--font-family);
}

.hardware-why-choose .container,
.hardware-process .container,
.hardware-brands .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*===== SECTION HEADER =====*/
.hardware-why-choose .section-header,
.hardware-process .section-header,
.hardware-brands .section-header {
  margin-bottom: 60px;
}

.hardware-why-choose .section-title,
.hardware-process .section-title,
.hardware-brands .section-title {
  font-size: var(--heading-size);
  font-weight: 700;
  color: var(--hw-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hardware-why-choose .section-subtitle,
.hardware-process .section-subtitle,
.hardware-brands .section-subtitle {
  font-size: 18px;
  color: var(--hw-gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hardware-why-choose .section-title,
  .hardware-process .section-title,
  .hardware-brands .section-title {
    font-size: var(--heading-size-mobile);
  }

  .hardware-why-choose .section-subtitle,
  .hardware-process .section-subtitle,
  .hardware-brands .section-subtitle {
    font-size: 16px;
  }
}

/*================================================
  SECTION 3: WHY CHOOSE US (Light Background)
================================================*/
.hardware-why-choose {
  background-color: var(--hw-light-bg);
}

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

/* Benefit Card */
.benefit-card {
  background: var(--hw-light);
  border: 1px solid var(--hw-gray-light);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--hw-primary);
}

/* Benefit Icon */
.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--hw-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.benefit-icon i {
  font-size: 28px;
  color: var(--hw-light);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.05);
  background: var(--hw-primary-dark);
}

/* Benefit Title */
.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--hw-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Benefit Description */
.benefit-description {
  font-size: 15px;
  color: var(--hw-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--hw-dark);
}

.benefit-list li i {
  color: var(--hw-accent);
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 30px;
  }
}

/*================================================
  SECTION 4: OUR PROCESS (Dark Background)
================================================*/
/* ===============================================
   SECTION 4: HARDWARE PROCESS (COMPACT GRID)
   =============================================== */

.hardware-process {
  background: linear-gradient(180deg, var(--hw-dark) 0%, #050a10 100%);
  position: relative;
  overflow: hidden;
}

/* Add a subtle background glow if desired */
.hardware-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 150, 255, 0.05),
    transparent 60%
  );
  pointer-events: none;
}

/* The Grid Container */
.hw-process-grid {
  display: grid;
  /* Auto-fit columns: nice grid on desktop, auto-stack on mobile */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* The Step Card */
.hw-step-card {
  background: rgba(255, 255, 255, 0.03); /* Very subtle glass */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.hw-step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--hw-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Blue Top Border on Hover */
.hw-step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--hw-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hw-step-card:hover::after {
  transform: scaleX(1);
}

/* Card Header (Number + Title) */
.hw-step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* The Number Styling */
.hw-step-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--hw-primary);
  background: rgba(0, 150, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Title Styling */
.hw-step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--hw-light);
  margin: 0;
}

/* Description Styling */
.hw-step-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7); /* Light Grey */
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hw-process-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    gap: 15px;
  }

  .hw-step-card {
    padding: 25px;
  }
}

.hardware-process .section-title {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Optional: adds a nice pop */
}

.hardware-process .section-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
}
/*================================================
  SECTION 5: TRUSTED BRANDS (Light Background)
================================================*/
.hardware-brands {
  background-color: var(--hw-light);
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Brand Card */
.brand-card {
  background: var(--hw-light);
  border: 1px solid var(--hw-gray-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--hw-primary);
}

/* Brand Logo */
.brand-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--hw-dark);
  background: linear-gradient(
    135deg,
    var(--hw-primary) 0%,
    var(--hw-primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Brand Note */
.brand-note {
  font-size: 14px;
  color: var(--hw-gray);
  margin: 0;
}

/* Brands CTA */
.brands-cta {
  background: var(--hw-light-bg);
  border: 2px solid var(--hw-gray-light);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
}

.brands-cta h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--hw-dark);
  margin-bottom: 12px;
}

.brands-cta p {
  font-size: 16px;
  color: var(--hw-gray);
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(
    135deg,
    var(--hw-primary) 0%,
    var(--hw-primary-dark) 100%
  );
  color: var(--hw-light);
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0, 150, 255, 0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 150, 255, 0.3);
}

.cta-btn i {
  font-size: 14px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }

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

  .brands-cta {
    padding: 40px 30px;
  }

  .brands-cta h3 {
    font-size: 24px;
  }
}

/*===== UTILITY CLASSES =====*/
.text-center {
  text-align: center;
}

/*===== ACCESSIBILITY =====*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*===== PRINT STYLES =====*/
@media print {
  .benefit-card,
  .process-step,
  :user-invalid .brand-card {
    break-inside: avoid;
  }
}

/* ===============================================
   MOBILE MENU - CLEAN WHITE THEME
   =============================================== */

/* 1. The Container (Hidden by default) */
.side-menu2 {
  background: #ffffff;
  width: 320px; /* Width of the menu */
  height: 100%;
  position: fixed;
  top: 0;
  right: -320px; /* Start off-screen */
  z-index: 99999;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

/* 2. The Active State (Slide In) - REQUIRED FOR OPENING */
.side-menu2.active {
  right: 0;
}

/* 3. The Overlay (Dark Background) */
.overlay2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay2.active {
  opacity: 1;
  visibility: visible;
}

/* 4. Header & Scroll Area */
.menu-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.mobile-scroll-content {
  overflow-y: auto;
  height: 100%;
  padding: 0 0 50px 0; /* Padding for scroll area */
}

/* 5. Navigation Links */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav > li > a,
.link-with-toggle > a {
  display: block;
  padding: 16px 25px;
  font-size: 14px;
  font-weight: 700;
  color: #222; /* Dark Text */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 6. Split Interaction (Link + Arrow) */
.link-with-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.submenu-toggle {
  width: 50px;
  height: 50px; /* Large click target */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-left: 1px solid #f5f5f5;
  color: #666;
  background: #fafafa;
  transition: all 0.3s ease;
}

.submenu-toggle.open {
  background: #0d6efd; /* Blue when open */
  color: #fff;
}

.submenu-toggle.open i {
  transform: rotate(90deg); /* Rotate arrow down */
}

/* 7. Sub Menu Styling */
.mobile-nav .sub-menu {
  display: none; /* Hidden by default, JS toggles this */
  background: #f9f9f9;
  padding: 0;
}

/* Category Headers (e.g., Network Solutions) */
.cat-header {
  font-size: 11px;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  padding: 20px 25px 5px 25px;
  letter-spacing: 1px;
  border-bottom: none !important;
}

/* Sub Links */
.mobile-nav .sub-menu li a {
  padding: 10px 25px 10px 35px; /* Indented */
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-transform: none;
}

.mobile-nav .sub-menu li a:hover {
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.05);
}

/* 8. Mobile Companies Section */
.mobile-companies-section {
  padding: 30px 25px;
  background: #fff;
  margin-top: 20px;
  border-top: 5px solid #f5f5f5;
}

.mobile-section-title {
  font-size: 12px;
  font-weight: 700;
  color: #ccc;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.m-company-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eee;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.m-company-card.active {
  border-color: #0d6efd;
  background: #f0f7ff;
}

.m-comp-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.m-comp-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-comp-details {
  display: flex;
  flex-direction: column;
}

.m-comp-details .name {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}

.m-comp-details .desc {
  font-size: 12px;
  color: #777;
}

/* 9. Contact Info */
.menu-contact-info {
  padding: 0 25px;
  margin-bottom: 30px;
}

.menu-contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  margin-bottom: 12px;
}

.menu-contact-info a i {
  color: #0d6efd;
  width: 20px;
  text-align: center;
}

/* ===============================================
   SECTION 2: NETWORK FUNDAMENTALS
   =============================================== */

/* Section Background (Clean Light Grey) */
.net-core-section {
  padding: 100px 0;
  background-color: #f4f7f9;
  position: relative;
}

/* Badge Style */
.net-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0d6efd; /* Blue Accent */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  background: rgba(13, 110, 253, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
}

/* Typography */
.net-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.text-blue {
  color: #0d6efd;
}

.net-section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* --- THE CARDS --- */
.net-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Soft Shadow */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-bottom: 4px solid transparent; /* Hidden bottom border */
  height: 100%;
}

/* Hover Effect: Lift + Blue Line */
.net-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-bottom-color: #0d6efd;
}

/* Icon Box */
.net-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e0f0ff 0%, #ffffff 100%);
  border: 1px solid #cce5ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0d6efd;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.net-card:hover .net-card-icon {
  background: #0d6efd;
  color: #ffffff;
  border-color: #0d6efd;
}

/* Card Typography */
.net-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

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

/* ===============================================
   SECTION 3: DARK PROCESS V2 (CARDS)
   =============================================== */

.net-process-dark-v2 {
  padding: 100px 0;
  /* Deep background with a subtle gradient hint */
  background: radial-gradient(circle at top center, #111b2b 0%, #050a10 100%);
  position: relative;
  overflow: hidden;
}

/* --- Typography --- */
.process-badge {
  color: #00ccff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 204, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.process-title {
  font-size: 42px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 15px;
}

.text-gradient-cyan {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-desc {
  color: #aab2bd;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- The Step Card --- */
.step-card {
  background: rgba(255, 255, 255, 0.03); /* Glassy dark effect */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Glow & Lift */
.step-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 204, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Bottom Highlight Line on Hover */
.step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transform: scaleX(0); /* Hidden by default */
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover::after {
  transform: scaleX(1); /* Slide in on hover */
}

/* --- Card Header (Number + Icon) --- */
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

/* The Big Number */
.step-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  /* Outline Text Effect */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step-card:hover .step-num {
  opacity: 1;
  -webkit-text-stroke: 0px;
  color: #00ccff; /* Fills with color on hover */
}

/* The Icon */
.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 114, 255, 0.1);
  color: #0099ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* --- Card Content --- */
.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 14px;
  color: #99aab5;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .process-title {
    font-size: 32px;
  }
  .step-card {
    padding: 30px 20px;
  }
}

/* ===============================================
   SECTION 4: NETWORK CAPABILITIES (LIGHT)
   =============================================== */

.net-services-light {
  padding: 100px 0;
  background-color: #ffffff; /* Pure White Background */
}

/* Typography */
.service-badge {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.service-title {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

.text-blue {
  color: #0d6efd;
}

.service-desc {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

/* --- Capability Card --- */
.capability-card {
  background: #f8f9fa; /* Very Light Grey Card */
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  transition: all 0.3s ease;
  height: 100%;
}

.capability-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Lift Effect */
  transform: translateY(-5px);
  border-color: transparent;
}

/* Icon Box Styling */
.cap-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

/* Color Variables for Icons */
.bg-blue-light {
  background: rgba(13, 110, 253, 0.1);
}
.text-blue {
  color: #0d6efd;
}

.bg-green-light {
  background: rgba(16, 185, 129, 0.1);
}
.text-green {
  color: #10b981;
}

.bg-purple-light {
  background: rgba(139, 92, 246, 0.1);
}
.text-purple {
  color: #8b5cf6;
}

.bg-red-light {
  background: rgba(239, 68, 68, 0.1);
}
.text-red {
  color: #ef4444;
}

.bg-orange-light {
  background: rgba(249, 115, 22, 0.1);
}
.text-orange {
  color: #f97316;
}

.bg-cyan-light {
  background: rgba(6, 182, 212, 0.1);
}
.text-cyan {
  color: #06b6d4;
}

/* Card Text */
.capability-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.capability-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Mini List inside Card */
.cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
}

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

.cap-list li i {
  color: #0d6efd; /* Checkmark color */
  font-size: 11px;
}

/*================================================
  REDESIGNED SERVICES PAGE - MODERN STYLE
  4-Category Block Layout
================================================*/

/* Section */
.services-overview-section-new {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Main Header */
.section-subtitle-blue {
  color: #0096ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-title-dark {
  font-size: 46px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc-grey {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/*=== CATEGORY BLOCK ===*/
.service-category-block {
  margin-bottom: 100px;
  padding: 60px 50px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-category-block:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.service-category-block:last-child {
  margin-bottom: 0;
}

/*=== CATEGORY HEADER ===*/
.category-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  padding: 40px 35px;
  border-bottom: 4px solid #2196f3;
  background: linear-gradient(
    90deg,
    rgba(33, 150, 243, 0.08) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.1);
}

/* Category Icon Box */
.category-icon-box {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: #ffffff;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.35);
  transition: all 0.3s ease;
}

.service-category-block:hover .category-icon-box {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(33, 150, 243, 0.4);
}

/* Category Title */
.category-title-wrapper {
  flex: 1;
}

.category-main-title {
  font-size: 64px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  background: linear-gradient(135deg, #0066cc 0%, #2196f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-main-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #2196f3 0%, #0066cc 100%);
  margin-top: 15px;
  border-radius: 3px;
}

.category-subtitle {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
}

/*=== MODERN SERVICE CARD ===*/
.modern-service-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 35px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0096ff 0%, #0066cc 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.modern-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.modern-service-card:hover::before {
  transform: scaleX(1);
}

/* Service Card Icon */
.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.modern-service-card:hover .service-card-icon {
  transform: rotate(5deg) scale(1.05);
}

/* Service Card Text */
.modern-service-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.4;
}

.modern-service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0096ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.modern-service-card:hover .service-link {
  gap: 12px;
}

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

/*=== RESPONSIVE ===*/
@media (max-width: 1199px) {
  .service-category-block {
    padding: 40px 30px;
  }

  .category-main-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .services-overview-section-new {
    padding: 70px 0;
  }

  .section-title-dark {
    font-size: 38px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .category-icon-box {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .category-main-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .service-category-block {
    padding: 35px 25px;
    margin-bottom: 50px;
  }

  .section-title-dark {
    font-size: 32px;
  }

  .section-desc-grey {
    font-size: 16px;
  }

  .category-main-title {
    font-size: 24px;
  }

  .category-subtitle {
    font-size: 15px;
  }

  .modern-service-card {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .services-overview-section-new {
    padding: 50px 0;
  }

  .service-category-block {
    padding: 30px 20px;
  }

  .category-icon-box {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .category-main-title {
    font-size: 22px;
  }
}

/* ===============================================
   SERVICE PAGE REDESIGN STYLES
   =============================================== */

/* --- Typography Utilities --- */
.service-badge {
  font-size: 11px;
  font-weight: 800;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.text-blue {
  color: #0d6efd;
}

/* Dark Section Typography */
.service-title-dark {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}
.service-desc-dark {
  font-size: 16px;
  color: #aab2bd;
  max-width: 600px;
  margin: 0 auto;
}

/* Light Section Typography */
.service-title-light {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

/* =========================================
   1. PROCESS SECTION (DARK)
   ========================================= */
.service-process-section {
  padding: 100px 0;
  background-color: #0b121e; /* Deep Dark */
}

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

.flow-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.flow-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.07);
  border-color: #0d6efd;
}

/* Big Number Background */
.flow-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: all 0.3s ease;
}

.flow-card:hover .flow-number {
  color: rgba(13, 110, 253, 0.1);
}

.flow-icon {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.flow-content p {
  font-size: 14px;
  color: #aab2bd;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   2. WHY CHOOSE US (LIGHT)
   ========================================= */
.service-why-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.why-card {
  padding: 35px 25px;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.why-card:hover {
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================================
   3. INDUSTRIES (DARK)
   ========================================= */
.service-industries-section {
  padding: 100px 0;
  background-color: #111b2b; /* Slightly lighter dark */
}

.ind-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ind-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  border-color: #0d6efd;
}

.ind-icon {
  font-size: 24px;
  color: #0d6efd;
  width: 50px;
  height: 50px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.ind-info p {
  font-size: 13px;
  color: #aab2bd;
  margin: 0;
  line-height: 1.4;
}

/* =========================================
   4. STATS (DARK THEME - MATCHING PREVIOUS)
   ========================================= */
.service-stats-section {
  padding: 80px 0;
  /* Match the background of the Industries section */
  background-color: #111b2b;
  color: #ffffff;
  /* Optional: Subtle top border to separate it slightly */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  text-align: center;
  position: relative;
}

/* Add side borders on desktop for separation */
@media (min-width: 992px) {
  .stat-item::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  /* Remove border from the last item */
  .col-lg-3:last-child .stat-item::after {
    display: none;
  }
}

.stat-item h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 5px;
  /* Make numbers pop with the blue accent color */
  color: #0d6efd;
}

.stat-item p {
  font-size: 13px;
  font-weight: 700;
  color: #aab2bd; /* Muted grey text */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* ===============================================
   ISOLATED INDEX PAGE FAQ
   =============================================== */

.idx-faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* The Box */
.idx-faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.idx-faq-item.active {
  border-color: #2a8ace;
  box-shadow: 0 8px 25px rgba(42, 138, 206, 0.15); /* Lift effect */
}

/* The Header (Question Bar) */
.idx-faq-header {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s ease;
}

.idx-faq-item.active .idx-faq-header {
  background: #f8faff;
}

/* The Number Circle */
.idx-faq-number {
  width: 40px;
  height: 40px;
  background: rgba(42, 138, 206, 0.1);
  color: #2a8ace;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 20px;
  flex-shrink: 0;
}

.idx-faq-item.active .idx-faq-number {
  background: #2a8ace;
  color: #fff;
}

/* The Text */
.idx-faq-text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.5;
}

.idx-faq-item.active .idx-faq-text {
  color: #2a8ace;
}

/* The Arrow */
.idx-faq-icon {
  font-size: 20px;
  color: #2a8ace;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.idx-faq-item.active .idx-faq-icon {
  transform: rotate(180deg);
}

/* The Body */
.idx-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #f8faff;
}

/* Inner padding for the answer text */
.idx-faq-inner {
  padding: 0 30px 30px 90px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Mobile Tweak  */
@media (max-width: 768px) {
  .idx-faq-header {
    padding: 20px;
  }
  .idx-faq-inner {
    padding: 0 20px 25px 20px;
  }
  .idx-faq-text {
    font-size: 16px;
  }
  .idx-faq-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin-right: 15px;
  }
}

/* ===============================================
   FIX: HERO SECTION VISIBILITY
   =============================================== */

.video-overlay {
  background: rgba(0, 0, 0, 0.8) !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 2. Add a strong drop shadow to the text */
.hero-desc {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  position: relative;
  z-index: 3;
}

/* 3. Ensure the Title is also readable */
.hero-title {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
  z-index: 3;
}

/* ===============================================
   HIPAA COMPLIANCE - SECTION 1: SERVICES
   =============================================== */

.hipaa-services-section {
  padding: 100px 0;
  background: #ffffff;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 30px;
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge.dark {
  background: rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.3);
  color: #00ccff;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.white {
  color: #ffffff;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-desc {
  font-size: 17px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.section-desc.white {
  color: rgba(255, 255, 255, 0.9);
}

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

.hipaa-service-card {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 35px 28px;
  transition: all 0.3s ease;
}

.hipaa-service-card:hover {
  border-color: #0096ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 150, 255, 0.12);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.1) 0%,
    rgba(0, 102, 204, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-icon-box i {
  font-size: 32px;
  color: #0096ff;
}

.hipaa-service-card:hover .service-icon-box {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
}

.hipaa-service-card:hover .service-icon-box i {
  color: #ffffff;
}

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.service-card-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.service-features-list li {
  font-size: 14px;
  color: #555555;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features-list li i {
  color: #0096ff;
  font-size: 14px;
}

/* ===============================================
   SECTION 2: WHY HIPAA MATTERS
   =============================================== */

.why-hipaa-matters-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.matters-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.matter-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.matter-stat-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-5px);
}

.stat-icon-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.2) 0%,
    rgba(0, 150, 255, 0.2) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon-large i {
  font-size: 32px;
  color: #00ccff;
}

.stat-number-large {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label-large {
  font-size: 16px;
  font-weight: 600;
  color: #00ccff;
  margin-bottom: 12px;
}

.stat-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.common-misconceptions {
  margin-top: 60px;
}

.misconceptions-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.misconception-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.3s ease;
}

.misconception-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 68, 68, 0.3);
}

.misconception-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 68, 68, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.misconception-icon i {
  font-size: 22px;
  color: #ff4444;
}

.misconception-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.misconception-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* ===============================================
   SECTION 3: OUR APPROACH
   =============================================== */

.hipaa-approach-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.approach-steps {
  max-width: 900px;
  margin: 0 auto;
}

.approach-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 30px;
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.approach-step:hover {
  border-color: #0096ff;
  box-shadow: 0 8px 25px rgba(0, 150, 255, 0.1);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #0096ff;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.3;
}

.approach-step:hover .step-number {
  opacity: 1;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

/* ===============================================
   SECTION 4: WHO WE SERVE
   =============================================== */

.who-we-serve-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.serve-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.serve-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-5px);
}

.serve-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.2) 0%,
    rgba(0, 150, 255, 0.2) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.serve-icon i {
  font-size: 32px;
  color: #00ccff;
}

.serve-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.serve-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* ===============================================
   SECTION 5: WHY CHOOSE US
   =============================================== */

.why-choose-hipaa-section {
  padding: 100px 0;
  background: #ffffff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.why-choose-item {
  background: #f8f9fa;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  background: #ffffff;
  border-color: #0096ff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 150, 255, 0.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.1) 0%,
    rgba(0, 102, 204, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.why-icon i {
  font-size: 32px;
  color: #0096ff;
}

.why-choose-item:hover .why-icon {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
}

.why-choose-item:hover .why-icon i {
  color: #ffffff;
}

.why-choose-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.why-choose-item p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.compliance-cta-box {
  background: linear-gradient(135deg, #0096ff 0%, #0066cc 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}

.compliance-cta-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.compliance-cta-box p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-buttons-inline {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-hipaa,
.btn-secondary-hipaa {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-hipaa {
  background: #ffffff;
  color: #0066cc;
}

.btn-primary-hipaa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary-hipaa {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary-hipaa:hover {
  background: #ffffff;
  color: #0066cc;
}

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

@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }

  .hipaa-services-grid,
  .matters-stats-row,
  .misconceptions-grid,
  .serve-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-step {
    flex-direction: column;
    gap: 20px;
  }

  .step-number {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hipaa-services-section,
  .why-hipaa-matters-section,
  .hipaa-approach-section,
  .who-we-serve-section,
  .why-choose-hipaa-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .hipaa-services-grid,
  .matters-stats-row,
  .misconceptions-grid,
  .serve-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number-large {
    font-size: 36px;
  }

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

  .compliance-cta-box h3 {
    font-size: 26px;
  }

  .cta-buttons-inline {
    flex-direction: column;
  }

  .btn-primary-hipaa,
  .btn-secondary-hipaa {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 26px;
  }

  .service-card-title,
  .step-content h3 {
    font-size: 20px;
  }

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

/* ===============================================
   GLOBAL MOBILE OVERFLOW 
   =============================================== */

html,
body {
  width: 100%;
  overflow-x: hidden !important; /* Forces the browser to cut off anything sticking out */
  position: relative;
}

/* Fix for the Mobile Menu Container */
.side-menu2 {
  /* Ensure the menu doesn't create scroll space when hidden */
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-menu2.active {
  visibility: visible;
}

/* ========================================
   CLOUDSCALE TECHNOLOGY - CLEAN MOBILE MENU
   FINAL FIX - NO DUPLICATE ARROWS
   ======================================== */

/* Overlay */
.overlay2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.overlay2.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container */
.side-menu2 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.side-menu2.active {
  right: 0;
}

/* Scrollbar Styling */
.side-menu2::-webkit-scrollbar {
  width: 4px;
}

.side-menu2::-webkit-scrollbar-track {
  background: transparent;
}

.side-menu2::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}

/* Menu Header */
.menu-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
}

/* Close Button */
.close-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #1f2937;
  transition: background 0.3s ease;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn:hover::before,
.close-btn:hover::after {
  background: #0066cc;
}

/* CRITICAL: Remove any default pseudo-elements from theme */
.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;
  content: none !important;
}

/* Main Menu List */
.side-menu2 > ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.side-menu2 > ul > li {
  border-bottom: none !important;
}

/* Regular Menu Items */
.side-menu2 ul li a {
  display: block;
  padding: 14px 24px;
  color: #1f2937;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: none !important;
}

.side-menu2 ul li a:hover {
  color: #0066cc;
  background: transparent;
}

/* Menu Items with Children */
.menu-item-has-children {
  position: relative;
}

/* ============================================
   ARROW TOGGLE - FINAL FIX
   ============================================ */

/* Base Arrow Toggle Styles */
.side-menu2 .arrow-toggle {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 50px !important;
  height: 50px !important;
  cursor: pointer !important;
  z-index: 50 !important;
  background-image: url("../images/icon/arrow4.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 12px !important;
  background-color: transparent !important;
  transition: transform 0.3s ease !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
}

/* CRITICAL: Remove ALL possible pseudo-elements and child elements */
.side-menu2 .arrow-toggle::before,
.side-menu2 .arrow-toggle::after,
.side-menu2 .arrow-toggle > *,
.side-menu2 .arrow-toggle span,
.side-menu2 .arrow-toggle i,
.side-menu2 .arrow-toggle svg {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* Remove any theme-added content */
.side-menu2 .menu-item-has-children::before,
.side-menu2 .menu-item-has-children::after {
  display: none !important;
  content: none !important;
}

/* Active state - rotate arrow */
.side-menu2 .arrow-toggle.active {
  transform: rotate(180deg) !important;
}

/* Hover effect - optional color change */
.side-menu2 .arrow-toggle:hover {
  opacity: 0.7;
}

/* ============================================
   END ARROW TOGGLE FIX
   ============================================ */

/* Sub Menu - Hide Initially */
.side-menu2 .sub-menu {
  display: none !important;
  padding-left: 0;
  border: none !important;
  margin-left: 0;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  background: #f9fafb;
}

/* Show Sub Menu When Open */
.side-menu2 .sub-menu.open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  max-height: 2000px !important;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sub Menu Styling */
.side-menu2 .sub-menu li {
  border: none !important;
}

.side-menu2 .sub-menu li a {
  padding: 12px 24px 12px 40px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border: none !important;
}

.side-menu2 .sub-menu li a:hover {
  color: #0066cc;
  background: #ffffff;
  padding-left: 44px;
}

/* Nested Sub Menu (Third Level) */
.side-menu2 .sub-menu .sub-menu {
  background: #ffffff;
  padding-left: 0;
  margin-left: 0;
}

.side-menu2 .sub-menu .sub-menu li a {
  padding: 10px 24px 10px 56px;
  font-size: 13px;
  color: #4b5563;
}

.side-menu2 .sub-menu .sub-menu li a:hover {
  padding-left: 60px;
}

/* Contact Section */
.menu-contact {
  padding: 24px;
  background: #f9fafb;
  margin-top: 16px;
}

.contact-title {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.contact-item i {
  width: 20px;
  font-size: 16px;
  color: #0066cc;
}

.contact-item:hover {
  color: #0066cc;
}

/* LinkedIn Section */
.menu-social {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
}

.social-title {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.linkedin-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #0077b5;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.linkedin-link i {
  font-size: 18px;
}

.linkedin-link:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

/* Our Companies Section */
.menu-companies {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
}

.companies-title {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.company-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.company-item:hover {
  background: #ffffff;
  border-color: #0066cc;
  transform: translateX(4px);
}

.company-icon-mobile {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 1px;
}

.company-icon-mobile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.company-details strong {
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

.company-details span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
}

/* CTA Button Section */
.menu-cta {
  padding: 20px 24px 24px;
  border-top: 1px solid #e5e7eb;
}

.menu-cta .ibt-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #0066cc;
  border-radius: 8px;
  color: #0066cc;
  background: transparent;
  transition: all 0.3s ease;
}

.menu-cta .ibt-btn:hover {
  background: #0066cc;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .side-menu2 {
    width: 100%;
    max-width: 100%;
  }

  .menu-btns {
    padding: 16px 20px;
  }

  .side-menu2 ul li a {
    padding: 12px 20px;
  }

  .side-menu2 .arrow-toggle {
    width: 45px !important;
    height: 46px !important;
  }

  .side-menu2 .sub-menu li a {
    padding: 10px 20px 10px 36px;
  }

  .side-menu2 .sub-menu .sub-menu li a {
    padding: 10px 20px 10px 52px;
  }

  .menu-contact,
  .menu-social,
  .menu-companies,
  .menu-cta {
    padding: 16px 20px;
  }
}

/* Fix for theme conflicts */
.side-menu2 * {
  box-sizing: border-box;
}

.side-menu2 ul,
.side-menu2 li {
  margin: 0;
  border: none !important;
}

.side-menu2 a {
  text-decoration: none;
  border: none !important;
}

/* Remove all border styles */
.side-menu2 ul li,
.side-menu2 .sub-menu,
.side-menu2 .sub-menu li {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* ===============================================
   HERO SECTION 10 - MOBILE FIXES
   =============================================== */

/* Target Mobile and Tablet Devices (below 991px width) */
@media (max-width: 991px) {
  /* --- 1. Spacing on Top --- */
  .hero-section10 {
    padding-top: 70px !important;
    padding-bottom: 20px;
  }

  .hero-section10 .container-fluid {
    padding-left: 2px;
    padding-right: 2px;
  }

  .hero-content10 {
    text-align: left;
    margin-bottom: 50px; /* Space between text area and video area */
  }

  /* Title Sizing for Mobile */
  .hero-info10 .title {
    font-size: 34px !important;
    line-height: 1.25;
  }
  .hero-info10 .title br {
    display: none;
  }

  .hero-info10 p {
    color: #ffffff !important;
    font-size: 17px;
    line-height: 1.6;
    margin-top: 20px;
    opacity: 0.95;
  }

  /* Video sizing fix */
  .hero-video-wrapper {
    margin-top: 20px;
  }
  .hero-video-element {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
}

/* Optional: Tweak for slightly larger tablets to allow side-by-side buttons */
@media (min-width: 600px) and (max-width: 991px) {
  .hero-info10 .btn-group {
    flex-direction: row !important;
  }
  .hero-info10 .btn-group .ibt-btn {
    width: auto;
  }
}

@media (max-width: 991px) {
  .hero-info10 .btn-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 30px !important;
    width: 100%;
  }

  /* 2. Buttons: Make them same size and shape */
  .hero-info10 .btn-group .ibt-btn {
    width: 100%;
    max-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    margin: 0 !important;
  }
}

/* ===============================================
   FIX: HEADER OVERFLOW (1200px - 1360px)
   =============================================== */

@media (min-width: 1200px) and (max-width: 1360px) {
  /* 1. Maximize Available Space */
  .container2 {
    padding-left: 5px !important;
    padding-right: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .header-menu-area {
    margin: 0 !important;
  }

  /* 2. Force Single Line  */
  .header-menu-area .row {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  /* 4. Compress the Navigation Menu */
  .main-menu.menu-style1 > ul > li {
    margin: 15 10px !important;
  }

  .main-menu.menu-style1 > ul > li > a {
    padding: 10px 10px !important;
    font-size: 13px !important;
  }

  /* 5. Compact the "Our Companies" Button */
  .companies-menu .ibt-btn {
    padding: 8px 10px !important;
    font-size: 11px !important;
    min-width: auto !important;
    height: 45px !important;
    line-height: 1 !important;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) and (max-width: 1360px) {
  .main-menu.menu-style1 > ul > li.menu-item-has-children > a span.menu-item {
    position: relative !important;
    top: 4px !important;
    display: inline-block !important;
  }
}

/* ===============================================
   FIX: CLOSE BUTTON (Top of Blue Area)
   =============================================== */

/* 1. Allow items to sit OUTSIDE the black box */
.side-menu {
  overflow: visible !important;
}

/* 2. Position the button at the TOP of the blue area */
.side-menu .close-btn {
  position: absolute !important;

  /* Horizontal: Keep it in the blue strip */
  right: -50px !important;

  /* Vertical: Move to top */
  top: 50px !important;

  /* Rotation: Keep vertical text */
  transform: rotate(90deg) !important;
  transform-origin: center !important;

  /* Style the text/icon */
  z-index: 99999 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* 3. Clean up double icons */
.side-menu .close-btn::before,
.side-menu .close-btn::after {
  content: none !important;
}

/* 4. Icon Orientation */
.side-menu .close-btn i {
  font-size: 18px;
  transform: rotate(-90deg);
}

/* SIDE MENU */

.side-menu {
  padding: 20px 20px;
  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: 10px;
}

/* Logo */
.side-menu .logo img {
  width: 250px;
  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: 160px !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 */
  }
}

/* ===============================================
   FIX: STOP SIDEBAR HORIZONTAL SCROLLING
   =============================================== */

/* 1. Lock the Inner Content Container */
.side-menu .menu-content {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 3. Ensure Logo doesn't push width */
.side-menu .logo img {
  max-width: 100% !important;
}
