/* Ankitha code */
.logo-section {
  background-color: #f0f0f0;
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo-section h2 {
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
}

.logo-carousel {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-carousel img {
  height: 60px;
  margin: 0 30px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel-wrapper {
  display: flex;
  overflow: hidden;
  justify-content: center;
}

.logo-carousel-wrapper .logo-carousel {
  flex-shrink: 0;
}

/* Ankitha code for the vision misiion in home page */
.vmc .card {
  background-color: #fff;
  border: none;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
  padding: 40px 20px;
}

.vmc .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, #4da6ff, #99ccff);
  transition: width 0.5s;
}

.vmc .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.vmc .card:hover::after {
  width: 100%;
}

.vmc .icon {
  font-size: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.vmc .card:hover .icon {
  background-color: #4da6ff;
  color: #fff;
}

.header-logo a img {
  max-width: 180px;
  height: auto;
  display: block;
}

.page-banner10 {
  position: relative;
  background-image: url(../image_1/contact-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 217px 0 235px;
  margin: 21px 20px 0;
  border-radius: 28px;
}
@media (max-width: 769px) {
  .page-banner10 {
    padding: 125px 0 178px;
  }
}
@media (max-width: 577px) {
  .page-banner10 {
    padding: 123px 0 196px;
  }
}
@media (max-width: 480px) {
  .page-banner10 {
    padding: 114px 0 160px;
  }
}
@media (max-width: 480px) {
  .page-banner10 {
    padding: 81px 0 132px;
  }
}
.page-banner10::before {
  content: "";
  position: absolute;
  top: -29%;
  left: 0;
  width: 100%;
  height: 1115px;
  background-image: url(../images/layers/bg-layer2.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1201px) {
  .page-banner10::before {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .page-banner10::before {
    background-size: contain;
    top: -28%;
  }
}

/* header bg */
.main-menu.menu-style1 > ul {
  background-color: #000;
  border-radius: 24px;
  padding: 0px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
}

.main-menu.menu-style1 > ul > li {
  display: flex;
  align-items: center;
}

.main-menu.menu-style1 > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  border-radius: 24px;
  border: 2px solid transparent;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.main-menu .menu-item,
.main-menu .menu-item2 {
  position: relative;
  display: block;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.main-menu .menu-item2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
}

.main-menu .menu-item {
  transform: translateY(0);
  opacity: 1;
}

.main-menu.menu-style1 > ul > li > a:hover .menu-item {
  transform: translateY(-100%);
  opacity: 0;
}

.main-menu.menu-style1 > ul > li > a:hover .menu-item2 {
  transform: translate(-50%, -50%);
  opacity: 1;
  color: #ccc;
}

.main-menu.menu-style1 > ul > li > a.active {
  border-color: #808080 !important;
  color: #fff;
}

.main-menu.menu-style1 > ul > li > a:hover {
  border-color: transparent;
}

.main-menu.menu-style1 > ul > li > a.active:hover {
  border-color: #808080 !important;
}

.main-menu.menu-style1 .sub-menu {
  background-color: #000;
  padding: 12px 0;
  border-radius: 12px;
}

.main-menu.menu-style1 .sub-menu li a {
  color: #fff;
  padding: 10px 24px;
  display: block;
  white-space: nowrap;
}

.main-menu.menu-style1 .sub-menu li a:hover {
  color: #ccc;
}

.menu-item-has-children > a {
  position: relative;
  padding-right: 40px;
  display: flex;
  align-items: center;
}

/* Arrow icon */
.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 68%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #fff;
  mask-image: url("../image_1/arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../image_1/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition:
    background-color 0.3s ease,
    right 0.3s ease,
    top 0.3s ease;
}

.menu-item-has-children > a:hover::after {
  background-color: #ccc;
}

.menu-item-has-children > a .menu-item,
.menu-item-has-children > a .menu-item2 {
  padding-right: 0;
}

.main-menu.menu-style1 > ul > li > a.active:hover .menu-item,
.main-menu.menu-style1 > ul > li > a.active:hover .menu-item2 {
}

.main-menu.menu-style1 > ul > li > a.active:hover .menu-item2 {
  color: #ccc;
}

/* Move ONLY Services text slightly up */
.menu-item-has-children > a .menu-item,
.menu-item-has-children > a .menu-item2 {
  transform: translateY(-3px);
}
/* Mssp page */
/*  MSSP HERO SECTION  */
.mssp-hero-wrapper {
  --mssp-primary: #2a8ace;
  --mssp-secondary: #7ee2ef;
  --mssp-accent: #1a6fb8;
  --mssp-light: #b1e8f5;
  --mssp-dark: #0a1a2a;
  --mssp-text: #ffffff;
  --mssp-text-secondary: #d1f0f7;
  --mssp-success: #7ee2ef;
  --mssp-warning: #f8b34e;
  --mssp-danger: #ff6b6b;
  --mssp-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --mssp-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  --mssp-shadow-hover: 0 25px 50px rgba(42, 138, 206, 0.3);
  --mssp-radius: 16px;
  --mssp-glow: 0 0 20px rgba(126, 226, 239, 0.3);
}

/* Stacked Layout Section */
.mssp-hero-wrapper {
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #0a1f38 0%, #0c2d48 50%, #0a1a2a 100%);
  overflow: hidden;
  margin-top: 30px;
}

/* Animated Background Elements */
.mssp-hero-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(42, 138, 206, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(126, 226, 239, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(42, 138, 206, 0.05) 50%,
      transparent 70%
    );
  animation: mssp-hero-gradient 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes mssp-hero-gradient {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

/* Container */
.mssp-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Stacked Layout: Heading, Stats, Text */
.mssp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 20px;
}

/* Center-aligned heading */
.mssp-hero-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Enhanced Headings */
.mssp-title-main {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--mssp-text);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    45deg,
    var(--mssp-primary),
    var(--mssp-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mssp-title-main:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--mssp-primary),
    var(--mssp-secondary)
  );
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  animation: mssp-title-line 1.5s ease-in-out infinite alternate;
}

@keyframes mssp-title-line {
  0% {
    width: 80px;
    opacity: 0.8;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

/* Stats Grid - 4 columns */
.mssp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin: 30px auto;
  max-width: 1000px;
}

/* Enhanced Stat Boxes */
.mssp-stat-card {
  background: linear-gradient(
    145deg,
    rgba(42, 138, 206, 0.15),
    rgba(10, 26, 42, 0.3)
  );
  border-radius: var(--mssp-radius);
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(126, 226, 239, 0.2);
  transition: var(--mssp-transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mssp-stat-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(126, 226, 239, 0.1),
    transparent
  );
  transition: 0.8s;
}

.mssp-stat-card:hover:before {
  left: 100%;
}

.mssp-stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--mssp-secondary);
  box-shadow: var(--mssp-shadow-hover), var(--mssp-glow);
  z-index: 10;
}

/* Enhanced Stat Numbers */
.mssp-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--mssp-secondary);
  margin-bottom: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(126, 226, 239, 0.5);
  display: inline-block;
  transition: var(--mssp-transition);
}

.mssp-stat-card:hover .mssp-stat-number {
  color: #ffffff;
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(126, 226, 239, 0.8);
}

/* Enhanced Stat Labels */
.mssp-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mssp-text-secondary);
  position: relative;
  z-index: 1;
  transition: var(--mssp-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mssp-stat-card:hover .mssp-stat-label {
  color: var(--mssp-secondary);
  letter-spacing: 1.5px;
}

/* Hero Text - Two columns */
.mssp-hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 30px;
}

/* Enhanced Paragraphs */
.mssp-hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  color: var(--mssp-text-secondary);
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
}

.mssp-hero-text p:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mssp-secondary);
  font-size: 1.2rem;
  font-weight: bold;
}

/* ===== MSSP SERVICES SECTION ===== */
.mssp-services-wrapper {
  --mssp-s-primary: #2a8ace;
  --mssp-s-secondary: #7ee2ef;
  --mssp-s-accent: #1a6fb8;
  --mssp-s-light: #b1e8f5;
  --mssp-s-dark: #0a1a2a;
  --mssp-s-text: #333333;
  --mssp-s-text-secondary: #666666;
  --mssp-s-success: #7ee2ef;
  --mssp-s-warning: #f8b34e;
  --mssp-s-danger: #ff6b6b;
  --mssp-s-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --mssp-s-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --mssp-s-shadow-hover: 0 15px 40px rgba(42, 138, 206, 0.2);
  --mssp-s-radius: 12px;
  --mssp-s-white: #ffffff;
}

/* ===============================================
    MSSP FEATURES TITLE 
   =============================================== */

.mssp-features-wrapper .mssp-section-title {
  background: linear-gradient(135deg, #0c2d48 0%, #2e8bc0 100%) !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;

  color: transparent !important;

  z-index: 10;
  opacity: 1;
}
/* White background section */
.mssp-services-wrapper {
  padding: 80px 0;
  position: relative;
  background-color: var(--mssp-s-white);
  overflow: hidden;
}

/* Section heading */
.mssp-section-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--mssp-s-primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--mssp-s-primary),
    var(--mssp-s-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.mssp-section-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--mssp-s-primary),
    var(--mssp-s-secondary)
  );
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Zigzag Layout Services */
.mssp-services-zigzag {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

/* Service Item - Alternate alignment */
.mssp-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s ease;
}

.mssp-service-item.mssp-visible {
  opacity: 1;
  transform: translateX(0);
}

.mssp-service-item:nth-child(even) {
  transform: translateX(100px);
}

.mssp-service-item:nth-child(even).mssp-visible {
  transform: translateX(0);
}

.mssp-service-item:nth-child(even) .mssp-service-content {
  order: 2;
}

.mssp-service-item:nth-child(even) .mssp-service-visual {
  order: 1;
}

/* Service Content */
.mssp-service-content {
  padding: 30px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: var(--mssp-s-radius);
  border-left: 5px solid var(--mssp-s-primary);
  box-shadow: var(--mssp-s-shadow);
  transition: var(--mssp-s-transition);
}

.mssp-service-item:hover .mssp-service-content {
  transform: translateY(-5px);
  box-shadow: var(--mssp-s-shadow-hover);
  border-left-color: var(--mssp-s-secondary);
}

.mssp-service-icon {
  color: var(--mssp-s-primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--mssp-s-transition);
}

.mssp-service-item:hover .mssp-service-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--mssp-s-secondary);
}

.mssp-service-content h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--mssp-s-primary);
  margin-bottom: 15px;
}

.mssp-service-content p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--mssp-s-text-secondary);
  margin-bottom: 20px;
}

/* Service Visual */
.mssp-service-visual {
  position: relative;
  height: 300px;
  border-radius: var(--mssp-s-radius);
  overflow: hidden;
  box-shadow: var(--mssp-s-shadow);
}

.mssp-visual-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--mssp-s-primary),
    var(--mssp-s-accent)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  color: white;
  text-align: center;
}

.mssp-visual-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.9;
  animation: mssp-visual-float 3s ease-in-out infinite;
}

@keyframes mssp-visual-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mssp-visual-text {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 10px;
}

.mssp-visual-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 80%;
}

/* ===== MSSP FEATURES SECTION ===== */
.mssp-features-wrapper {
  --mssp-f-primary: #0c2d48;
  --mssp-f-secondary: #2e8bc0;
  --mssp-f-accent: #145da0;
  --mssp-f-light: #b1d4e0;
  --mssp-f-dark: #0a1a2a;
  --mssp-f-text: #333333;
  --mssp-f-text-secondary: #666666;
  --mssp-f-success: #4cc9f0;
  --mssp-f-warning: #f8961e;
  --mssp-f-danger: #f94144;
  --mssp-f-transition: all 0.4s ease;
  --mssp-f-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --mssp-f-radius: 8px;
  --mssp-f-white: #ffffff;
}

/* Gradient background section */
.mssp-features-wrapper {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
}

/* Features Grid - 3 columns */
.mssp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Feature Card */
.mssp-feature-card {
  background: var(--mssp-f-white);
  border-radius: var(--mssp-f-radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(46, 139, 192, 0.1);
  transition: var(--mssp-f-transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.mssp-feature-card.mssp-visible {
  opacity: 1;
  transform: translateY(0);
}

.mssp-feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--mssp-f-secondary),
    var(--mssp-f-success)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

/* Feature Icon */
.mssp-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(46, 139, 192, 0.1),
    rgba(76, 201, 240, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--mssp-f-secondary);
  font-size: 2.2rem;
  transition: var(--mssp-f-transition);
}

.mssp-feature-card:hover .mssp-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(46, 139, 192, 0.2),
    rgba(76, 201, 240, 0.2)
  );
}

/* Feature Content */
.mssp-feature-card h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--mssp-f-primary);
  margin-bottom: 15px;
}

.mssp-feature-card p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--mssp-f-text-secondary);
  margin-bottom: 0;
}

/* Feature Number */
.mssp-feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(76, 201, 240, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
  transition: var(--mssp-f-transition);
}

.mssp-feature-card:hover .mssp-feature-number {
  color: rgba(76, 201, 240, 0.2);
  transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .mssp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .mssp-hero-text {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mssp-service-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mssp-service-item:nth-child(even) .mssp-service-content,
  .mssp-service-item:nth-child(even) .mssp-service-visual {
    order: unset;
  }

  .mssp-title-main {
    font-size: 2.5rem;
  }

  .mssp-section-title {
    font-size: 2.5rem;
  }

  .mssp-service-visual {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .mssp-hero-wrapper {
    padding: 80px 0 60px;
  }

  .mssp-services-wrapper {
    padding: 60px 0;
  }

  .mssp-features-wrapper {
    padding: 60px 0;
  }

  .mssp-title-main {
    font-size: 2rem;
    text-align: center;
  }

  .mssp-section-title {
    font-size: 2.2rem;
  }

  .mssp-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
  }

  .mssp-stat-number {
    font-size: 2.5rem;
  }

  .mssp-stat-card {
    padding: 25px 20px;
  }

  .mssp-services-zigzag {
    gap: 40px;
    margin-top: 40px;
  }

  .mssp-service-content h3 {
    font-size: 1.6rem;
  }

  .mssp-service-content p {
    font-size: 1.05rem;
  }

  .mssp-features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
  }

  .mssp-feature-card {
    padding: 35px 25px;
  }

  .mssp-section-title {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mssp-hero-wrapper {
    padding: 60px 0 40px;
  }

  .mssp-services-wrapper {
    padding: 50px 0;
  }

  .mssp-features-wrapper {
    padding: 40px 0;
  }

  .mssp-title-main {
    font-size: 1.8rem;
  }

  .mssp-section-title {
    font-size: 1.9rem;
  }

  .mssp-stat-number {
    font-size: 2.2rem;
  }

  .mssp-service-visual {
    height: 200px;
  }

  .mssp-visual-icon {
    font-size: 3rem;
  }

  .mssp-visual-text {
    font-size: 1.1rem;
  }

  .mssp-feature-card {
    padding: 30px 20px;
  }

  .mssp-feature-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

/* Ensure all content stays above background */
.mssp-container,
.mssp-hero-content,
.mssp-hero-text,
.mssp-stats-grid,
.mssp-services-zigzag,
.mssp-features-grid {
  position: relative;
  z-index: 1;
}

/* Text styles specific to this page */
.mssp-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 1rem;
}

.mssp-text-column {
  padding: 0 10px;
}

/* Animation delays for stats */
.mssp-stat-card:nth-child(1) {
  animation-delay: 0.1s;
}
.mssp-stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.mssp-stat-card:nth-child(3) {
  animation-delay: 0.3s;
}
.mssp-stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Animation delays for feature cards */
.mssp-feature-card:nth-child(1) {
  transition-delay: 0.1s;
}
.mssp-feature-card:nth-child(2) {
  transition-delay: 0.2s;
}
.mssp-feature-card:nth-child(3) {
  transition-delay: 0.3s;
}
.mssp-feature-card:nth-child(4) {
  transition-delay: 0.4s;
}
.mssp-feature-card:nth-child(5) {
  transition-delay: 0.5s;
}
.mssp-feature-card:nth-child(6) {
  transition-delay: 0.6s;
}
/* Process Section Base */
.mssp-process-sec {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f8f9fa;
  padding: 80px 0;
}

/* Process wrapper */
.mssp-process-wrapper {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

/* Process line with animation */
.mssp-process-line {
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #4a6bff 0%,
    #4a6bff 33%,
    #6c8eff 33%,
    #6c8eff 66%,
    #8fa5ff 66%,
    #8fa5ff 100%
  );
  z-index: 1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: drawLine 1.5s ease-out 0.5s forwards;
}

@keyframes drawLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Each process step */
.mssp-process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.mssp-process-step:nth-child(1) {
  animation-delay: 0.2s;
}
.mssp-process-step:nth-child(2) {
  animation-delay: 0.4s;
}
.mssp-process-step:nth-child(3) {
  animation-delay: 0.6s;
}
.mssp-process-step:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step number - Simple 1, 2, 3, 4 */
.mssp-step-number {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #4a6bff;
  background: rgba(74, 107, 255, 0.1);
  opacity: 0;
  animation: pulseIn 0.6s ease-out 1s forwards;
}

/* Remove the counter-increment since we're using hardcoded numbers */
@keyframes pulseIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Step icon with connecting animation */
.mssp-step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4a6bff, #6c8eff);
  position: relative;
  opacity: 0;
  transform: scale(0);
  animation: iconPopIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.2s forwards;
}

@keyframes iconPopIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Icon connection to line effect */
.mssp-step-icon::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: #4a6bff;
  opacity: 0;
  animation: connectLine 0.5s ease-out 1.8s forwards;
}

@keyframes connectLine {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 20px;
  }
}

.mssp-step-icon i {
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease;
}

/* Icon hover effect */
.mssp-process-step:hover .mssp-step-icon i {
  transform: rotate(15deg) scale(1.1);
}

.mssp-process-step:hover .mssp-step-icon::before {
  background: #3a5bef;
}

/* Step title */
.mssp-step-title {
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1.4s forwards;
}

/* Step description */
.mssp-step-desc {
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
  text-align: center;
  color: #666;
  font-size: 15px;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1.6s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Section title */
.mssp-sec-title {
  margin-bottom: 3rem;
  text-align: center;
}

.mssp-sub-title {
  margin-bottom: 10px;
  display: block;
  text-align: center;
  color: #4a6bff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

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

.mssp-title {
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  opacity: 0;
  animation: slideInRight 0.6s ease-out 0.2s forwards;
}

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

/* Responsive Adjustments */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .mssp-process-line {
    display: none;
  }

  .mssp-step-icon::before {
    display: none;
  }

  .mssp-process-step {
    margin-bottom: 2rem;
  }

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

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

  .mssp-step-title {
    font-size: 18px;
  }

  .mssp-step-desc {
    font-size: 14px;
  }

  .mssp-step-number {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
  }

  .row > div:nth-child(even) {
    padding-left: 0.5rem;
  }

  .row > div:nth-child(odd) {
    padding-right: 0.5rem;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .mssp-process-sec {
    padding: 60px 0;
  }

  .mssp-process-step {
    margin-bottom: 1.5rem;
  }

  .mssp-step-icon {
    width: 55px;
    height: 55px;
  }

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

  .mssp-step-title {
    font-size: 17px;
  }

  .mssp-step-desc {
    font-size: 13px;
  }

  .mssp-step-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }

  .mssp-title {
    font-size: 28px;
  }

  .row {
    margin: 0 -0.5rem;
  }

  .row > div {
    padding: 0 0.5rem;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  .mssp-process-sec {
    padding: 50px 0;
  }

  .mssp-process-step {
    margin-bottom: 1.5rem;
  }

  .mssp-step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
  }

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

  .mssp-step-desc {
    padding: 0 0.5rem;
    font-size: 12px;
  }

  .mssp-step-number {
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin-bottom: 1rem;
    font-size: 11px;
  }

  .mssp-step-title {
    font-size: 16px;
  }

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

  /* Stack columns vertically on mobile */
  .row {
    flex-direction: column;
  }

  .row > div {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 0;
  }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
  .mssp-process-step {
    margin-bottom: 1rem;
  }

  .mssp-step-icon {
    width: 45px;
    height: 45px;
  }

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

  .mssp-step-desc {
    padding: 0 0.25rem;
  }

  .mssp-step-number {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 10px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .mssp-process-line,
  .mssp-process-step,
  .mssp-step-number,
  .mssp-step-icon,
  .mssp-step-title,
  .mssp-step-desc,
  .mssp-sub-title,
  .mssp-title {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mssp-step-icon::before {
    animation: none !important;
    opacity: 1 !important;
    height: 20px !important;
  }

  .mssp-process-step:hover .mssp-step-icon i {
    transform: none;
  }
}

/* staff augmentation */
.staff-heading-primary,
.staff-heading-white {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #2a8ace, #7ee2ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.staff-heading-primary {
  color: #2a8ace;
}

.staff-heading-white {
  color: white;
}

.staff-heading-primary:after,
.staff-heading-white:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #2a8ace, #7ee2ef);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  animation: staff-title-line 1.5s ease-in-out infinite alternate;
}

@keyframes staff-title-line {
  0% {
    width: 80px;
    opacity: 0.8;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

/* ===== STAFF HERO SECTION ===== */
.staff-hero-section {
  --staff-primary: #2a8ace;
  --staff-secondary: #7ee2ef;
  --staff-accent: #1a6fb8;
  --staff-light: #b1e8f5;
  --staff-dark: #0a1a2a;
  --staff-text: #ffffff;
  --staff-text-secondary: #d1f0f7;
  --staff-success: #7ee2ef;
  --staff-warning: #f8b34e;
  --staff-danger: #ff6b6b;
  --staff-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --staff-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  --staff-shadow-hover: 0 25px 50px rgba(42, 138, 206, 0.3);
  --staff-radius: 16px;
  --staff-glow: 0 0 20px rgba(126, 226, 239, 0.3);
}

/* Hero Layout: Text Left, Stats Right */
.staff-hero-section {
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #0a1f38 0%, #0c2d48 50%, #0a1a2a 100%);
  overflow: hidden;
  margin-top: 30px;
}

.staff-hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(42, 138, 206, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(126, 226, 239, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(42, 138, 206, 0.05) 50%,
      transparent 70%
    );
  animation: staff-hero-gradient 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes staff-hero-gradient {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.staff-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Split Layout: Text Left, Stats Right */
.staff-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column: Text Content */
.staff-hero-text {
  padding-right: 40px;
}

.staff-main-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--staff-text);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    45deg,
    var(--staff-primary),
    var(--staff-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.staff-main-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--staff-primary),
    var(--staff-secondary)
  );
  bottom: -15px;
  left: 0;
  border-radius: 3px;
  animation: staff-title-line 1.5s ease-in-out infinite alternate;
}

.staff-subtitle {
  font-size: 1.2rem;
  color: var(--staff-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.staff-hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  color: var(--staff-text-secondary);
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
}

.staff-hero-text p:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--staff-secondary);
  font-size: 1.5rem;
}

/* Right Column: Stats Grid (2x2) */
.staff-stats-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.staff-stat-card {
  background: linear-gradient(
    145deg,
    rgba(42, 138, 206, 0.15),
    rgba(10, 26, 42, 0.3)
  );
  border-radius: var(--staff-radius);
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(126, 226, 239, 0.2);
  transition: var(--staff-transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.staff-stat-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(126, 226, 239, 0.1),
    transparent
  );
  transition: 0.8s;
}

.staff-stat-card:hover:before {
  left: 100%;
}

.staff-stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--staff-secondary);
  box-shadow: var(--staff-shadow-hover), var(--staff-glow);
  z-index: 10;
}

.staff-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--staff-secondary);
  margin-bottom: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(126, 226, 239, 0.5);
  display: inline-block;
  transition: var(--staff-transition);
}

.staff-stat-card:hover .staff-stat-number {
  color: #ffffff;
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(126, 226, 239, 0.8);
}

.staff-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--staff-text-secondary);
  position: relative;
  z-index: 1;
  transition: var(--staff-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.staff-stat-card:hover .staff-stat-label {
  color: var(--staff-secondary);
  letter-spacing: 1.5px;
}

/* ===== STAFF SERVICES SECTION ===== */
.staff-services-section {
  --staff-s-primary: #2a8ace;
  --staff-s-secondary: #7ee2ef;
  --staff-s-accent: #1a6fb8;
  --staff-s-light: #b1e8f5;
  --staff-s-dark: #0a1a2a;
  --staff-s-text: #333333;
  --staff-s-text-secondary: #666666;
  --staff-s-success: #7ee2ef;
  --staff-s-warning: #f8b34e;
  --staff-s-danger: #ff6b6b;
  --staff-s-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --staff-s-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --staff-s-shadow-hover: 0 15px 40px rgba(42, 138, 206, 0.2);
  --staff-s-radius: 12px;
  --staff-s-white: #ffffff;
}

.staff-services-section {
  padding: 80px 0;
  position: relative;
  background-color: var(--staff-s-white);
  overflow: hidden;
}

/* Section Heading with Gradient Effect */
.staff-services-section .staff-section-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--staff-s-primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--staff-s-primary),
    var(--staff-s-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.staff-services-section .staff-section-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--staff-s-primary),
    var(--staff-s-secondary)
  );
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

/* Service Card - All Equal Height */
.staff-service-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: var(--staff-s-radius);
  padding: 35px 30px;
  border-left: 5px solid var(--staff-s-primary);
  box-shadow: var(--staff-s-shadow);
  transition: var(--staff-s-transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  height: 320px; /* Equal height for all cards */
  display: flex;
  flex-direction: column;
}

.staff-service-card.staff-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--staff-s-shadow-hover);
  border-left-color: var(--staff-s-secondary);
}

.staff-service-icon {
  color: var(--staff-s-primary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--staff-s-transition);
}

.staff-service-card:hover .staff-service-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--staff-s-secondary);
}

.staff-service-card h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--staff-s-primary);
  margin-bottom: 15px;
  line-height: 1.3;
}

.staff-service-card p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--staff-s-text-secondary);
  margin-bottom: 0;
  flex-grow: 1;
}

.staff-service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(42, 138, 206, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
  transition: var(--staff-s-transition);
}

.staff-service-card:hover .staff-service-number {
  color: rgba(42, 138, 206, 0.2);
  transform: scale(1.1);
}

/* ===== STAFF BENEFITS SECTION ===== */
.staff-benefits-section {
  --staff-b-primary: #0c2d48;
  --staff-b-secondary: #2e8bc0;
  --staff-b-accent: #145da0;
  --staff-b-light: #b1d4e0;
  --staff-b-dark: #0a1a2a;
  --staff-b-text: #333333;
  --staff-b-text-secondary: #666666;
  --staff-b-success: #4cc9f0;
  --staff-b-warning: #f8961e;
  --staff-b-danger: #f94144;
  --staff-b-transition: all 0.4s ease;
  --staff-b-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --staff-b-radius: 8px;
  --staff-b-white: #ffffff;
}

.staff-benefits-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
}

/* Benefits Section Heading */
.staff-benefits-section .staff-section-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--staff-b-primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #2a8ace, #7ee2ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.staff-benefits-section .staff-section-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #2a8ace, #7ee2ef);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Circular Layout with Center Card */
.staff-benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left and Right Side Cards */
.staff-benefits-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.staff-benefit-side-card {
  background: var(--staff-b-white);
  border-radius: var(--staff-b-radius);
  padding: 30px;
  border-top: 5px solid var(--staff-b-secondary);
  box-shadow: var(--staff-b-shadow);
  transition: var(--staff-b-transition);
  opacity: 0;
  transform: translateX(-50px);
}

.staff-benefit-side-card:nth-child(even) {
  transform: translateX(50px);
}

.staff-benefit-side-card.staff-visible {
  opacity: 1;
  transform: translateX(0);
}

.staff-benefit-side-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top-color: var(--staff-b-success);
}

/* Center Main Card */
.staff-benefits-center {
  background: linear-gradient(
    135deg,
    var(--staff-b-secondary),
    var(--staff-b-accent)
  );
  border-radius: var(--staff-b-radius);
  padding: 50px 40px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.staff-benefits-center:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.staff-center-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  animation: staff-center-float 3s ease-in-out infinite;
}

@keyframes staff-center-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.staff-center-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.staff-center-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
}

.staff-benefit-side-card h4 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--staff-b-primary);
  margin-bottom: 10px;
}

.staff-benefit-side-card p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--staff-b-text-secondary);
  margin-bottom: 0;
}

/* ===== STAFF PROCESS SECTION ===== */
.staff-process-section {
  --staff-p-primary: #0c2d48;
  --staff-p-secondary: #2e8bc0;
  --staff-p-accent: #145da0;
  --staff-p-light: #b1d4e0;
  --staff-p-dark: #0a1a2a;
  --staff-p-text: #333333;
  --staff-p-text-secondary: #666666;
  --staff-p-success: #4cc9f0;
  --staff-p-warning: #f8961e;
  --staff-p-danger: #f94144;
  --staff-p-transition: all 0.4s ease;
  --staff-p-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --staff-p-radius: 8px;
  --staff-p-white: #ffffff;
}

.staff-process-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #0a1f38 0%, #0c2d48 50%, #0a1a2a 100%);
  overflow: hidden;
}

.staff-process-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 70%,
      rgba(42, 138, 206, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(126, 226, 239, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

/* Process Section Heading - White Gradient */
.staff-process-section .staff-section-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #ffffff, #7ee2ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.staff-process-section .staff-section-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ffffff, #7ee2ef);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Timeline Layout */
.staff-timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}

.staff-timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--staff-p-secondary),
    var(--staff-p-success)
  );
  z-index: 1;
}

.staff-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.staff-timeline-item.staff-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.staff-timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--staff-p-radius);
  padding: 30px;
  border: 1px solid rgba(126, 226, 239, 0.2);
  box-shadow: var(--staff-p-shadow);
  transition: var(--staff-p-transition);
}

.staff-timeline-item:hover .staff-timeline-content {
  transform: translateY(-5px);
  border-color: var(--staff-p-secondary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.staff-timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--staff-p-secondary),
    var(--staff-p-success)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
  border: 3px solid var(--staff-p-dark);
  box-shadow: 0 0 0 5px rgba(42, 138, 206, 0.3);
}

.staff-timeline-icon {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--staff-p-secondary);
}

.staff-timeline-content h4 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.staff-timeline-content p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .staff-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .staff-benefits-side {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .staff-benefit-side-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
  }
}

@media (max-width: 992px) {
  .staff-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .staff-hero-text {
    padding-right: 0;
    text-align: center;
  }

  .staff-main-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .staff-services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .staff-service-card {
    height: auto;
    min-height: 300px;
  }

  .staff-timeline:before {
    left: 30px;
  }

  .staff-timeline-item {
    flex-direction: row !important;
    margin-left: 60px;
  }

  .staff-timeline-marker {
    left: 30px;
    transform: translateX(-50%);
  }

  .staff-timeline-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .staff-hero-section,
  .staff-services-section,
  .staff-benefits-section,
  .staff-process-section {
    padding: 60px 0;
  }

  .staff-main-title,
  .staff-section-title {
    font-size: 2.2rem;
  }

  .staff-stats-right {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .staff-stat-card {
    padding: 25px 20px;
  }

  .staff-stat-number {
    font-size: 2.5rem;
  }

  .staff-service-card {
    padding: 30px 25px;
    height: auto;
    min-height: 280px;
  }

  .staff-service-icon {
    font-size: 2.5rem;
  }

  .staff-benefits-center {
    padding: 40px 30px;
  }

  .staff-center-icon {
    font-size: 3.5rem;
  }

  .staff-center-title {
    font-size: 1.8rem;
  }

  .staff-benefit-side-card {
    padding: 25px 20px;
  }

  .staff-timeline-content {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .staff-hero-section,
  .staff-services-section,
  .staff-benefits-section,
  .staff-process-section {
    padding: 50px 0;
  }

  .staff-main-title,
  .staff-section-title {
    font-size: 1.9rem;
  }

  .staff-stat-number {
    font-size: 2.2rem;
  }

  .staff-service-card h3,
  .staff-timeline-content h4 {
    font-size: 1.4rem;
  }

  .staff-service-card p,
  .staff-timeline-content p {
    font-size: 1rem;
  }

  .staff-benefit-side-card h4 {
    font-size: 1.2rem;
  }

  .staff-benefit-side-card p {
    font-size: 1rem;
  }

  .staff-timeline-item {
    margin-left: 40px;
  }

  .staff-timeline-marker {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Ensure content stays above background */
.staff-container,
.staff-hero-content,
.staff-stats-right,
.staff-services-grid,
.staff-benefits-wrapper,
.staff-timeline {
  position: relative;
  z-index: 1;
}

/* Animation delays */
.staff-stat-card:nth-child(1) {
  animation-delay: 0.1s;
}
.staff-stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.staff-stat-card:nth-child(3) {
  animation-delay: 0.3s;
}
.staff-stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

.staff-service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.staff-service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.staff-service-card:nth-child(3) {
  transition-delay: 0.3s;
}
.staff-service-card:nth-child(4) {
  transition-delay: 0.4s;
}
.staff-service-card:nth-child(5) {
  transition-delay: 0.5s;
}
.staff-service-card:nth-child(6) {
  transition-delay: 0.6s;
}

.staff-benefit-side-card:nth-child(1) {
  transition-delay: 0.1s;
}
.staff-benefit-side-card:nth-child(2) {
  transition-delay: 0.2s;
}
.staff-benefit-side-card:nth-child(3) {
  transition-delay: 0.3s;
}
.staff-benefit-side-card:nth-child(4) {
  transition-delay: 0.4s;
}

.staff-timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}
.staff-timeline-item:nth-child(2) {
  transition-delay: 0.2s;
}
.staff-timeline-item:nth-child(3) {
  transition-delay: 0.3s;
}
.staff-timeline-item:nth-child(4) {
  transition-delay: 0.4s;
}

/* home page about */
.aboutus-v2-section {
  --primary-v2: #2a8ace;
  --secondary-v2: #7ee2ef;
  --accent-v2: #1a6fb8;
  --dark-v2: #0a1a2a;
  --light-v2: #ffffff;
  --gradient-v2: linear-gradient(135deg, #2a8ace 0%, #1a6fb8 100%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Plain Background with Subtle Gradient */
.aboutus-v2-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(42, 138, 206, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(126, 226, 239, 0.03) 0%,
      transparent 50%
    );
}

/* Subtle Wave Animation */
.aboutus-v2-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232a8ace" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  animation: aboutus-v2-wave-move 20s linear infinite;
  opacity: 0.5;
}

@keyframes aboutus-v2-wave-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Main Content */
.aboutus-v2-content {
  position: relative;
  z-index: 2;
}

/* Image Container with New Effects */
.aboutus-v2-img-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(10, 26, 42, 0.15);
  transform-style: preserve-3d;
  perspective: 1000px;
  border: 1px solid rgba(42, 138, 206, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutus-v2-img-container:hover {
  box-shadow:
    0 30px 60px -12px rgba(42, 138, 206, 0.2),
    0 0 0 1px rgba(42, 138, 206, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.aboutus-v2-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1) saturate(1);
  transform-origin: center center;
}

/* Morph Effect on Hover */
.aboutus-v2-img-container:hover .aboutus-v2-main-img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.05) saturate(1.2) contrast(1.1);
  animation: aboutus-v2-morph-glow 2s ease-in-out infinite alternate;
}

@keyframes aboutus-v2-morph-glow {
  0% {
    filter: brightness(1.05) saturate(1.2) contrast(1.1);
  }
  100% {
    filter: brightness(1.08) saturate(1.3) contrast(1.15);
  }
}

/* Image Frame Effects */
.aboutus-v2-img-frame {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid transparent;
  border-radius: 28px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(42, 138, 206, 0.1),
    transparent
  );
  background-size: 200% 200%;
}

.aboutus-v2-img-container:hover .aboutus-v2-img-frame {
  opacity: 1;
  animation: aboutus-v2-border-shimmer 3s linear infinite;
}

@keyframes aboutus-v2-border-shimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

/* Experience Badge */
.aboutus-v2-experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--primary-v2), var(--accent-v2));
  padding: 25px;
  border-radius: 20px;
  color: white;
  box-shadow:
    0 15px 35px rgba(42, 138, 206, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  overflow: hidden;
}

.aboutus-v2-experience-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.aboutus-v2-img-container:hover .aboutus-v2-experience-badge {
  transform: translateY(-15px) scale(1.05);
  box-shadow:
    0 25px 45px rgba(42, 138, 206, 0.4),
    0 10px 20px rgba(0, 0, 0, 0.15);
}

.aboutus-v2-img-container:hover .aboutus-v2-experience-badge::before {
  left: 100%;
}

.aboutus-v2-year {
  display: block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(to right, #ffffff, #7ee2ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(126, 226, 239, 0.5);
  position: relative;
  z-index: 1;
}

.aboutus-v2-badge-text {
  display: block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 5px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* Content Area */
.aboutus-v2-content-area {
  padding-left: 60px;
}

/* Title Styling */
.aboutus-v2-subtitle {
  display: inline-block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-v2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.aboutus-v2-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary-v2);
  border-radius: 50%;
  animation: aboutus-v2-dot-pulse 2s ease-in-out infinite;
}

@keyframes aboutus-v2-dot-pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(42, 138, 206, 0.7);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 0 10px rgba(42, 138, 206, 0);
  }
}

/* Glowing Animated Title */
.aboutus-v2-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--dark-v2);
  position: relative;
}

.aboutus-v2-title span {
  display: inline-block;
  position: relative;
}

.aboutus-v2-title .glow-word {
  background: linear-gradient(45deg, var(--primary-v2), var(--secondary-v2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aboutus-v2-text-glow 3s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(42, 138, 206, 0.3);
  position: relative;
}

.aboutus-v2-title .glow-word::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-v2), var(--secondary-v2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.aboutus-v2-title .glow-word:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes aboutus-v2-text-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(42, 138, 206, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(42, 138, 206, 0.6));
  }
}

.aboutus-v2-title .underline-word {
  position: relative;
}

.aboutus-v2-title .underline-word::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-v2), var(--secondary-v2));
  transform: scaleX(0);
  transform-origin: left;
  animation: aboutus-v2-underline 4s ease-in-out infinite 1s;
}

@keyframes aboutus-v2-underline {
  0%,
  100% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
}

/* Description */
.aboutus-v2-description {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 30px;
  position: relative;
}

.aboutus-v2-description::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-v2), transparent);
  border-radius: 2px;
}

.aboutus-v2-description strong {
  color: var(--primary-v2);
  position: relative;
  font-weight: 700;
}

.aboutus-v2-description strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-v2);
  opacity: 0.5;
}

/* Stats Row */
.aboutus-v2-stats-row {
  display: flex;
  gap: 20px; /* Smaller gap */
  margin-bottom: 30px; /* Changed from 40px */
  position: relative;
}

.aboutus-v2-stat-item {
  text-align: center;
  position: relative;
  padding: 12px 16px; /* Reduced from 20px */
  border-radius: 10px; /* Reduced from 15px */
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05); /* Reduced shadow */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(42, 138, 206, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  min-width: 130px; /* Added min-width */
}

.aboutus-v2-stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 138, 206, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.aboutus-v2-stat-item:hover::before {
  left: 100%;
}

.aboutus-v2-stat-item:hover {
  transform: translateY(-5px) scale(1.03); /* Reduced from -10px and 1.05 */
  box-shadow: 0 15px 30px rgba(42, 138, 206, 0.12); /* Reduced shadow */
  border-color: rgba(42, 138, 206, 0.3);
}

.aboutus-v2-stat-number {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.2rem; /* Reduced from 3rem */
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-v2), var(--accent-v2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px; /* Reduced from 5px */
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.aboutus-v2-stat-item:hover .aboutus-v2-stat-number {
  transform: scale(1.1);
}

.aboutus-v2-stat-number::after {
  content: "+";
  position: absolute;
  right: -15px; /* Adjusted from -20px */
  top: 0;
  font-size: 1.1rem; /* Reduced from 1.5rem */
  color: var(--secondary-v2);
}

.aboutus-v2-stat-item:nth-child(2) .aboutus-v2-stat-number::after {
  content: "%";
}

.aboutus-v2-stat-desc {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.75rem; /* Reduced from 0.95rem */
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px; /* Reduced from 1px */
  transition: color 0.3s ease;
}

.aboutus-v2-stat-item:hover .aboutus-v2-stat-desc {
  color: var(--primary-v2);
}

/* Divider */
.aboutus-v2-stat-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary-v2),
    transparent
  );
  position: relative;
}

.aboutus-v2-stat-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--primary-v2);
  border-radius: 50%;
  animation: aboutus-v2-divider-pulse 2s infinite;
}

@keyframes aboutus-v2-divider-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(42, 138, 206, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 0 10px rgba(42, 138, 206, 0);
  }
}

/* Button */
.aboutus-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--primary-v2), var(--accent-v2));
  color: white;
  border: none;
  border-radius: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(42, 138, 206, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.1);
}

.aboutus-v2-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.aboutus-v2-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 20px 40px rgba(42, 138, 206, 0.4),
    0 10px 20px rgba(0, 0, 0, 0.15);
  color: white !important;
}

.aboutus-v2-btn:hover::before {
  left: 100%;
}

.aboutus-v2-btn i {
  transition: transform 0.3s ease;
}

.aboutus-v2-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .aboutus-v2-title {
    font-size: 2.5rem;
  }
  .aboutus-v2-content-area {
    padding-left: 40px;
  }
}

@media (max-width: 992px) {
  .aboutus-v2-section {
    padding: 80px 0;
  }

  .aboutus-v2-content-area {
    padding-left: 0;
    margin-top: 40px;
  }

  .aboutus-v2-title {
    font-size: 2.2rem;
  }

  .aboutus-v2-main-img {
    height: 400px;
  }

  .aboutus-v2-stats-row {
    gap: 30px;
  }

  .aboutus-v2-stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .aboutus-v2-title {
    font-size: 2rem;
  }

  .aboutus-v2-description {
    font-size: 1rem;
  }

  .aboutus-v2-stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .aboutus-v2-stat-divider {
    width: 100%;
    height: 1px;
  }

  .aboutus-v2-experience-badge {
    padding: 20px;
  }

  .aboutus-v2-year {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .aboutus-v2-title {
    font-size: 1.8rem;
  }

  .aboutus-v2-main-img {
    height: 300px;
  }

  .aboutus-v2-experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }

  .aboutus-v2-year {
    font-size: 2.5rem;
  }

  .aboutus-v2-btn {
    padding: 15px 25px;
    font-size: 0.9rem;
  }
}

/* partners and collaborators */
.partner-section {
  padding: 60px 5%;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.partner-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.partner-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
  position: relative;
  display: inline-block;
}

.partner-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: partner-title-line 2s infinite alternate;
}

@keyframes partner-title-line {
  0% {
    width: 60px;
  }
  100% {
    width: 80px;
  }
}

.partner-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 500px;
  margin: 20px auto 0;
  line-height: 1.5;
}

.partner-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  background: #e2e8f0;
  border-radius: 40px;
  padding: 4px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.partner-toggle-btn {
  flex: 1;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 2;
  position: relative;
}

.partner-toggle-btn.partner-active {
  color: white;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.partner-toggle-btn:hover:not(.partner-active) {
  background: rgba(255, 255, 255, 0.5);
  color: #334155;
}

.partner-container {
  position: relative;
  min-height: 400px;
  overflow: visible;
  margin-bottom: 25px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0.5s;
  pointer-events: none;
}

.partner-grid.partner-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
  pointer-events: auto;
  animation: partner-grid-fade 0.6s ease-out;
}

@keyframes partner-grid-fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-logo-card {
  background: white;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  animation: partner-card-float 3s ease-in-out infinite alternate;
}

.partner-logo-card::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
  bottom: -1.5px;
  border-radius: 17.5px;
  border: 1.5px solid transparent;
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.partner-logo-card:hover::before {
  border-color: #3b82f6;
  box-shadow:
    0 0 0 1.5px rgba(59, 130, 246, 0.1),
    0 10px 20px rgba(59, 130, 246, 0.2);
}

.partner-logo-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
  z-index: 10;
  animation-play-state: paused;
}

@keyframes partner-card-float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-4px);
  }
}

.partner-logo-card:nth-child(2) {
  animation-delay: 0.2s;
}
.partner-logo-card:nth-child(3) {
  animation-delay: 0.4s;
}
.partner-logo-card:nth-child(4) {
  animation-delay: 0.6s;
}
.partner-logo-card:nth-child(5) {
  animation-delay: 0.8s;
}
.partner-logo-card:nth-child(6) {
  animation-delay: 1s;
}
.partner-logo-card:nth-child(7) {
  animation-delay: 1.2s;
}
.partner-logo-card:nth-child(8) {
  animation-delay: 1.4s;
}
.partner-logo-card:nth-child(9) {
  animation-delay: 1.6s;
}
.partner-logo-card:nth-child(10) {
  animation-delay: 1.8s;
}
.partner-logo-card:nth-child(11) {
  animation-delay: 2s;
}
.partner-logo-card:nth-child(12) {
  animation-delay: 2.2s;
}

.partner-logo-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo-card:hover .partner-logo-container {
  transform: scale(1.08);
}

.partner-logo-shape {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  height: 75%;
  overflow: hidden;
  transition: all 0.3s ease;
  background: transparent;
}

.partner-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  padding: 12px;
}

.partner-logo-card:hover .partner-logo-image {
  transform: scale(1.05);
}

.partner-logo-shape::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(59, 130, 246, 0.08),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 1;
}

.partner-logo-card:hover .partner-logo-shape::before {
  transform: translateX(100%);
}

.partner-indicator {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-indicator-bar {
  width: 180px;
  height: 5px;
  background: #e2e8f0;
  border-radius: 2.5px;
  overflow: hidden;
  position: relative;
}

.partner-indicator-fill {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2.5px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
  }

  .partner-logo-card {
    height: 130px;
  }

  .partner-logo-shape {
    width: 70%;
    height: 70%;
  }
}

@media (max-width: 992px) {
  .partner-section {
    padding: 50px 4%;
  }

  .partner-title {
    font-size: 1.9rem;
  }

  .partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 18px;
  }

  .partner-logo-card {
    height: 120px;
  }

  .partner-logo-shape {
    width: 70%;
    height: 70%;
  }

  .partner-logo-image {
    padding: 10px;
  }
}

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

  .partner-subtitle {
    font-size: 0.95rem;
  }

  .partner-toggle {
    max-width: 280px;
    margin-bottom: 30px;
  }

  .partner-toggle-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }

  .partner-logo-card {
    height: 110px;
  }

  .partner-logo-shape {
    width: 70%;
    height: 70%;
  }
}

@media (max-width: 576px) {
  .partner-section {
    padding: 40px 3%;
  }

  .partner-title {
    font-size: 1.5rem;
  }

  .partner-subtitle {
    font-size: 0.9rem;
    margin-top: 12px;
  }

  .partner-toggle {
    margin-bottom: 25px;
    max-width: 240px;
  }

  .partner-toggle-btn {
    padding: 7px 16px;
    font-size: 0.85rem;
  }

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

  .partner-logo-card {
    height: 110px;
  }

  .partner-logo-shape {
    width: 75%;
    height: 75%;
  }

  .partner-logo-image {
    padding: 8px;
  }

  .partner-indicator {
    margin-top: 40px;
  }

  .partner-indicator-bar {
    width: 150px;
    height: 4px;
  }
}

/* Grid layouts - BOTH SAME SIZE */
@media (min-width: 768px) {
  #partner-collaborators-logos-grid,
  #partner-partners-logos-grid {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }
}

@media (min-width: 992px) {
  #partner-collaborators-logos-grid,
  #partner-partners-logos-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}

/* Threat Page */

.threat-section {
  --threat-primary: #2a8ace;
  --threat-secondary: #7ee2ef;
  --threat-accent: #1a6fb8;
  --threat-light: #b1e8f5;
  --threat-dark: #0a1a2a;
  --threat-text: #ffffff;
  --threat-text-secondary: #d1f0f7;
  --threat-success: #7ee2ef;
  --threat-warning: #f8b34e;
  --threat-danger: #ff6b6b;
  --threat-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --threat-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  --threat-shadow-hover: 0 25px 50px rgba(42, 138, 206, 0.3);
  --threat-radius: 16px;
  --threat-glow: 0 0 20px rgba(126, 226, 239, 0.3);
}

/* Enhanced Section Container */
.threat-section .threat-section-inner {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #0a1f38 0%, #0c2d48 50%, #0a1a2a 100%);
  overflow: hidden;
  margin-top: 30px;
}

/* Animated Background Elements */
.threat-section .threat-section-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(42, 138, 206, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(126, 226, 239, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(42, 138, 206, 0.05) 50%,
      transparent 70%
    );
  animation: threat-gradientShift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes threat-gradientShift {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

/* Container */
.threat-section .threat-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Enhanced Intro Content Layout */
.threat-section .threat-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

/* Enhanced Intro Text */
.threat-section .threat-intro-text {
  position: relative;
  padding: 30px;
  border-radius: var(--threat-radius);
  background: rgba(10, 26, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 138, 206, 0.2);
  box-shadow: var(--threat-shadow);
  transition: var(--threat-transition);
}

.threat-section .threat-intro-text:hover {
  transform: translateY(-5px);
  border-color: var(--threat-secondary);
  box-shadow: var(--threat-shadow-hover);
}

/* Enhanced Headings */
.threat-section .threat-heading {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--threat-text);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    45deg,
    var(--threat-primary),
    var(--threat-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.threat-section .threat-heading:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--threat-primary),
    var(--threat-secondary)
  );
  bottom: -15px;
  left: 0;
  border-radius: 3px;
  animation: threat-lineExpand 1.5s ease-in-out infinite alternate;
}

@keyframes threat-lineExpand {
  0% {
    width: 80px;
    opacity: 0.8;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

/* Enhanced Paragraphs */
.threat-section .threat-intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  color: var(--threat-text-secondary);
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.threat-section .threat-intro-text p:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--threat-secondary);
  font-size: 1.5rem;
}

/* Enhanced Stats Grid */
.threat-section .threat-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  position: relative;
}

/* Enhanced Stat Boxes */
.threat-section .threat-stat-box {
  background: linear-gradient(
    145deg,
    rgba(42, 138, 206, 0.15),
    rgba(10, 26, 42, 0.3)
  );
  border-radius: var(--threat-radius);
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(126, 226, 239, 0.2);
  transition: var(--threat-transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.threat-section .threat-stat-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(126, 226, 239, 0.1),
    transparent
  );
  transition: 0.8s;
}

.threat-section .threat-stat-box:hover:before {
  left: 100%;
}

.threat-section .threat-stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--threat-secondary);
  box-shadow: var(--threat-shadow-hover), var(--threat-glow);
  z-index: 10;
}

/* Enhanced Stat Numbers */
.threat-section .threat-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--threat-secondary);
  margin-bottom: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(126, 226, 239, 0.5);
  display: inline-block;
  transition: var(--threat-transition);
}

.threat-section .threat-stat-box:hover .threat-stat-number {
  color: #ffffff;
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(126, 226, 239, 0.8);
}

/* Enhanced Stat Labels */
.threat-section .threat-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--threat-text-secondary);
  position: relative;
  z-index: 1;
  transition: var(--threat-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.threat-section .threat-stat-box:hover .threat-stat-label {
  color: var(--threat-secondary);
  letter-spacing: 1.5px;
}

/* Decorative Elements for Stat Boxes */
.threat-section .threat-stat-box:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(126, 226, 239, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: var(--threat-transition);
}

.threat-section .threat-stat-box:hover:after {
  width: 200px;
  height: 200px;
}

/* Services Section */
.threat-services-section {
  --threat-services-primary: #2a8ace;
  --threat-services-secondary: #7ee2ef;
  --threat-services-accent: #1a6fb8;
  --threat-services-light: #b1e8f5;
  --threat-services-dark: #0a1a2a;
  --threat-services-text: #333333;
  --threat-services-text-secondary: #666666;
  --threat-services-success: #7ee2ef;
  --threat-services-warning: #f8b34e;
  --threat-services-danger: #ff6b6b;
  --threat-services-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --threat-services-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --threat-services-shadow-hover: 0 15px 40px rgba(42, 138, 206, 0.2);
  --threat-services-radius: 12px;
  --threat-services-white: #ffffff;
}

/* White background section */
.threat-services-section .threat-services-inner {
  padding: 80px 0;
  position: relative;
  background-color: var(--threat-services-white);
  overflow: hidden;
}

/* Container */
.threat-services-section .threat-services-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section heading for white background */
.threat-services-section .threat-services-heading {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--threat-services-primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--threat-services-primary),
    var(--threat-services-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.threat-services-section .threat-services-heading:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--threat-services-primary),
    var(--threat-services-secondary)
  );
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Services grid */
.threat-services-section .threat-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Fixed 3D Flip Card Effect */
.threat-services-section .threat-service-card {
  perspective: 1000px;
  height: 380px;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: threat-fadeInUp 0.6s ease forwards;
}

.threat-services-section .threat-service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.threat-services-section .threat-service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.threat-services-section .threat-service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.threat-services-section .threat-service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.threat-services-section .threat-service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.threat-services-section .threat-service-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes threat-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card container for 3D transform */
.threat-services-section .threat-card-container {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--threat-services-radius);
  box-shadow: var(--threat-services-shadow);
  will-change: transform;
  backface-visibility: hidden;
}

.threat-services-section .threat-service-card:hover .threat-card-container {
  transform: rotateY(180deg);
}

/* Mobile touch support */
@media (max-width: 768px) {
  .threat-services-section
    .threat-service-card.threat-flipped
    .threat-card-container {
    transform: rotateY(180deg);
  }
}

/* Card faces */
.threat-services-section .threat-card-front,
.threat-services-section .threat-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--threat-services-radius);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

/* Front face */
.threat-services-section .threat-card-front {
  background: linear-gradient(
    135deg,
    rgba(42, 138, 206, 0.95),
    rgba(42, 138, 206, 0.85)
  );
  transform: rotateY(0deg);
  border: 1px solid rgba(126, 226, 239, 0.2);
  justify-content: flex-start;
}

/* Back face */
.threat-services-section .threat-card-back {
  background: linear-gradient(135deg, #1a6fb8, #2a8ace);
  transform: rotateY(180deg);
  text-align: center;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(126, 226, 239, 0.3);
}

/* Card content styling */
.threat-services-section .threat-service-card h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--threat-services-white);
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.threat-services-section .threat-card-back h3 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.threat-services-section .threat-service-card p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.threat-services-section .threat-card-back p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 90%;
}

/* Service icons */
.threat-services-section .threat-service-icon {
  color: rgba(10, 26, 42, 0.3);
  font-size: 3rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  text-shadow: 0 0 15px rgba(126, 226, 239, 0.3);
}

.threat-services-section .threat-back-icon {
  font-size: 3.5rem;
  color: var(--threat-services-secondary);
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(126, 226, 239, 0.4);
  animation: threat-iconFloat 3s ease-in-out infinite;
}

@keyframes threat-iconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

/* Hover effect for front icon */
.threat-services-section
  .threat-service-card:hover
  .threat-card-front
  .threat-service-icon {
  transform: scale(1.1) rotate(5deg);
  color: #ffffff;
}

/* Enhanced hover effect */
.threat-services-section .threat-service-card:hover .threat-card-container {
  box-shadow:
    var(--threat-services-shadow-hover),
    0 0 25px rgba(126, 226, 239, 0.2);
}

/* Add decorative elements */
.threat-services-section .threat-card-front:before,
.threat-services-section .threat-card-back:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  animation: threat-shine 3s infinite linear;
  pointer-events: none;
  z-index: 1;
}

@keyframes threat-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Number indicators for cards */
.threat-services-section .threat-card-front:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--threat-services-secondary);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.threat-services-section
  .threat-service-card:nth-child(1)
  .threat-card-front:after {
  content: "01";
}

.threat-services-section
  .threat-service-card:nth-child(2)
  .threat-card-front:after {
  content: "02";
}

.threat-services-section
  .threat-service-card:nth-child(3)
  .threat-card-front:after {
  content: "03";
}

.threat-services-section
  .threat-service-card:nth-child(4)
  .threat-card-front:after {
  content: "04";
}

.threat-services-section
  .threat-service-card:nth-child(5)
  .threat-card-front:after {
  content: "05";
}

.threat-services-section
  .threat-service-card:nth-child(6)
  .threat-card-front:after {
  content: "06";
}

/* What We Deliver Section */
.threat-deliver-section {
  --threat-deliver-primary: #0c2d48;
  --threat-deliver-secondary: #2e8bc0;
  --threat-deliver-accent: #145da0;
  --threat-deliver-light: #b1d4e0;
  --threat-deliver-dark: #0a1a2a;
  --threat-deliver-text: #333333;
  --threat-deliver-text-secondary: #666666;
  --threat-deliver-success: #4cc9f0;
  --threat-deliver-warning: #f8961e;
  --threat-deliver-danger: #f94144;
  --threat-deliver-transition: all 0.4s ease;
  --threat-deliver-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --threat-deliver-radius: 8px;
  --threat-deliver-white: #ffffff;
}

/* Section with white background */
.threat-deliver-section .threat-deliver-inner {
  padding: 80px 0;
  position: relative;
  background-color: var(--threat-deliver-white);
}

/* Container */
.threat-deliver-section .threat-deliver-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section heading */
.threat-deliver-section .threat-deliver-heading {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--threat-deliver-primary);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.threat-deliver-section .threat-deliver-heading:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--threat-deliver-secondary),
    var(--threat-deliver-success)
  );
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Deliver content */
.threat-deliver-section .threat-deliver-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Deliver list */
.threat-deliver-section .threat-deliver-list {
  list-style: none;
  counter-reset: threat-deliver-counter;
  padding: 0;
}

/* Deliver items */
.threat-deliver-section .threat-deliver-item {
  background: rgba(12, 45, 72, 0.05);
  border-radius: var(--threat-deliver-radius);
  padding: 30px;
  margin-bottom: 25px;
  border-left: 5px solid var(--threat-deliver-secondary);
  position: relative;
  overflow: hidden;
  transition: var(--threat-deliver-transition);
  opacity: 0;
  transform: translateX(-50px);
  box-shadow: var(--threat-deliver-shadow);
  backdrop-filter: blur(5px);
}

.threat-deliver-section .threat-deliver-item.threat-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Alternate border colors */
.threat-deliver-section .threat-deliver-item:nth-child(even) {
  border-left-color: var(--threat-deliver-success);
}

.threat-deliver-section .threat-deliver-item:nth-child(3n) {
  border-left-color: var(--threat-deliver-accent);
}

/* Hover effects */
.threat-deliver-section .threat-deliver-item:hover {
  transform: translateX(10px);
  background: rgba(12, 45, 72, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Number counter */
.threat-deliver-section .threat-deliver-item:before {
  counter-increment: threat-deliver-counter;
  content: "0" counter(threat-deliver-counter);
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(76, 201, 240, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: var(--threat-deliver-transition);
}

.threat-deliver-section .threat-deliver-item:hover:before {
  color: rgba(76, 201, 240, 0.2);
  transform: scale(1.1);
}

/* Item headings */
.threat-deliver-section .threat-deliver-item h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--threat-deliver-primary);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Item paragraphs */
.threat-deliver-section .threat-deliver-item p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--threat-deliver-text-secondary);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* ROADMAP SECTION - Fixed with proper z-index */
.threat-roadmap-section {
  --threat-roadmap-primary: #2a8ace;
  --threat-roadmap-secondary: #7ee2ef;
  --threat-roadmap-accent: #1a6fb8;
  --threat-roadmap-light: #e3f7fa;
  --threat-roadmap-dark: #0a1a2a;
  --threat-roadmap-text: #333333;
  --threat-roadmap-text-secondary: #666666;
  --threat-roadmap-transition: all 0.4s ease;
  --threat-roadmap-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --threat-roadmap-radius: 12px;
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}

.threat-roadmap-section .threat-roadmap-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.threat-roadmap-section .threat-roadmap-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.threat-roadmap-section .threat-roadmap-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--threat-roadmap-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.threat-roadmap-section .threat-roadmap-main-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--threat-roadmap-dark);
  margin: 0;
  line-height: 1.2;
}

.threat-roadmap-section .threat-roadmap-wrapper {
  position: relative;
  padding: 60px 0 40px;
}

/* Fixed: Line should be behind content */
.threat-roadmap-section .threat-roadmap-line {
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--threat-roadmap-primary),
    var(--threat-roadmap-secondary)
  );
  transform: translateY(-50%);
  z-index: 1; /* Line behind content */
  border-radius: 2px;
}

.threat-roadmap-section .threat-roadmap-steps {
  position: relative;
  z-index: 2; /* Steps above the line */
}

.threat-roadmap-section .threat-roadmap-step {
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
}

/* Fixed: Number circles with proper z-index */
.threat-roadmap-section .threat-step-number {
  width: 70px;
  height: 70px;
  background: var(--threat-roadmap-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
  z-index: 3; /* Numbers above everything */
  border: 5px solid white;
  box-shadow: 0 0 0 4px rgba(42, 138, 206, 0.2);
  transition: var(--threat-roadmap-transition);
}

.threat-roadmap-section .threat-roadmap-step:hover .threat-step-number {
  background: var(--threat-roadmap-secondary);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(126, 226, 239, 0.3);
}

.threat-roadmap-section .threat-step-icon {
  font-size: 2.5rem;
  color: var(--threat-roadmap-secondary);
  margin-bottom: 20px;
  transition: var(--threat-roadmap-transition);
  position: relative;
  z-index: 3;
}

.threat-roadmap-section .threat-roadmap-step:hover .threat-step-icon {
  color: var(--threat-roadmap-primary);
  transform: scale(1.1);
}

.threat-roadmap-section .threat-step-content {
  position: relative;
  z-index: 3;
}

.threat-roadmap-section .threat-step-content h4 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--threat-roadmap-dark);
  margin-bottom: 15px;
}

.threat-roadmap-section .threat-step-content p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--threat-roadmap-text-secondary);
  margin: 0;
}

/* Responsive design */
@media (max-width: 1200px) {
  .threat-services-section .threat-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .threat-section .threat-intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .threat-section .threat-heading {
    font-size: 2.5rem;
  }

  .threat-section .threat-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .threat-services-section .threat-services-heading {
    font-size: 2.5rem;
  }

  .threat-deliver-section .threat-deliver-content {
    max-width: 100%;
  }

  .threat-roadmap-section .threat-roadmap-main-title {
    font-size: 2.2rem;
  }

  .threat-roadmap-section .threat-roadmap-line {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 768px) {
  .threat-section .threat-section-inner {
    padding: 70px 0;
  }

  .threat-section .threat-heading {
    font-size: 2rem;
    text-align: center;
  }

  .threat-section .threat-intro-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .threat-section .threat-stat-number {
    font-size: 2.5rem;
  }

  .threat-section .threat-intro-text {
    padding: 25px;
  }

  .threat-services-section .threat-services-inner {
    padding: 60px 0;
  }

  .threat-services-section .threat-services-heading {
    font-size: 2.2rem;
    width: 100%;
    text-align: center;
  }

  .threat-services-section .threat-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .threat-services-section .threat-service-card {
    height: 350px;
  }

  .threat-services-section .threat-card-front,
  .threat-services-section .threat-card-back {
    padding: 30px 25px;
  }

  .threat-services-section .threat-service-icon,
  .threat-services-section .threat-back-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .threat-services-section .threat-service-card h3 {
    font-size: 1.6rem;
  }

  .threat-services-section .threat-service-card p {
    font-size: 1.05rem;
  }

  .threat-deliver-section .threat-deliver-inner {
    padding: 60px 0;
  }

  .threat-deliver-section .threat-deliver-heading {
    font-size: 1.8rem;
  }

  .threat-deliver-section .threat-deliver-item {
    padding: 25px;
    margin-bottom: 20px;
  }

  .threat-deliver-section .threat-deliver-item h3 {
    font-size: 1.5rem;
  }

  .threat-deliver-section .threat-deliver-item p {
    font-size: 1rem;
  }

  .threat-deliver-section .threat-deliver-item:before {
    font-size: 2.5rem;
    top: 15px;
    right: 15px;
  }

  /* Roadmap responsive for mobile */
  .threat-roadmap-section {
    padding: 60px 0;
  }

  .threat-roadmap-section .threat-roadmap-wrapper {
    padding: 40px 0 20px;
  }

  .threat-roadmap-section .threat-roadmap-line {
    display: none; /* Hide line on mobile */
  }

  .threat-roadmap-section .threat-roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .threat-roadmap-section .threat-roadmap-step {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .threat-roadmap-section .threat-step-number {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

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

  .threat-section .threat-heading {
    font-size: 1.8rem;
  }

  .threat-section .threat-intro-content {
    gap: 30px;
  }

  .threat-section .threat-stat-box {
    padding: 25px 20px;
  }

  .threat-section .threat-stat-number {
    font-size: 2.2rem;
  }

  .threat-services-section .threat-services-inner {
    padding: 50px 0;
  }

  .threat-services-section .threat-services-heading {
    font-size: 1.9rem;
  }

  .threat-services-section .threat-service-card {
    height: 320px;
  }

  .threat-services-section .threat-card-front,
  .threat-services-section .threat-card-back {
    padding: 25px 20px;
  }

  .threat-services-section .threat-service-card h3 {
    font-size: 1.4rem;
  }

  .threat-services-section .threat-service-card p {
    font-size: 1rem;
  }

  .threat-deliver-section .threat-deliver-inner {
    padding: 40px 0;
  }

  .threat-deliver-section .threat-deliver-heading {
    font-size: 1.5rem;
  }

  .threat-deliver-section .threat-deliver-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .threat-deliver-section .threat-deliver-item:before {
    font-size: 2rem;
    position: relative;
    top: 0;
    right: 0;
    display: block;
    margin-bottom: 10px;
    color: rgba(76, 201, 240, 0.3);
  }

  .threat-roadmap-section {
    padding: 40px 0;
  }

  .threat-roadmap-section .threat-roadmap-main-title {
    font-size: 1.8rem;
  }

  .threat-roadmap-section .threat-step-content h4 {
    font-size: 1.3rem;
  }

  .threat-roadmap-section .threat-step-content p {
    font-size: 1rem;
  }
}

/* Animation Delays for Stats */
.threat-section .threat-stat-box:nth-child(1) {
  animation-delay: 0.1s;
}
.threat-section .threat-stat-box:nth-child(2) {
  animation-delay: 0.2s;
}
.threat-section .threat-stat-box:nth-child(3) {
  animation-delay: 0.3s;
}
.threat-section .threat-stat-box:nth-child(4) {
  animation-delay: 0.4s;
}

/* Ensure content stays above background */
.threat-section .threat-container,
.threat-section .threat-intro-content,
.threat-section .threat-intro-text,
.threat-section .threat-intro-stats {
  position: relative;
  z-index: 2;
}

/* Animation keyframes */
@keyframes threat-deliverFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add subtle background pattern */
.threat-deliver-section .threat-deliver-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(46, 139, 192, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(76, 201, 240, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

/* Ensure content stays above background */
.threat-deliver-section .threat-deliver-container,
.threat-deliver-section .threat-deliver-content,
.threat-deliver-section .threat-deliver-list,
.threat-deliver-section .threat-deliver-item {
  position: relative;
  z-index: 1;
}

/* About Page */
/* About Page */
.aboutus-interactive-section {
  --primary: #2a8ace;
  --secondary: #7ee2ef;
  --accent: #1a6fb8;
  --dark: #0a1a2a;
  --light: #ffffff;
  --gray: #f8fafc;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* Background Animation */
.aboutus-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.aboutus-bg-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(40px);
}

.aboutus-p1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: aboutus-float-particle 20s ease-in-out infinite;
}

.aboutus-p2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -100px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  animation: aboutus-float-particle 25s ease-in-out infinite reverse;
}

.aboutus-p3 {
  width: 250px;
  height: 250px;
  bottom: -125px;
  left: 30%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation: aboutus-float-particle 30s ease-in-out infinite 5s;
}

.aboutus-p4 {
  width: 180px;
  height: 180px;
  top: 30%;
  left: 10%;
  background: radial-gradient(circle, var(--dark) 0%, transparent 70%);
  animation: aboutus-float-particle 22s ease-in-out infinite 10s;
}

@keyframes aboutus-float-particle {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(100px, -50px) rotate(90deg);
  }
  50% {
    transform: translate(50px, 100px) rotate(180deg);
  }
  75% {
    transform: translate(-100px, 50px) rotate(270deg);
  }
}

/* Section Header */
.aboutus-section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.aboutus-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(42, 138, 206, 0.1);
  padding: 12px 25px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(42, 138, 206, 0.2);
  position: relative;
  overflow: hidden;
}

.aboutus-badge-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
}

.aboutus-glitch-text {
  animation: aboutus-glitch 3s infinite;
}

@keyframes aboutus-glitch {
  0%,
  100% {
    transform: translate(0);
    text-shadow: none;
  }
  10% {
    transform: translate(-1px, 1px);
    text-shadow: 2px 0 var(--secondary);
  }
  20% {
    transform: translate(1px, -1px);
    text-shadow: -2px 0 var(--primary);
  }
  30% {
    transform: translate(-1px, -1px);
    text-shadow: 2px 2px var(--accent);
  }
}

.aboutus-badge-spark {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: aboutus-sparkle 1.5s ease-in-out infinite;
}

@keyframes aboutus-sparkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 10px var(--secondary);
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
    box-shadow: 0 0 20px var(--secondary);
  }
}

.aboutus-main-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.aboutus-title-word {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}

.aboutus-title-1 {
  color: var(--dark);
  animation: aboutus-word-float 3s ease-in-out infinite;
}

.aboutus-title-2 {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aboutus-word-glow 2s ease-in-out infinite;
}

.aboutus-title-3 {
  color: var(--dark);
  position: relative;
}

.aboutus-title-3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  animation: aboutus-line-expand 3s ease-in-out infinite;
}

@keyframes aboutus-word-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes aboutus-word-glow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(42, 138, 206, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(42, 138, 206, 0.5);
  }
}

@keyframes aboutus-line-expand {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.aboutus-sub-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.3rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: inline-block;
}

.aboutus-sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary));
}

.aboutus-sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* Content Wrapper - MODIFIED for alignment */
.aboutus-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  align-items: start; /* Align all columns at top */
}

/* Left Column - Interactive Cards - MODIFIED to match right cards */
.aboutus-content-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 500px; /* Match center image height */
  justify-content: space-between; /* Distribute cards evenly */
}

.aboutus-interactive-card {
  background: white;
  border-radius: 24px;
  padding: 25px; /* Keep same as right cards */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); /* Same as right cards */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  flex: 1; /* Make cards flexible */
  display: flex;
  flex-direction: column;
}

/* SAME EFFECTS AS RIGHT CARDS - transform on hover */
.aboutus-interactive-card:hover {
  transform: translateY(-10px); /* Same upward movement */
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(42, 138, 206, 0.15); /* Same as right cards */
}

/* Blue line from left side - SAME AS BEFORE */
.aboutus-interactive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0; /* CHANGED from transform to opacity like right cards */
  transition: opacity 0.3s ease; /* CHANGED to match right cards */
}

.aboutus-interactive-card:hover::before {
  opacity: 1; /* CHANGED to match right cards */
  transform: none;
}

/* Keep float animations for left cards */
.aboutus-card-1 {
  animation: aboutus-card-float 6s ease-in-out infinite;
}

.aboutus-card-2 {
  animation: aboutus-card-float 6s ease-in-out infinite 0.5s;
}

@keyframes aboutus-card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.aboutus-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(42, 138, 206, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--primary);
  transition: var(--transition);
}

/* icon hover effect */
.aboutus-interactive-card:hover .aboutus-card-icon {
  background: rgba(42, 138, 206, 0.2);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(42, 138, 206, 0.2);
}

.aboutus-icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.aboutus-card-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.aboutus-card-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.aboutus-card-hover-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.aboutus-interactive-card:hover .aboutus-card-hover-content {
  max-height: 80px;
}

.aboutus-tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.aboutus-tech-tag {
  padding: 5px 12px;
  background: rgba(42, 138, 206, 0.1);
  color: var(--primary);
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.aboutus-tech-tag:hover {
  background: rgba(42, 138, 206, 0.2);
  transform: translateY(-2px);
}

.aboutus-partner-stats {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

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

.aboutus-stat-number {
  display: block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.aboutus-stat-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
}

/* Center Column - Interactive Image */
.aboutus-content-center {
  position: relative;
}

.aboutus-image-container {
  position: relative;
}

.aboutus-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
  height: 500px;
}

.aboutus-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutus-image-frame:hover .aboutus-main-image {
  transform: scale(1.05) rotateX(5deg) rotateY(5deg);
}

.aboutus-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(10, 26, 42, 0.9));
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.aboutus-image-frame:hover .aboutus-image-overlay {
  transform: translateY(0);
}

.aboutus-overlay-content {
  text-align: center;
  color: white;
}

.aboutus-floating-icon {
  width: 60px;
  height: 60px;
  background: rgba(126, 226, 239, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary);
  animation: aboutus-icon-float 3s ease-in-out infinite;
}

.aboutus-floating-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

@keyframes aboutus-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.aboutus-overlay-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.aboutus-overlay-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  opacity: 0.9;
}

.aboutus-image-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  pointer-events: none;
}

.aboutus-decoration-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  animation: aboutus-pulse 2s ease-in-out infinite;
}

@keyframes aboutus-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(126, 226, 239, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 10px rgba(126, 226, 239, 0);
  }
}

/* Right Column - Features - UNCHANGED */
.aboutus-content-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-height: 500px; /* Match center image height */
  justify-content: space-between; /* Distribute features evenly */
}

.aboutus-feature-item {
  background: white;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.aboutus-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(42, 138, 206, 0.15);
}

.aboutus-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aboutus-feature-item:hover::before {
  opacity: 1;
}

.aboutus-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(42, 138, 206, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.aboutus-feature-1 .aboutus-feature-icon,
.aboutus-feature-2 .aboutus-feature-icon,
.aboutus-feature-3 .aboutus-feature-icon {
  animation: aboutus-icon-float-small 2s ease-in-out infinite;
}

.aboutus-feature-item:hover .aboutus-feature-icon {
  background: rgba(42, 138, 206, 0.2);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(42, 138, 206, 0.2);
}

@keyframes aboutus-icon-float-small {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.aboutus-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.aboutus-feature-content {
  flex: 1;
}

.aboutus-feature-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.aboutus-feature-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

.aboutus-feature-3 {
  position: relative;
  padding: 25px !important;
  border-radius: 20px !important;
  animation: none;
}

.aboutus-feature-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aboutus-feature-3:hover {
  transform: translateX(10px) !important;
  box-shadow: 0 15px 40px rgba(42, 138, 206, 0.15) !important;
  border-color: transparent !important;
}

.aboutus-feature-3:hover::before {
  opacity: 1;
  transform: none !important;
}

.aboutus-feature-3 .aboutus-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(42, 138, 206, 0.1);
  margin-bottom: 0;
  align-self: center;
  animation: aboutus-icon-float-small 2s ease-in-out infinite;
}

.aboutus-feature-3:hover .aboutus-feature-icon {
  background: rgba(42, 138, 206, 0.2);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(42, 138, 206, 0.2);
  animation: none;
}

/* About Statement Section - No Grey Background */
.about-statement-section {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.about-statement-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Background shapes - subtle */
.about-statement-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(40px);
  animation: about-statement-shape-float 25s infinite ease-in-out;
  z-index: 0;
}

.about-statement-bg-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary, #3b82f6);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.about-statement-bg-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--secondary, #10b981);
  bottom: -100px;
  left: -80px;
  animation-delay: -10s;
}

@keyframes about-statement-shape-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.05;
  }
  33% {
    transform: translate(30px, -20px) scale(1.1);
    opacity: 0.08;
  }
  66% {
    transform: translate(-20px, 15px) scale(0.9);
    opacity: 0.03;
  }
}

/* Quote marks - very subtle */
.about-statement-quote {
  position: absolute;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 120px;
  color: rgba(59, 130, 246, 0.02);
  font-weight: bold;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.about-statement-quote-left {
  top: 10px;
  left: 20px;
}

.about-statement-quote-right {
  bottom: 10px;
  right: 20px;
}

/* Header - compact */
.about-statement-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.about-statement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary, #3b82f6),
    var(--secondary, #10b981)
  );
  border-radius: 12px;
  margin-bottom: 15px;
  animation: about-statement-icon-glow 3s infinite ease-in-out;
}

.about-statement-icon-svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

@keyframes about-statement-icon-glow {
  0%,
  100% {
    box-shadow:
      0 4px 12px rgba(59, 130, 246, 0.2),
      0 0 0 1px rgba(59, 130, 246, 0.1);
  }
  50% {
    box-shadow:
      0 6px 20px rgba(59, 130, 246, 0.3),
      0 0 0 1px rgba(59, 130, 246, 0.2);
  }
}

.about-statement-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary, #1e293b);
  margin-bottom: 10px;
  background: linear-gradient(
    135deg,
    var(--primary, #3b82f6),
    var(--secondary, #10b981)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-statement-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary, #3b82f6),
    var(--secondary, #10b981)
  );
  margin: 0 auto;
  border-radius: 2px;
  animation: about-statement-underline-grow 1s ease-out;
}

@keyframes about-statement-underline-grow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

/* Text content - more compact */
.about-statement-text-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 30px;
}

.about-statement-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.about-statement-highlight {
  position: relative;
  color: var(--primary, #3b82f6);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0 2px;
  border-radius: 3px;
}

.about-statement-highlight:hover {
  color: white;
  background: var(--primary, #3b82f6);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.about-statement-emphasis {
  position: relative;
  color: var(--secondary, #10b981);
  font-weight: 600;
  cursor: pointer;
  padding: 0 2px;
  transition: all 0.2s ease;
  border-radius: 3px;
}

.about-statement-emphasis:hover {
  color: white;
  background: var(--secondary, #10b981);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.about-statement-future {
  position: relative;
  color: var(--accent, #8b5cf6);
  font-weight: 600;
  cursor: pointer;
  padding: 0 2px;
  transition: all 0.2s ease;
  border-radius: 3px;
}

.about-statement-future:hover {
  color: white;
  background: var(--accent, #8b5cf6);
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
  animation: about-statement-future-pulse 1.5s infinite;
}

@keyframes about-statement-future-pulse {
  0%,
  100% {
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
  }
  50% {
    box-shadow: 0 2px 15px rgba(139, 92, 246, 0.5);
  }
}

/* Compact trust indicator */
.about-statement-trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.about-statement-trust-visual {
  position: relative;
  width: 70px;
  height: 70px;
}

.about-statement-trust-circle {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-statement-trust-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: about-statement-ring-rotate 6s linear infinite;
}

.about-statement-trust-ring-1 {
  border-top-color: rgba(59, 130, 246, 0.4);
  animation-delay: 0s;
}

.about-statement-trust-ring-2 {
  border-right-color: rgba(16, 185, 129, 0.4);
  animation-delay: -0.5s;
}

@keyframes about-statement-ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-statement-trust-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background: linear-gradient(
    135deg,
    var(--primary, #3b82f6),
    var(--secondary, #10b981)
  );
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.25);
}

.about-statement-trust-info {
  display: flex;
  align-items: center;
}

.about-statement-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.about-statement-trust-badge:hover {
  transform: translateY(-2px);
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.about-statement-badge-icon {
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  width: 18px;
  height: 18px;
  background: var(--secondary, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-statement-badge-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary, #10b981);
}

/* Compact service pills */
.about-statement-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.about-statement-service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.about-statement-service-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(226, 232, 240, 0.8);
  background: white;
}

.about-statement-service-cybersecurity:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, white, rgba(59, 130, 246, 0.05));
}

.about-statement-service-oem:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, white, rgba(16, 185, 129, 0.05));
}

.about-statement-service-validation:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, white, rgba(139, 92, 246, 0.05));
}

.about-statement-service-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.about-statement-service-pill:hover .about-statement-service-icon {
  transform: scale(1.1);
}

.about-statement-service-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary, #1e293b);
  transition: color 0.2s ease;
}

.about-statement-service-cybersecurity:hover .about-statement-service-text {
  color: var(--primary, #3b82f6);
}

.about-statement-service-oem:hover .about-statement-service-text {
  color: var(--secondary, #10b981);
}

.about-statement-service-validation:hover .about-statement-service-text {
  color: var(--accent, #8b5cf6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-statement-container {
    padding: 35px 25px;
  }

  .about-statement-text {
    font-size: 1rem;
  }

  .about-statement-trust-wrapper {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .about-statement-section {
    padding: 30px 15px;
  }

  .about-statement-container {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .about-statement-title {
    font-size: 1.5rem;
  }

  .about-statement-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .about-statement-services {
    gap: 10px;
  }

  .about-statement-service-pill {
    padding: 8px 16px;
  }

  .about-statement-service-text {
    font-size: 0.8rem;
  }

  .about-statement-quote {
    font-size: 80px;
  }

  .about-statement-quote-left {
    top: 5px;
    left: 10px;
  }

  .about-statement-quote-right {
    bottom: 5px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .about-statement-container {
    padding: 25px 15px;
  }

  .about-statement-trust-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .about-statement-trust-visual {
    width: 60px;
    height: 60px;
  }

  .about-statement-services {
    flex-direction: column;
    align-items: center;
  }

  .about-statement-service-pill {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }

  .about-statement-icon {
    width: 40px;
    height: 40px;
  }

  .about-statement-icon-svg {
    width: 20px;
    height: 20px;
  }
}

/* Add floating effect on hover for container */
.about-statement-container:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-statement-container {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .aboutus-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .aboutus-content-right {
    grid-column: span 2;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .aboutus-feature-item {
    flex: 1;
    min-width: 300px;
  }
}

@media (max-width: 992px) {
  .aboutus-main-title {
    font-size: 3rem;
  }

  .aboutus-content-wrapper {
    grid-template-columns: 1fr;
  }

  .aboutus-content-right {
    grid-column: 1;
    flex-direction: column;
  }

  .aboutus-feature-item {
    min-width: 100%;
  }

  .aboutus-content-left,
  .aboutus-content-right {
    min-height: auto;
    justify-content: flex-start;
  }

  .aboutus-image-frame {
    height: 400px;
  }

  .aboutus-statement-section {
    padding: 40px 30px;
  }

  .aboutus-statement-text {
    font-size: 1.2rem;
  }
}

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

  .aboutus-main-title {
    font-size: 2.5rem;
  }

  .aboutus-sub-title {
    font-size: 1.1rem;
  }

  .aboutus-content-wrapper {
    gap: 30px;
  }

  .aboutus-interactive-card,
  .aboutus-feature-item {
    padding: 25px 20px;
  }

  .aboutus-image-frame {
    height: 350px;
  }

  .aboutus-image-overlay {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .aboutus-main-title {
    font-size: 2rem;
  }

  .aboutus-title-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .aboutus-sub-title::before,
  .aboutus-sub-title::after {
    display: none;
  }

  .aboutus-image-frame {
    height: 300px;
  }

  .aboutus-statement-text {
    font-size: 1.1rem;
  }

  .aboutus-quote-icon {
    font-size: 3rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* FAQ */
/* =========================
   FAQ ACCORDION – SCOPED
========================= */

.faq-page .custom-accordion {
  width: 100%;
}

/* Accordion item */
.faq-page .accordion-item {
  position: relative;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-page .accordion-item:hover,
.faq-page .accordion-item.selected {
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(42, 138, 206, 0.15);
}

/* Accordion title */
.faq-page .accordion-title {
  position: relative;
  padding: 25px 70px 25px 25px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.faq-page .accordion-title:hover {
  background: rgba(42, 138, 206, 0.05);
}

.faq-page .accordion-item.selected .accordion-title {
  color: #2a8ace;
  background: linear-gradient(
    135deg,
    rgba(42, 138, 206, 0.03) 0%,
    rgba(42, 138, 206, 0.08) 100%
  );
}

/* Question number */
.faq-page .question-number {
  font-weight: 700;
  color: #2a8ace;
  font-size: 1.2rem;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
}

.faq-page .question-number::after {
  content: ".";
  margin-left: 4px;
}

/* Question text */
.faq-page .question-text {
  flex: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Arrow icon */
.faq-page .accordion-title::after {
  content: "↘";
  position: absolute;
  right: 25px;
  top: 50%;
  font-size: 1.4rem;
  color: #2a8ace;
  transform: translateY(-50%);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.faq-page .accordion-item.selected .accordion-title::after {
  transform: translateY(-50%) rotate(180deg);
  color: #1a5a8a;
}

/* Accordion content wrapper */
.faq-page [data-accordion-element-content] {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content */
.faq-page .accordion-content {
  opacity: 0;
  transform: translateY(-10px);
  padding: 0 25px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.faq-page .accordion-item.selected .accordion-content {
  opacity: 1;
  transform: translateY(0);
  animation: faqFadeInUp 0.3s ease-out;
}

/* Text */
.faq-page .accordion-content p {
  padding: 25px 0;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-page .accordion-title {
    font-size: 1.2rem;
    padding: 22px 60px 22px 20px;
  }
}

@media (max-width: 767px) {
  .faq-page .accordion-title {
    font-size: 1.1rem;
    padding: 20px 55px 20px 18px;
  }

  .faq-page .question-number {
    font-size: 1.1rem;
  }
}

/* Animation */
@keyframes faqFadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Employee page */
.training-section {
  --training-primary: #2a8ace; /* Logo Dark Blue */
  --training-secondary: #7ee2ef; /* Logo Light Blue */
  --training-accent: #1a6fb8;
  --training-light: #b1e8f5;
  --training-dark: #0a1a2a;
  --training-text: #ffffff;
  --training-text-secondary: #d1f0f7;
  --training-success: #7ee2ef;
  --training-warning: #f8b34e;
  --training-danger: #ff6b6b;
  --training-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --training-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  --training-shadow-hover: 0 25px 50px rgba(42, 138, 206, 0.3);
  --training-radius: 16px;
  --training-glow: 0 0 20px rgba(126, 226, 239, 0.3);
}

/* Enhanced Section Container */
.training-section .section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #0a1f38 0%, #0c2d48 50%, #0a1a2a 100%);
  overflow: hidden;
  margin-top: 30px;
}

/* Animated Background Elements */
.training-section .section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(42, 138, 206, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(126, 226, 239, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(42, 138, 206, 0.05) 50%,
      transparent 70%
    );
  animation: trainingGradientShift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes trainingGradientShift {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

/* Container */
.training-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Reversed Layout: Stats first, then text */
.training-section .intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

/* Stats on the left, text on the right */
.training-section .intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  position: relative;
  order: 1;
}

.training-section .intro-text {
  position: relative;
  padding: 30px;
  border-radius: var(--training-radius);
  background: rgba(10, 26, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 138, 206, 0.2);
  box-shadow: var(--training-shadow);
  transition: var(--training-transition);
  order: 2;
}

.training-section .intro-text:hover {
  transform: translateY(-5px);
  border-color: var(--training-secondary);
  box-shadow: var(--training-shadow-hover);
}

/* Enhanced Headings */
.training-section h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--training-text);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    45deg,
    var(--training-primary),
    var(--training-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.training-section h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--training-primary),
    var(--training-secondary)
  );
  bottom: -15px;
  left: 0;
  border-radius: 3px;
  animation: trainingLineExpand 1.5s ease-in-out infinite alternate;
}

@keyframes trainingLineExpand {
  0% {
    width: 80px;
    opacity: 0.8;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

/* Enhanced Paragraphs */
.training-section .intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  color: var(--training-text-secondary);
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.training-section .intro-text p:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--training-secondary);
  font-size: 1.5rem;
}

/* Enhanced Stat Boxes */
.training-section .stat-box {
  background: linear-gradient(
    145deg,
    rgba(42, 138, 206, 0.15),
    rgba(10, 26, 42, 0.3)
  );
  border-radius: var(--training-radius);
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(126, 226, 239, 0.2);
  transition: var(--training-transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.training-section .stat-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(126, 226, 239, 0.1),
    transparent
  );
  transition: 0.8s;
}

.training-section .stat-box:hover:before {
  left: 100%;
}

.training-section .stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--training-secondary);
  box-shadow: var(--training-shadow-hover), var(--training-glow);
  z-index: 10;
}

/* Enhanced Stat Numbers */
.training-section .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--training-secondary);
  margin-bottom: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(126, 226, 239, 0.5);
  display: inline-block;
  transition: var(--training-transition);
}

.training-section .stat-box:hover .stat-number {
  color: #ffffff;
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(126, 226, 239, 0.8);
}

/* Enhanced Stat Labels */
.training-section .stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--training-text-secondary);
  position: relative;
  z-index: 1;
  transition: var(--training-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.training-section .stat-box:hover .stat-label {
  color: var(--training-secondary);
  letter-spacing: 1.5px;
}

/* Decorative Elements for Stat Boxes */
.training-section .stat-box:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(126, 226, 239, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: var(--training-transition);
}

.training-section .stat-box:hover:after {
  width: 200px;
  height: 200px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .training-section .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .training-section .intro-stats {
    order: 2;
  }

  .training-section .intro-text {
    order: 1;
  }

  .training-section h2 {
    font-size: 2.5rem;
  }

  .training-section h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

  .training-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .training-section .intro-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .training-section .stat-number {
    font-size: 2.5rem;
  }

  .training-section .intro-text {
    padding: 25px;
  }
}

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

  .training-section h2 {
    font-size: 1.8rem;
  }

  .training-section .intro-content {
    gap: 30px;
  }

  .training-section .stat-box {
    padding: 25px 20px;
  }

  .training-section .stat-number {
    font-size: 2.2rem;
  }
}

/* Animation Delays for Stats */
.training-section .stat-box:nth-child(1) {
  animation-delay: 0.1s;
}
.training-section .stat-box:nth-child(2) {
  animation-delay: 0.2s;
}
.training-section .stat-box:nth-child(3) {
  animation-delay: 0.3s;
}
.training-section .stat-box:nth-child(4) {
  animation-delay: 0.4s;
}

/* Ensure content stays above background */
.training-section .container,
.training-section .intro-content,
.training-section .intro-text,
.training-section .intro-stats {
  position: relative;
  z-index: 2;
}

.employee-training-services {
  --blue-main: #2a8ace;
  --blue-dark: #145da0;
  --blue-accent: #7ee2ef;
  --radius: 16px;
  padding: 80px 0;
  background: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.employee-training-services .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.employee-training-services h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.employee-training-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.employee-training-services .service-card {
  perspective: 1200px;
  cursor: pointer;
}

.employee-training-services .card-container {
  position: relative;
  width: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.9s ease;
}

/* Hover + tap */
.employee-training-services .service-card:hover .card-container,
.employee-training-services .service-card.flipped .card-container {
  transform: rotateY(180deg);
}

.employee-training-services .card-front,
.employee-training-services .card-back {
  position: absolute;
  inset: 0;
  padding: 45px 40px;
  border-radius: var(--radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

/* FRONT */
.employee-training-services .card-front {
  background: linear-gradient(135deg, #2a8ace, #1a6fb8);
  transform: rotateY(0deg);
}

/* BACK */
.employee-training-services .card-back {
  background: linear-gradient(135deg, #145da0, #2a8ace);
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.employee-training-services .service-icon {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 28px;
}

.employee-training-services .back-icon {
  font-size: 3.8rem;
  color: var(--blue-accent);
  margin-bottom: 28px;
  animation: employeeTrainingFloat 3s ease-in-out infinite;
}

.employee-training-services h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.employee-training-services p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

@keyframes employeeTrainingFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .employee-training-services .card-container {
    min-height: 380px;
  }
}
/* Mobile responsiveness for text and icons */
@media (max-width: 480px) {
  .employee-training-services h2 {
    font-size: 2rem; /* slightly smaller title */
  }

  .employee-training-services h3 {
    font-size: 1.5rem; /* smaller card headings */
  }

  .employee-training-services p {
    font-size: 1rem; /* smaller paragraph text */
  }

  .employee-training-services .service-icon {
    font-size: 2.5rem; /* smaller front icon */
  }

  .employee-training-services .back-icon {
    font-size: 3rem; /* slightly smaller back icon */
  }
}

@media (max-width: 360px) {
  .employee-training-services h2 {
    font-size: 1.8rem;
  }

  .employee-training-services h3 {
    font-size: 1.3rem;
  }

  .employee-training-services p {
    font-size: 0.95rem;
  }

  .employee-training-services .service-icon {
    font-size: 2.2rem;
  }

  .employee-training-services .back-icon {
    font-size: 2.5rem;
  }
}

/* Employee Training Section Styling */
.employee-training-process-sec {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.employee-training-sec-title {
  margin-bottom: 60px;
}

.employee-training-sub-title-light {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.employee-training-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.employee-training-process-wrapper {
  position: relative;
  padding: 20px 0;
}

.employee-training-process-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 123, 255, 0.2) 0%,
    rgba(0, 123, 255, 1) 50%,
    rgba(0, 123, 255, 0.2) 100%
  );
  z-index: 1;
}

.employee-training-process-step {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  height: 100%;
  margin-bottom: 30px;
}

.employee-training-process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.employee-training-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.employee-training-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.employee-training-process-step h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #343a40;
}

.employee-training-process-step p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 15px;
}

/* Tablet Devices (768px - 991px) */
@media (max-width: 991px) {
  .employee-training-process-line {
    display: none;
  }

  .employee-training-process-step {
    margin-bottom: 40px;
  }

  .employee-training-step-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .employee-training-process-step h4 {
    font-size: 18px;
  }

  .employee-training-process-step p {
    font-size: 14px;
  }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
  .employee-training-process-sec {
    padding: 60px 0;
  }

  .employee-training-sec-title {
    margin-bottom: 40px;
  }

  .employee-training-title {
    font-size: 28px;
  }

  .employee-training-process-step {
    padding: 25px 20px;
    margin-bottom: 50px;
  }

  .employee-training-step-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
    margin-bottom: 20px;
  }

  .employee-training-process-step h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .employee-training-process-step p {
    font-size: 14px;
  }

  .employee-training-step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
  .employee-training-process-sec {
    padding: 50px 0;
  }

  .employee-training-title {
    font-size: 24px;
  }

  .employee-training-sub-title-light {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .employee-training-process-step {
    padding: 22px 18px;
    margin-bottom: 45px;
    border-radius: 10px;
  }

  .employee-training-step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 18px;
  }

  .employee-training-process-step h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .employee-training-process-step p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .employee-training-step-number {
    width: 34px;
    height: 34px;
    font-size: 15px;
    top: -17px;
  }

  .employee-training-sec-title {
    margin-bottom: 30px;
  }
}

/* Extra Small Devices (up to 400px) */
@media (max-width: 400px) {
  .employee-training-title {
    font-size: 22px;
  }

  .employee-training-process-step {
    padding: 20px 15px;
  }

  .employee-training-step-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .employee-training-process-step h4 {
    font-size: 16px;
  }

  .employee-training-process-step p {
    font-size: 13px;
  }
}

/* Landscape Orientation for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .employee-training-process-sec {
    padding: 40px 0;
  }

  .employee-training-process-step {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .employee-training-step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }
}

/* Large Desktop Screens (1200px and above) */
@media (min-width: 1200px) {
  .employee-training-process-step {
    padding: 35px 30px;
  }

  .employee-training-title {
    font-size: 40px;
  }
}

/* Very Large Desktop Screens (1400px and above) */
@media (min-width: 1400px) {
  .employee-training-process-sec {
    padding: 100px 0;
  }

  .employee-training-title {
    font-size: 42px;
  }

  .employee-training-step-icon {
    width: 90px;
    height: 90px;
    font-size: 36px;
  }

  .employee-training-process-step h4 {
    font-size: 22px;
  }

  .employee-training-process-step p {
    font-size: 16px;
  }
}
/* Training Outcomes Section - Unique Classes */
.training-outcomes-section {
  --outcomes-primary: #0c2d48;
  --outcomes-secondary: #2e8bc0;
  --outcomes-accent: #145da0;
  --outcomes-light: #b1d4e0;
  --outcomes-dark: #0a1a2a;
  --outcomes-text: #333333;
  --outcomes-text-secondary: #666666;
  --outcomes-success: #4cc9f0;
  --outcomes-warning: #f8961e;
  --outcomes-danger: #f94144;
  --outcomes-transition: all 0.4s ease;
  --outcomes-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --outcomes-radius: 8px;
  --outcomes-white: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Section with white background */
.training-outcomes-section .section {
  padding: 80px 0;
  position: relative;
  background-color: var(--outcomes-white);
}

/* Container */
.training-outcomes-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section heading */
.training-outcomes-section h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--outcomes-primary);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.training-outcomes-section h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--outcomes-secondary),
    var(--outcomes-success)
  );
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Outcomes content - Different layout: 2 columns with equal height */
.training-outcomes-section .outcomes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left column - Outcomes list */
.training-outcomes-section .outcomes-column {
  display: flex;
  flex-direction: column;
}

.training-outcomes-section .outcomes-list {
  list-style: none;
  counter-reset: outcomes-counter;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Outcomes items - Stacked vertically in first column */
.training-outcomes-section .outcomes-item {
  background: rgba(12, 45, 72, 0.05);
  border-radius: var(--outcomes-radius);
  padding: 25px;
  border-left: 5px solid var(--outcomes-secondary);
  position: relative;
  overflow: hidden;
  transition: var(--outcomes-transition);
  opacity: 1;
  box-shadow: var(--outcomes-shadow);
  backdrop-filter: blur(5px);
  flex: 1;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Alternate border colors */
.training-outcomes-section .outcomes-item:nth-child(even) {
  border-left-color: var(--outcomes-success);
}

.training-outcomes-section .outcomes-item:nth-child(3n) {
  border-left-color: var(--outcomes-accent);
}

/* Hover effects */
.training-outcomes-section .outcomes-item:hover {
  transform: translateY(-5px) translateX(5px);
  background: rgba(12, 45, 72, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Number counter */
.training-outcomes-section .outcomes-item:before {
  counter-increment: outcomes-counter;
  content: "0" counter(outcomes-counter);
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(76, 201, 240, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: var(--outcomes-transition);
}

.training-outcomes-section .outcomes-item:hover:before {
  color: rgba(76, 201, 240, 0.2);
  transform: scale(1.1);
}

/* Item headings */
.training-outcomes-section .outcomes-item h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--outcomes-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* Item paragraphs */
.training-outcomes-section .outcomes-item p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--outcomes-text-secondary);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Right column: Key Benefits - COMPACT LAYOUT */
.training-outcomes-section .key-benefits {
  background: linear-gradient(
    135deg,
    rgba(12, 45, 72, 0.05),
    rgba(46, 139, 192, 0.05)
  );
  border-radius: var(--outcomes-radius);
  padding: 25px 20px 20px 20px;
  border: 1px solid rgba(46, 139, 192, 0.2);
  box-shadow: var(--outcomes-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.training-outcomes-section .key-benefits h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--outcomes-primary);
  margin-bottom: 15px; /* Reduced margin */
  text-align: center;
  padding-bottom: 10px; /* Reduced padding */
  border-bottom: 2px solid rgba(46, 139, 192, 0.2);
}

.training-outcomes-section .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2x2 grid */
  gap: 15px; /* Reduced gap */
  flex: 1;
}

.training-outcomes-section .benefit-card {
  background: var(--outcomes-white);
  border-radius: var(--outcomes-radius);
  padding: 18px 15px; /* Reduced padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--outcomes-transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(46, 139, 192, 0.1);
  height: 100%; /* Make cards fill available height */
}

.training-outcomes-section .benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--outcomes-secondary);
}

.training-outcomes-section .benefit-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--outcomes-secondary),
    var(--outcomes-accent)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px; /* Reduced margin */
  color: white;
  font-size: 1.3rem;
}

.training-outcomes-section .benefit-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.training-outcomes-section .benefit-card-content h4 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--outcomes-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.training-outcomes-section .benefit-card-content p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--outcomes-text-secondary);
  margin: 0;
}

/* Add subtle background pattern */
.training-outcomes-section .section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(46, 139, 192, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(76, 201, 240, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

/* Ensure content stays above background */
.training-outcomes-section .container,
.training-outcomes-section .outcomes-content,
.training-outcomes-section .outcomes-list,
.training-outcomes-section .outcomes-item,
.training-outcomes-section .key-benefits {
  position: relative;
  z-index: 1;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  .training-outcomes-section .section {
    padding: 60px 0;
  }

  .training-outcomes-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .training-outcomes-section .outcomes-content {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }

  .training-outcomes-section .outcomes-list {
    gap: 15px;
  }

  .training-outcomes-section .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .training-outcomes-section .section {
    padding: 50px 0;
  }

  .training-outcomes-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }

  .training-outcomes-section h2:after {
    width: 80px;
    height: 3px;
    bottom: -8px;
  }

  .training-outcomes-section .outcomes-content {
    gap: 35px;
  }

  .training-outcomes-section .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .training-outcomes-section .benefit-card {
    padding: 15px 12px;
  }

  .training-outcomes-section .benefit-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .training-outcomes-section .benefit-card-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .training-outcomes-section .benefit-card-content p {
    font-size: 0.85rem;
  }
}

/* Mobile (425px - 575px) */
@media (max-width: 575px) {
  .training-outcomes-section .section {
    padding: 40px 0;
  }

  .training-outcomes-section .container {
    padding: 0 15px;
  }

  .training-outcomes-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .training-outcomes-section h2:after {
    width: 70px;
    height: 3px;
    bottom: -6px;
  }

  .training-outcomes-section .outcomes-content {
    gap: 30px;
  }

  .training-outcomes-section .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .training-outcomes-section .benefit-card {
    padding: 15px;
    flex-direction: row;
    text-align: left;
    align-items: center;
    min-height: 70px;
  }

  .training-outcomes-section .benefit-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .training-outcomes-section .benefit-card-content {
    justify-content: center;
  }

  .training-outcomes-section .benefit-card-content h4 {
    font-size: 1rem;
    margin-bottom: 3px;
  }

  .training-outcomes-section .benefit-card-content p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* Small Mobile (375px - 424px) */
@media (max-width: 424px) {
  .training-outcomes-section h2 {
    font-size: 1.5rem;
  }

  .training-outcomes-section .benefit-card {
    padding: 12px;
    min-height: 65px;
  }

  .training-outcomes-section .benefit-card-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin-right: 10px;
  }

  .training-outcomes-section .benefit-card-content h4 {
    font-size: 0.95rem;
  }

  .training-outcomes-section .benefit-card-content p {
    font-size: 0.8rem;
  }
}

/* footer robotics */
.footer-glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 380px;
}

.footer-glass-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(52, 152, 219, 0.4);
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(31, 38, 135, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 20px rgba(52, 152, 219, 0.1);
}

.footer-glass-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-glass-icon {
  position: relative;
  margin-right: 16px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-glass-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.footer-glass-box:hover .footer-glass-image {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  /* No color change on hover - keeps original red color */
}

/* Removed all color filters - image keeps its original red color */
/* .footer-glass-image {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)) 
          hue-rotate(180deg) 
          saturate(1.2);
} */

.glass-shine {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(6px);
  z-index: -1;
  animation: pulse 3s infinite;
}

.footer-glass-text {
  flex: 1;
  min-width: 0;
}

.footer-glass-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  font-weight: 600;
}

.footer-glass-link {
  display: block;
  text-decoration: none;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.footer-glass-link:hover .glass-link-text {
  color: #fff;
}

.glass-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.glass-link-text {
  font-size: 16px;
  font-weight: 700;
  color: #3498db;
  transition: color 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 10px;
}

.glass-link-arrow {
  flex-shrink: 0;
}

.glass-link-arrow i {
  font-size: 13px;
  color: #2ecc71;
  transition: all 0.3s ease;
}

.footer-glass-link:hover .glass-link-arrow i {
  transform: translate(2px, -2px);
  color: #27ae60;
}

.glass-link-url {
  display: block;
  font-size: 13px;
  color: #b3e0ff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-glass-subtext {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: 2px;
}

.glass-reflection {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  z-index: 1;
  pointer-events: none;
}

.footer-glass-box:hover .glass-reflection {
  animation: reflectMove 3s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes reflectMove {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

/* For dark theme compatibility */
.footer-card-section {
  color: #fff;
}

.footer-card-brand-desc {
  color: rgba(255, 255, 255, 0.8);
}

.footer-card-list a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-card-list a:hover {
  color: #3498db;
}

.footer-card-widget-title {
  color: #fff;
}

/* hedaer robotics link */
/* Container layout */
.robotics-container {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between "Our Division:" and the link */
}

/* The Highlighted Link */
.robotics-highlight {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05em;
  /* Shimmer Gradient */
  background: linear-gradient(90deg, #007bff, #6610f2, #007bff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

/* Arrow Styling - forced color so it doesn't disappear with the text gradient */
.sliding-arrow {
  margin-left: 6px;
  -webkit-text-fill-color: #6610f2;
  display: inline-block;
  animation: nudge 1.5s ease-in-out infinite;
}

/* Animation for Shimmer */
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Animation for Arrow */
@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Optional: Slight hover lift */
.robotics-highlight:hover {
  filter: brightness(1.3);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}
