* {
  box-sizing: border-box;
}

.top-bar {
  width: 100%;
  background: #ffffff;
  color: #222;
  padding: 9px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
  font-size: 14px;
  font-family: Arial, sans-serif;
}
/* Top Bar */
.top-bar {
  width: 100%;
  background: #ffffff;
  color: #222;
  padding: 9px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.top-left i {
  color: #0b63ce;
  font-size: 14px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-right a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f3f6fb;
  color: #0b63ce;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.top-right a:hover {
  background: #0b63ce;
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 18px;
    flex-direction: column;
    gap: 10px;
  }

  .top-left {
    flex-direction: column;
    gap: 6px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header */
.main-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  z-index: 999;
}

.header-container {
  width: 100%;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-box {
  position: relative;
}

.logo {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
}

/* Sparkle */
.sparkle {
  position: absolute;
  top: -14px;
  right: -16px;
  color: #f7b500;
  font-size: 24px;
  animation: sparkleMove 1.6s infinite ease-in-out;
}

@keyframes sparkleMove {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.35) rotate(18deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
}

/* Navigation */
.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: #222222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: #0b63ce;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 520px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 20px;
  display: flex;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-links {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropdown-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #333333;
  background: #f7f9fc;
  font-size: 14px;
}

.dropdown-links a:hover {
  background: #0b63ce;
  color: #ffffff;
}

/* Dropdown Image */
.dropdown-image {
  width: 52%;
  background: #f5f8ff;
  border-radius: 12px;
  padding: 12px;
}

.dropdown-image img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.dropdown-image h4 {
  margin-top: 10px;
  color: #111111;
  font-size: 16px;
}

.dropdown-image p {
  margin-top: 5px;
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
}

/* Button */
.header-btn {
  display: flex;
  align-items: center;
}

.get-btn {
  background: #0b63ce;
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.get-btn:hover {
  background: #084fa5;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .header-container {
    padding: 15px 20px;
    flex-direction: column;
    gap: 18px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 130px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .dropdown-menu {
    flex-direction: column;
  }

  .dropdown-links,
  .dropdown-image {
    width: 100%;
  }

  .get-btn {
    padding: 12px 22px;
  }
}

/* Flip Button */
.header-btn {
  display: flex;
  align-items: center;
  perspective: 800px;
}

.flip-btn {
  position: relative;
  width: 150px;
  height: 46px;
  display: inline-block;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-btn:hover {
  transform: rotateX(180deg);
}

.flip-btn span {
  position: absolute;
  inset: 0;
  background: #0b63ce;
  color: #ffffff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  backface-visibility: hidden;
  box-shadow: 0 8px 20px rgba(11, 99, 206, 0.25);
}

.flip-front {
  transform: rotateX(0deg);
}

.flip-back {
  background: #111827;
  transform: rotateX(180deg);
}

/* Banner Section */
.hero-banner {
  width: 100%;
  min-height: 560px;
  background:
    linear-gradient(120deg, rgba(4, 20, 45, 0.95), rgba(6, 78, 150, 0.9)),
    url("banner-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background Glow Effects */
.hero-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 138, 0, 0.22);
  border-radius: 50%;
  top: -140px;
  right: -120px;
  filter: blur(18px);
}

.hero-banner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(0, 119, 255, 0.25);
  border-radius: 50%;
  bottom: -100px;
  left: -70px;
  filter: blur(18px);
}

.hero-container {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.hero-content {
  color: #ffffff;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-content h1 span {
  display: block;
  color: #ff8a00;
}

.hero-content p {
  max-width: 720px;
  color: #e8eef8;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 620px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.feature-box i {
  width: 48px;
  height: 48px;
  background: #ff8a00;
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-box h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

/* Contact Card */
.contact-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: 18px;
  pointer-events: none;
}

.contact-card h2 {
  color: #0b1f3a;
  font-size: 30px;
  margin-bottom: 8px;
}

.contact-card p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  font-family: Arial, sans-serif;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0b63ce;
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.08);
}

.form-group textarea {
  resize: none;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  border: none;
  background: #25d366;
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn i {
  margin-left: 8px;
}

.submit-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-banner {
    padding: 70px 25px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    padding: 55px 18px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 26px 20px;
  }
}


/* =========================================
   TECHSTOP ABOUT SECTION
========================================= */

.ts-about-section {
  position: relative;
  width: 100%;
  padding: 95px 60px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(246, 249, 253, 0.97),
      rgba(236, 243, 250, 0.95)
    );
}


/* Networking background */
.ts-about-network {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;

  background-image:
    radial-gradient(
      circle,
      rgba(11, 99, 206, 0.18) 2px,
      transparent 3px
    ),
    linear-gradient(
      45deg,
      transparent 49%,
      rgba(11, 99, 206, 0.045) 50%,
      transparent 51%
    ),
    linear-gradient(
      -45deg,
      transparent 49%,
      rgba(255, 138, 0, 0.04) 50%,
      transparent 51%
    );

  background-size:
    75px 75px,
    75px 75px,
    75px 75px;

  animation: networkMove 18s linear infinite;
}

@keyframes networkMove {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 75px 75px, 75px 75px, -75px 75px;
  }
}


/* Decorative glow */
.ts-about-section::before,
.ts-about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.ts-about-section::before {
  width: 420px;
  height: 420px;
  top: -220px;
  right: -150px;
  background: rgba(11, 99, 206, 0.12);
}

.ts-about-section::after {
  width: 330px;
  height: 330px;
  bottom: -180px;
  left: -140px;
  background: rgba(255, 138, 0, 0.1);
}


/* Main Container */
.ts-about-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}


/* =========================================
   LEFT VISUAL
========================================= */

.ts-about-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-about-image-frame {
  position: relative;
  width: 100%;
  max-width: 510px;
  height: 540px;
  overflow: hidden;

  border-radius: 32px 90px 32px 32px;

  box-shadow:
    0 30px 70px rgba(13, 39, 74, 0.2),
    0 0 0 12px rgba(255, 255, 255, 0.55);
}

.ts-about-image-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 23px 75px 23px 23px;

  pointer-events: none;
}

.ts-about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 1s ease;
}

.ts-about-image-frame:hover img {
  transform: scale(1.08);
}

.ts-about-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(3, 25, 54, 0.78),
      rgba(3, 25, 54, 0.05) 65%
    );
}


/* Trust Badge */
.ts-about-badge {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 17px 20px;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 17px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.ts-about-badge-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #ff8a00;
  border-radius: 14px;

  font-size: 21px;
}

.ts-about-badge strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.ts-about-badge span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}


/* Floating Nodes */
.ts-floating-node {
  position: absolute;
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: linear-gradient(135deg, #0b63ce, #154883);

  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(11, 99, 206, 0.25);

  font-size: 21px;

  animation: nodeFloat 4s ease-in-out infinite;
}

.node-one {
  top: 30px;
  left: -10px;
}

.node-two {
  top: 90px;
  right: -10px;
  animation-delay: 0.7s;
}

.node-three {
  bottom: 120px;
  left: -25px;
  animation-delay: 1.4s;
}

.node-four {
  right: -20px;
  bottom: 55px;
  animation-delay: 2.1s;
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}


/* =========================================
   RIGHT CONTENT
========================================= */

.ts-about-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;
  padding: 9px 16px;

  color: #0b63ce;
  background: #e7f0fc;
  border: 1px solid rgba(11, 99, 206, 0.13);
  border-radius: 30px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ts-about-label i {
  color: #ff8a00;
  font-size: 8px;
  animation: labelPulse 1.8s infinite;
}

@keyframes labelPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}


.ts-about-content h2 {
  max-width: 680px;
  margin: 0 0 22px;

  color: #0b1f3a;
  font-size: 47px;
  line-height: 1.15;
  font-weight: 800;
}

.ts-about-content h2 span {
  position: relative;
  display: inline-block;
  color: #0b63ce;
}

.ts-about-content h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;

  height: 5px;
  border-radius: 20px;

  background: linear-gradient(90deg, #ff8a00, transparent);
}

.ts-about-intro {
  margin: 0 0 14px;
  color: #344963;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

.ts-about-description {
  margin: 0 0 30px;
  color: #647184;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================
   VALUE CARDS
========================================= */

.ts-about-values {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.ts-value-card {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
  gap: 17px;

  padding: 18px 19px;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 53, 94, 0.09);
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(16, 45, 80, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ts-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  background: linear-gradient(#0b63ce, #ff8a00);

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.ts-value-card:hover {
  transform: translateX(8px);
  border-color: rgba(11, 99, 206, 0.22);
  box-shadow: 0 18px 38px rgba(16, 45, 80, 0.12);
}

.ts-value-card:hover::before {
  transform: scaleY(1);
}

.ts-value-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;
  font-size: 20px;

  transition: transform 0.45s ease;
}

.ts-value-card:hover .ts-value-icon {
  transform: rotateY(360deg);
}

.mission-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #0b63ce, #064685);
}

.approach-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #ff9f25, #ff7400);
}

.commitment-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #19a97b, #087653);
}

.ts-value-card h3 {
  margin: 1px 0 6px;
  color: #10243e;
  font-size: 17px;
}

.ts-value-card p {
  margin: 0;
  color: #687488;
  font-size: 13.5px;
  line-height: 1.65;
}


/* =========================================
   STATS
========================================= */

.ts-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-bottom: 28px;
}

.ts-stat-item {
  padding: 15px 12px;

  text-align: center;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 99, 206, 0.09);
  border-radius: 13px;
}

.ts-stat-item strong {
  display: block;
  margin-bottom: 5px;

  color: #0b63ce;
  font-size: 26px;
  line-height: 1;
}

.ts-stat-item strong::after {
  content: "+";
  color: #ff8a00;
  font-size: 17px;
}

.ts-stat-item:last-child strong::after {
  content: "/7";
}

.ts-stat-item span {
  color: #667487;
  font-size: 11.5px;
  font-weight: 700;
}


/* =========================================
   BUTTONS
========================================= */

.ts-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.ts-about-primary-btn,
.ts-about-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 22px;

  border-radius: 30px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.ts-about-primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #0b63ce, #074b9c);
  box-shadow: 0 12px 28px rgba(11, 99, 206, 0.25);
}

.ts-about-secondary-btn {
  color: #0b63ce;
  background: #ffffff;
  border: 1px solid rgba(11, 99, 206, 0.2);
}

.ts-about-primary-btn:hover,
.ts-about-secondary-btn:hover {
  transform: translateY(-4px);
}

.ts-about-primary-btn:hover {
  box-shadow: 0 17px 35px rgba(11, 99, 206, 0.32);
}

.ts-about-secondary-btn:hover {
  color: #ffffff;
  background: #ff8a00;
  border-color: #ff8a00;
}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal-left {
  transform: translateX(-70px);
}

.reveal-right {
  transform: translateX(70px);
}

.reveal-left.ts-visible,
.reveal-right.ts-visible {
  opacity: 1;
  transform: translateX(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .ts-about-section {
    padding: 80px 30px;
  }

  .ts-about-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ts-about-visual {
    min-height: auto;
  }

  .ts-about-image-frame {
    max-width: 620px;
  }

  .ts-about-content {
    max-width: 760px;
    margin: auto;
  }
}


@media (max-width: 700px) {

  .ts-about-section {
    padding: 60px 18px;
  }

  .ts-about-image-frame {
    height: 430px;
    border-radius: 24px 55px 24px 24px;
  }

  .ts-floating-node {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    font-size: 17px;
  }

  .node-one,
  .node-three {
    left: -8px;
  }

  .node-two,
  .node-four {
    right: -8px;
  }

  .ts-about-content h2 {
    font-size: 35px;
  }

  .ts-about-intro {
    font-size: 15px;
  }

  .ts-about-values {
    gap: 11px;
  }

  .ts-about-stats {
    grid-template-columns: 1fr;
  }

  .ts-about-actions {
    flex-direction: column;
  }

  .ts-about-primary-btn,
  .ts-about-secondary-btn {
    width: 100%;
  }
}


@media (max-width: 450px) {

  .ts-about-image-frame {
    height: 370px;
  }

  .ts-about-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }

  .ts-about-badge-icon {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
  }

  .ts-about-content h2 {
    font-size: 30px;
  }

  .ts-value-card {
    padding: 15px;
  }
}


/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {

  .ts-about-network,
  .ts-about-badge,
  .ts-floating-node,
  .ts-about-label i {
    animation: none;
  }

  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Why Choose Section */
.why-section {
  width: 100%;
  background: #f4f6f9;
  padding: 80px 60px;
  overflow: hidden;
}

.why-container {
  max-width: 1240px;
  margin: auto;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title span {
  display: inline-block;
  background: #eaf2ff;
  color: #0b63ce;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title h2 {
  color: #0b1f3a;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}

/* Slider */
.why-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-slider {
  position: relative;
  width: 100%;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cards */
.why-card {
  position: absolute;
  width: 440px;
  min-height: 285px;
  background: #ffffff;
  border-radius: 24px;
  padding: 42px 34px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(11, 31, 58, 0.09);
  opacity: 0;
  transform: scale(0.75);
  transition: 0.5s ease;
  pointer-events: none;
}

.why-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 5;
  pointer-events: auto;
}

.why-card.prev {
  opacity: 0.42;
  transform: translateX(-340px) scale(0.82);
  z-index: 2;
}

.why-card.next {
  opacity: 0.42;
  transform: translateX(340px) scale(0.82);
  z-index: 2;
}

.why-card.hide-left {
  opacity: 0;
  transform: translateX(-520px) scale(0.7);
}

.why-card.hide-right {
  opacity: 0;
  transform: translateX(520px) scale(0.7);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #0b63ce, #ff8a00);
  color: #ffffff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(11, 99, 206, 0.22);
}

.why-card h3 {
  color: #0b1f3a;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}

.why-card p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

/* Arrow Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0b63ce;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.14);
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #0b63ce;
  color: #ffffff;
}

.prev-btn {
  left: 40px;
}

.next-btn {
  right: 40px;
}

/* Dots */
.why-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #c5cfdd;
  cursor: pointer;
  transition: 0.3s ease;
}

.why-dot.active {
  width: 30px;
  background: #0b63ce;
}

/* Responsive */
@media (max-width: 991px) {
  .why-section {
    padding: 65px 25px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .why-card {
    width: 390px;
  }

  .why-card.prev {
    transform: translateX(-260px) scale(0.78);
  }

  .why-card.next {
    transform: translateX(260px) scale(0.78);
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }
}

@media (max-width: 576px) {
  .why-section {
    padding: 55px 18px;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 29px;
  }

  .section-title p {
    font-size: 15px;
  }

  .why-slider-wrapper {
    min-height: 360px;
  }

  .why-slider {
    height: 330px;
  }

  .why-card {
    width: 100%;
    max-width: 330px;
    padding: 34px 22px;
  }

  .why-card.prev,
  .why-card.next {
    opacity: 0;
    transform: scale(0.7);
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }

  .prev-btn {
    left: -5px;
  }

  .next-btn {
    right: -5px;
  }
}



/* =========================================
   OUR CORE SERVICES SECTION
========================================= */

.core-services-section {
  position: relative;
  width: 100%;
  padding: 85px 60px 95px;
  overflow: hidden;

  /* Light grey base */
  background-color: #f5f6f8;

  /* Grill / Grid Texture */
  background-image:
    linear-gradient(rgba(11, 99, 206, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 206, 0.055) 1px, transparent 1px);

  background-size: 28px 28px;
}


/* Soft decorative glow */
.core-services-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -180px;
  left: -180px;
  border-radius: 50%;
  background: rgba(11, 99, 206, 0.08);
  filter: blur(20px);
  pointer-events: none;
}

.core-services-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -150px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.08);
  filter: blur(20px);
  pointer-events: none;
}


/* Main Container */
.core-services-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.core-services-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.services-small-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #0b63ce;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.core-services-heading h2 {
  margin: 0 0 16px;
  color: #0b1f3a;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
}

.core-services-heading h2 span {
  color: #ff8a00;
}

.core-services-heading p {
  margin: 0 auto;
  color: #657184;
  font-size: 16px;
  line-height: 1.75;
}


/* =========================================
   FIVE SERVICES LAYOUT
========================================= */

.services-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}


/* Horizontal connecting line */
.services-list::before {
  content: "";
  position: absolute;
  top: 111px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #c7d1df 10%,
    #c7d1df 90%,
    transparent
  );
  z-index: 0;
}


/* Individual Service */
.core-service-item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px 25px;
  transition: transform 0.35s ease;
}

.core-service-item:hover {
  transform: translateY(-8px);
}


/* =========================================
   ROUND ICONS
========================================= */

.service-icon-wrap {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto 16px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 35px;

  border: 6px solid rgba(255, 255, 255, 0.9);

  box-shadow:
    0 12px 25px rgba(15, 40, 70, 0.18),
    inset 0 -7px 10px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.core-service-item:hover .service-icon-wrap {
  transform: rotateY(360deg);
  box-shadow:
    0 18px 35px rgba(15, 40, 70, 0.24),
    inset 0 -7px 10px rgba(0, 0, 0, 0.12);
}


/* Icon Colours */
.red-icon {
  background: linear-gradient(145deg, #ff3c3c, #e51325);
}

.dark-red-icon {
  background: linear-gradient(145deg, #df1515, #980808);
}

.orange-icon {
  background: linear-gradient(145deg, #ffad42, #ff7900);
}

.cyan-icon {
  background: linear-gradient(145deg, #56d7df, #25aebc);
}

.blue-icon {
  background: linear-gradient(145deg, #147da9, #075a84);
}


/* =========================================
   NUMBER
========================================= */

.service-number {
  position: relative;
  z-index: 3;

  width: 34px;
  height: 34px;
  margin: 0 auto 19px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #0b1f3a;

  border: 2px solid #b7c2d1;
  border-radius: 50%;

  font-size: 12px;
  font-weight: 900;

  box-shadow: 0 5px 12px rgba(11, 31, 58, 0.1);
}


/* Small vertical connector */
.service-number::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 17px;
  top: -18px;
  left: 50%;
  background: #bdc8d5;
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-line {
  width: 38px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: #ff8a00;
  transition: width 0.3s ease;
}

.core-service-item:hover .service-line {
  width: 70px;
}


.core-service-item h3 {
  min-height: 52px;
  margin: 0 0 14px;

  color: #10243e;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}


.core-service-item p {
  min-height: 105px;
  margin: 0 0 20px;

  color: #6a7483;
  font-size: 13.5px;
  line-height: 1.7;
}


/* =========================================
   EXPLORE BUTTON
========================================= */

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 145px;
  padding: 11px 17px;

  background: #ffffff;
  color: #0b63ce;

  border: 1px solid #dce5ef;
  border-radius: 8px;

  text-decoration: none;
  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 7px 18px rgba(11, 31, 58, 0.08);

  transition: all 0.3s ease;
}

.service-link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  background: #0b63ce;
  color: #ffffff;
  border-color: #0b63ce;
  transform: translateY(-2px);
}

.service-link:hover i {
  transform: translateX(4px);
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 20px;
  }

  .services-list::before {
    display: none;
  }

  .core-service-item p {
    min-height: auto;
  }
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 700px) {

  .core-services-section {
    padding: 60px 18px 70px;
  }

  .core-services-heading {
    margin-bottom: 45px;
  }

  .core-services-heading h2 {
    font-size: 34px;
  }

  .core-services-heading p {
    font-size: 15px;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .core-service-item {
    max-width: 380px;
    margin: 0 auto;
  }

  .core-service-item h3 {
    min-height: auto;
  }

  .core-service-item p {
    min-height: auto;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}



/* =========================================
   BASIC RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #14243b;
  background: #f4f7fb;
  font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
   MAIN SERVICE PAGE
========================================= */

.computing-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 38px 60px 85px;
  overflow: hidden;

  background-color: #f4f7fb;

  /* Networking / grid texture */
  background-image:
    radial-gradient(
      circle,
      rgba(11, 99, 206, 0.15) 2px,
      transparent 3px
    ),
    linear-gradient(
      rgba(11, 99, 206, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(11, 99, 206, 0.05) 1px,
      transparent 1px
    );

  background-size:
    64px 64px,
    64px 64px,
    64px 64px;
}


/* Decorative glows */
.computing-page::before,
.computing-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}

.computing-page::before {
  width: 420px;
  height: 420px;
  top: -220px;
  left: -170px;
  background: rgba(11, 99, 206, 0.11);
}

.computing-page::after {
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: -180px;
  background: rgba(255, 138, 0, 0.09);
}


.computing-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}


/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  width: fit-content;
  margin-bottom: 42px;
  padding: 12px 18px;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 99, 206, 0.1);
  border-radius: 30px;

  box-shadow: 0 8px 24px rgba(12, 36, 66, 0.06);
}

.breadcrumb a,
.breadcrumb span {
  color: #6c7888;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.breadcrumb a:hover {
  color: #0b63ce;
}

.breadcrumb > i {
  color: #a3afbd;
  font-size: 10px;
}

.breadcrumb span {
  color: #0b63ce;
  font-weight: 800;
}


/* =========================================
   TWO COLUMN LAYOUT
========================================= */

.computing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  gap: 48px;
  align-items: start;
}

.computing-content {
  min-width: 0;
}


/* =========================================
   LEFT CONTENT
========================================= */

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;
  padding: 10px 17px;

  color: #0b63ce;
  background: rgba(231, 240, 252, 0.94);
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: 30px;

  font-size: 13px;
  font-weight: 800;
}

.service-tag i {
  color: #ff8a00;
}


.computing-content h1 {
  max-width: 800px;
  margin-bottom: 23px;

  color: #0b1f3a;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 800;
}

.computing-content h1 span {
  position: relative;
  display: block;
  color: #0b63ce;
}

.computing-content h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;

  width: 160px;
  height: 5px;

  border-radius: 20px;
  background: linear-gradient(90deg, #ff8a00, transparent);
}


.service-description {
  max-width: 820px;
  margin-bottom: 30px;

  color: #5f6d80;
  font-size: 17px;
  line-height: 1.85;
}


/* =========================================
   BENEFITS
========================================= */

.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-bottom: 48px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 17px;

  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 99, 206, 0.09);
  border-radius: 15px;

  box-shadow: 0 10px 26px rgba(13, 39, 71, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 35px rgba(13, 39, 71, 0.11);
}

.benefit-item > i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: linear-gradient(135deg, #0b63ce, #ff8a00);
  border-radius: 12px;
}

.benefit-item strong {
  display: block;
  margin-bottom: 4px;

  color: #172b45;
  font-size: 14px;
}

.benefit-item span {
  color: #748194;
  font-size: 11.5px;
  line-height: 1.4;
}


/* =========================================
   OFFERINGS
========================================= */

.offerings-heading {
  margin-bottom: 24px;
}

.offerings-heading span {
  display: block;
  margin-bottom: 7px;

  color: #ff8a00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offerings-heading h2 {
  color: #0b1f3a;
  font-size: 35px;
}


.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.offering-card {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
  gap: 16px;

  min-height: 155px;
  padding: 22px;

  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(11, 99, 206, 0.09);
  border-radius: 18px;

  box-shadow: 0 12px 30px rgba(16, 45, 80, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.offering-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  background: linear-gradient(#0b63ce, #ff8a00);

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.offering-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 99, 206, 0.22);
  box-shadow: 0 20px 42px rgba(16, 45, 80, 0.12);
}

.offering-card:hover::before {
  transform: scaleY(1);
}


.offering-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: linear-gradient(135deg, #0b63ce, #ff8a00);
  border-radius: 16px;

  font-size: 21px;

  box-shadow: 0 10px 23px rgba(11, 99, 206, 0.2);

  transition: transform 0.5s ease;
}

.offering-card:hover .offering-icon {
  transform: rotateY(360deg);
}

.offering-card h3 {
  margin: 2px 0 8px;

  color: #122840;
  font-size: 16px;
  line-height: 1.35;
}

.offering-card p {
  color: #6d798b;
  font-size: 13px;
  line-height: 1.65;
}


/* =========================================
   RIGHT CONTACT FORM
========================================= */

.contact-form-card {
  position: sticky;
  top: 25px;

  display: block;
  width: 100%;
  padding: 30px;

  visibility: visible;
  opacity: 1;
  transform: none;

  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(11, 99, 206, 0.13);
  border-radius: 25px;

  box-shadow:
    0 24px 55px rgba(14, 38, 68, 0.14),
    0 0 0 7px rgba(255, 255, 255, 0.45);

  z-index: 10;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;

  height: 4px;

  background: linear-gradient(
    90deg,
    #0b63ce,
    #25d366,
    #ff8a00
  );

  border-radius: 0 0 20px 20px;
}


/* Form Heading */
.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 14px;
}

.form-heading-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #118c48);
  border-radius: 17px;

  font-size: 27px;

  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

.form-heading span {
  display: block;
  margin-bottom: 4px;

  color: #0b63ce;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.form-heading h2 {
  color: #112740;
  font-size: 25px;
}

.form-intro {
  margin-bottom: 22px;

  color: #718094;
  font-size: 13.5px;
  line-height: 1.65;
}


/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;

  color: #263b55;
  font-size: 12px;
  font-weight: 700;
}

.input-box {
  position: relative;
}

.input-box > i {
  position: absolute;
  top: 50%;
  left: 15px;

  color: #8491a3;
  font-size: 13px;

  transform: translateY(-50%);
  pointer-events: none;
}

.textarea-box > i {
  top: 17px;
  transform: none;
}


.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 13px 15px 13px 43px;

  color: #1e3149;
  background: #f8fafc;

  border: 1px solid #dce4ee;
  border-radius: 12px;
  outline: none;

  font-family: inherit;
  font-size: 13.5px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.input-box select {
  appearance: none;
  cursor: pointer;
}

.input-box textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  background: #ffffff;
  border-color: #0b63ce;
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.08);
}

.input-box input::placeholder,
.input-box textarea::placeholder {
  color: #9aa6b4;
}


/* WhatsApp Button */
.whatsapp-button {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 4px;
  padding: 14px 20px;

  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #118c48);

  border: none;
  border-radius: 30px;
  cursor: pointer;

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 13px 28px rgba(37, 211, 102, 0.25);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.34);
}

.whatsapp-button i {
  font-size: 19px;
}


.form-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;

  margin-top: 14px;

  color: #8a96a7;
  font-size: 10.5px;
  line-height: 1.45;
  text-align: center;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

  .computing-page {
    padding: 35px 30px 75px;
  }

  .computing-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    position: relative;
    top: auto;

    max-width: 650px;
    margin: 0 auto;
  }
}


@media (max-width: 760px) {

  .computing-page {
    padding: 28px 18px 60px;
  }

  .breadcrumb {
    margin-bottom: 35px;
    padding: 11px 14px;
  }

  .breadcrumb a,
  .breadcrumb span {
    font-size: 11px;
  }

  .computing-content h1 {
    font-size: 39px;
  }

  .service-description {
    font-size: 15px;
  }

  .benefits-row {
    grid-template-columns: 1fr;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}


@media (max-width: 450px) {

  .computing-content h1 {
    font-size: 32px;
  }

  .service-tag {
    font-size: 11px;
  }

  .offering-card {
    padding: 18px;
  }

  .form-heading h2 {
    font-size: 22px;
  }
}


/* =========================================
   NETWORKING SERVICE PAGE
========================================= */

.networking-service-page {
  background-color: #f3f7fb;

  background-image:
    radial-gradient(
      circle,
      rgba(11, 99, 206, 0.17) 2px,
      transparent 3px
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(11, 99, 206, 0.045) 49%,
      rgba(11, 99, 206, 0.045) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(24, 169, 123, 0.04) 49%,
      rgba(24, 169, 123, 0.04) 51%,
      transparent 52%
    );

  background-size:
    70px 70px,
    70px 70px,
    70px 70px;
}


/* Networking Security Note */
.network-security-note {
  display: flex;
  align-items: center;
  gap: 17px;

  margin-top: 28px;
  padding: 20px 22px;

  background:
    linear-gradient(
      135deg,
      rgba(8, 41, 80, 0.97),
      rgba(11, 99, 206, 0.94)
    );

  color: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 16px 38px rgba(9, 54, 105, 0.2);

  position: relative;
  overflow: hidden;
}


/* Decorative network pulse */
.network-security-note::before {
  content: "";
  position: absolute;

  width: 130px;
  height: 130px;

  right: -45px;
  top: -55px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.network-security-note::after {
  content: "";
  position: absolute;

  width: 85px;
  height: 85px;

  right: -18px;
  top: -32px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}


.network-security-note-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ff8a00;
  color: #ffffff;

  border-radius: 16px;

  font-size: 21px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18);

  position: relative;
  z-index: 2;

  animation: networkLockPulse 2.4s ease-in-out infinite;
}


@keyframes networkLockPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}


.network-security-note > div:last-child {
  position: relative;
  z-index: 2;
}


.network-security-note strong {
  display: block;
  margin-bottom: 6px;

  font-size: 16px;
}


.network-security-note p {
  margin: 0;

  color: rgba(255, 255, 255, 0.8);

  font-size: 13px;
  line-height: 1.6;
}


/* Networking card icon colour */
.networking-service-page .offering-icon {
  background:
    linear-gradient(
      135deg,
      #0b63ce,
      #18a97b
    );
}


/* Networking benefit icons */
.networking-service-page .benefit-item > i {
  background:
    linear-gradient(
      135deg,
      #0b63ce,
      #18a97b
    );
}


@media (max-width: 600px) {

  .network-security-note {
    align-items: flex-start;
    padding: 18px;
  }

  .network-security-note-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

}


/* =========================================
   COMMUNICATION SERVICE PAGE
========================================= */

.communication-service-page {
  background-color: #f5f7fb;

  background-image:
    radial-gradient(
      circle,
      rgba(118, 66, 214, 0.16) 2px,
      transparent 3px
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(118, 66, 214, 0.045) 49%,
      rgba(118, 66, 214, 0.045) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(11, 99, 206, 0.04) 49%,
      rgba(11, 99, 206, 0.04) 51%,
      transparent 52%
    );

  background-size:
    70px 70px,
    70px 70px,
    70px 70px;
}


/* Communication page colours */
.communication-service-page .service-tag {
  color: #7545c7;
  background: rgba(240, 233, 253, 0.95);
  border-color: rgba(118, 66, 214, 0.14);
}

.communication-service-page .service-tag i {
  color: #ff8a00;
}

.communication-service-page .computing-content h1 span {
  color: #7545c7;
}

.communication-service-page .benefit-item > i {
  background:
    linear-gradient(
      135deg,
      #7545c7,
      #0b63ce
    );
}

.communication-service-page .offering-icon {
  background:
    linear-gradient(
      135deg,
      #7545c7,
      #0b63ce
    );
}

.communication-service-page .offering-card::before {
  background:
    linear-gradient(
      #7545c7,
      #ff8a00
    );
}


/* Communication Highlight Note */
.communication-note {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 17px;

  margin-top: 28px;
  padding: 20px 22px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #37205f,
      #7545c7,
      #0b63ce
    );

  border-radius: 18px;

  box-shadow:
    0 16px 38px rgba(72, 42, 126, 0.22);
}


/* Decorative sound waves */
.communication-note::before,
.communication-note::after {
  content: "";
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;

  pointer-events: none;
}

.communication-note::before {
  width: 150px;
  height: 150px;

  right: -45px;
  top: -65px;
}

.communication-note::after {
  width: 95px;
  height: 95px;

  right: -15px;
  top: -38px;
}


.communication-note-icon {
  position: relative;
  z-index: 2;

  flex: 0 0 54px;
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #ff8a00;

  border-radius: 16px;

  font-size: 21px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18);

  animation: communicationPulse 2.2s ease-in-out infinite;
}


@keyframes communicationPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}


.communication-note > div:last-child {
  position: relative;
  z-index: 2;
}


.communication-note strong {
  display: block;
  margin-bottom: 6px;

  font-size: 16px;
  line-height: 1.4;
}


.communication-note p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 13px;
  line-height: 1.6;
}


@media (max-width: 600px) {

  .communication-note {
    align-items: flex-start;
    padding: 18px;
  }

  .communication-note-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

}

/* =========================================
   SECURITY & SURVEILLANCE SERVICE PAGE
========================================= */

.security-service-page {
  background-color: #f3f6f9;

  background-image:
    radial-gradient(
      circle,
      rgba(6, 62, 92, 0.17) 2px,
      transparent 3px
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(6, 62, 92, 0.05) 49%,
      rgba(6, 62, 92, 0.05) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(0, 145, 120, 0.04) 49%,
      rgba(0, 145, 120, 0.04) 51%,
      transparent 52%
    );

  background-size:
    70px 70px,
    70px 70px,
    70px 70px;
}


/* Security Theme */
.security-service-page .service-tag {
  color: #075d78;
  background: rgba(224, 242, 247, 0.95);
  border-color: rgba(7, 93, 120, 0.14);
}

.security-service-page .service-tag i {
  color: #ff8a00;
}

.security-service-page .computing-content h1 span {
  color: #075d78;
}

.security-service-page .benefit-item > i {
  background:
    linear-gradient(
      135deg,
      #063e5c,
      #0d9b7c
    );
}

.security-service-page .offering-icon {
  background:
    linear-gradient(
      135deg,
      #063e5c,
      #0d9b7c
    );
}

.security-service-page .offering-card::before {
  background:
    linear-gradient(
      #063e5c,
      #ff8a00
    );
}


/* =========================================
   SECURITY HIGHLIGHT NOTE
========================================= */

.security-highlight-note {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 17px;

  margin-top: 28px;
  padding: 20px 22px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #041d30,
      #063e5c,
      #0d9b7c
    );

  border-radius: 18px;

  box-shadow:
    0 18px 40px rgba(5, 55, 81, 0.24);
}


/* Decorative rings */
.security-highlight-note::before,
.security-highlight-note::after {
  content: "";
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.security-highlight-note::before {
  width: 165px;
  height: 165px;

  right: -55px;
  top: -75px;
}

.security-highlight-note::after {
  width: 105px;
  height: 105px;

  right: -20px;
  top: -45px;
}


.security-highlight-icon {
  position: relative;
  z-index: 2;

  flex: 0 0 56px;
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #ff8a00;

  border-radius: 17px;

  font-size: 22px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.2);

  animation: securityShieldPulse 2.4s ease-in-out infinite;
}


@keyframes securityShieldPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(255, 138, 0, 0.34);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 13px 30px rgba(0, 0, 0, 0.24),
      0 0 0 12px rgba(255, 138, 0, 0);
  }
}


.security-highlight-note > div:last-child {
  position: relative;
  z-index: 2;
}


.security-highlight-note strong {
  display: block;
  margin-bottom: 6px;

  font-size: 16px;
  line-height: 1.4;
}


.security-highlight-note p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 13px;
  line-height: 1.6;
}


/* =========================================
   CONSULTATION STRIP
========================================= */

.security-consultation-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 18px;
  padding: 18px 21px;

  background: rgba(255, 255, 255, 0.94);

  border:
    1px solid rgba(6, 62, 92, 0.12);

  border-radius: 16px;

  box-shadow:
    0 12px 30px rgba(10, 46, 68, 0.08);
}


.security-consultation-strip span {
  display: block;
  margin-bottom: 4px;

  color: #7a8796;

  font-size: 12px;
}


.security-consultation-strip strong {
  color: #0c2940;

  font-size: 16px;
}


.security-consultation-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  flex-shrink: 0;

  padding: 12px 18px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #063e5c,
      #0d9b7c
    );

  border-radius: 30px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 800;

  box-shadow:
    0 10px 24px rgba(6, 62, 92, 0.2);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.security-consultation-strip a:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 30px rgba(6, 62, 92, 0.28);
}


/* Contact card security accent */
.security-contact-card::before {
  background:
    linear-gradient(
      90deg,
      #063e5c,
      #25d366,
      #ff8a00
    );
}


/* Responsive */
@media (max-width: 650px) {

  .security-highlight-note {
    align-items: flex-start;
    padding: 18px;
  }

  .security-highlight-icon {
    flex-basis: 47px;
    width: 47px;
    height: 47px;
  }

  .security-consultation-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-consultation-strip a {
    width: 100%;
  }
}


/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .security-highlight-icon {
    animation: none;
  }
}



/* =========================================
   SOFTWARE SOLUTIONS SERVICE PAGE
========================================= */

.software-service-page {
  background-color: #f3f6fb;

  background-image:
    radial-gradient(
      circle,
      rgba(75, 65, 190, 0.16) 2px,
      transparent 3px
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(75, 65, 190, 0.045) 49%,
      rgba(75, 65, 190, 0.045) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(11, 99, 206, 0.04) 49%,
      rgba(11, 99, 206, 0.04) 51%,
      transparent 52%
    );

  background-size:
    70px 70px,
    70px 70px,
    70px 70px;
}


/* Theme Colours */
.software-service-page .service-tag {
  color: #5545bd;
  background: rgba(237, 234, 255, 0.95);
  border-color: rgba(85, 69, 189, 0.14);
}

.software-service-page .service-tag i {
  color: #ff8a00;
}

.software-service-page .computing-content h1 span {
  color: #5545bd;
}

.software-service-page .benefit-item > i {
  background:
    linear-gradient(
      135deg,
      #5545bd,
      #0b63ce
    );
}

.software-service-page .offering-icon {
  background:
    linear-gradient(
      135deg,
      #5545bd,
      #0b63ce
    );
}

.software-service-page .offering-card::before {
  background:
    linear-gradient(
      #5545bd,
      #ff8a00
    );
}


/* =========================================
   SOFTWARE SERVICE IMAGE
========================================= */

.software-service-image {
  position: relative;
  width: 100%;
  height: 390px;

  margin: 10px 0 32px;

  overflow: hidden;

  border-radius: 26px;

  box-shadow:
    0 22px 55px rgba(26, 42, 80, 0.16),
    0 0 0 7px rgba(255, 255, 255, 0.55);
}

.software-service-image::before {
  content: "";
  position: absolute;
  inset: 15px;
  z-index: 3;

  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;

  pointer-events: none;
}

.software-service-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition: transform 1s ease;
}

.software-service-image:hover img {
  transform: scale(1.07);
}

.software-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(12, 19, 52, 0.84),
      rgba(19, 33, 76, 0.2) 58%,
      rgba(19, 33, 76, 0.08)
    );
}


/* Image Badge */
.software-image-badge {
  position: absolute;
  z-index: 4;

  left: 24px;
  bottom: 23px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 14px 18px;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 16px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  animation: softwareBadgeFloat 4s ease-in-out infinite;
}

@keyframes softwareBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.software-image-badge-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #ff8a00;

  border-radius: 14px;

  font-size: 20px;
}

.software-image-badge strong {
  display: block;
  margin-bottom: 4px;

  font-size: 14px;
}

.software-image-badge span {
  color: rgba(255, 255, 255, 0.8);

  font-size: 11.5px;
}


/* Floating Icons */
.software-floating-icon {
  position: absolute;
  z-index: 4;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #5545bd,
      #0b63ce
    );

  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;

  box-shadow:
    0 12px 28px rgba(16, 29, 73, 0.25);

  font-size: 19px;

  animation: softwareIconFloat 4s ease-in-out infinite;
}

.software-float-one {
  top: 24px;
  right: 25px;
}

.software-float-two {
  top: 105px;
  right: 65px;
  animation-delay: 0.8s;
}

.software-float-three {
  right: 20px;
  bottom: 40px;
  animation-delay: 1.6s;
}

@keyframes softwareIconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}


/* =========================================
   SOFTWARE HIGHLIGHT NOTE
========================================= */

.software-highlight-note {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 17px;

  margin-top: 28px;
  padding: 20px 22px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #211754,
      #5545bd,
      #0b63ce
    );

  border-radius: 18px;

  box-shadow:
    0 18px 40px rgba(50, 38, 126, 0.23);
}

.software-highlight-note::before,
.software-highlight-note::after {
  content: "";
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.software-highlight-note::before {
  width: 160px;
  height: 160px;

  right: -55px;
  top: -70px;
}

.software-highlight-note::after {
  width: 100px;
  height: 100px;

  right: -20px;
  top: -42px;
}

.software-highlight-icon {
  position: relative;
  z-index: 2;

  flex: 0 0 56px;
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #ff8a00;

  border-radius: 17px;

  font-size: 22px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.2);

  animation: softwarePulse 2.4s ease-in-out infinite;
}

@keyframes softwarePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.software-highlight-note > div:last-child {
  position: relative;
  z-index: 2;
}

.software-highlight-note strong {
  display: block;
  margin-bottom: 6px;

  font-size: 16px;
  line-height: 1.4;
}

.software-highlight-note p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 13px;
  line-height: 1.6;
}


/* Contact Card Accent */
.software-contact-card::before {
  background:
    linear-gradient(
      90deg,
      #5545bd,
      #25d366,
      #ff8a00
    );
}


/* Responsive */
@media (max-width: 760px) {

  .software-service-image {
    height: 320px;
  }

  .software-floating-icon {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .software-image-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .software-highlight-note {
    align-items: flex-start;
    padding: 18px;
  }

  .software-highlight-icon {
    flex-basis: 47px;
    width: 47px;
    height: 47px;
  }
}


@media (max-width: 450px) {

  .software-service-image {
    height: 270px;
  }

  .software-float-two,
  .software-float-three {
    display: none;
  }

  .software-image-badge {
    padding: 12px;
  }

  .software-image-badge-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}


/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .software-image-badge,
  .software-floating-icon,
  .software-highlight-icon {
    animation: none;
  }

  .software-service-image:hover img {
    transform: none;
  }
}



/* =========================================
   SERVICE HOVER IMAGE DROPDOWN
========================================= */

.services-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-trigger > i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.services-dropdown:hover .dropdown-trigger > i {
  transform: rotate(180deg);
}


/* Main Dropdown */
.service-preview-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;

  width: 940px;
  padding: 20px;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;

  background: #ffffff;
  border: 1px solid #e5ebf3;
  border-radius: 22px;

  box-shadow: 0 25px 65px rgba(10, 34, 68, 0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-50%) translateY(15px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;

  z-index: 9999;
}


/* Hover bridge */
.service-preview-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  height: 22px;
}


.services-dropdown:hover .service-preview-menu,
.services-dropdown:focus-within .service-preview-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}


/* Top Arrow */
.service-preview-menu::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;

  width: 18px;
  height: 18px;

  background: #ffffff;
  border-top: 1px solid #e5ebf3;
  border-left: 1px solid #e5ebf3;

  transform: translateX(-50%) rotate(45deg);
}


/* =========================================
   SERVICE LINKS
========================================= */

.service-preview-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.preview-service-link {
  position: relative;

  display: grid;
  grid-template-columns: 48px 1fr 25px;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;

  color: #17304e;
  background: #f7f9fc;

  border: 1px solid transparent;
  border-radius: 14px;

  text-decoration: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.preview-service-link:hover,
.preview-service-link.active {
  background: #ffffff;
  border-color: rgba(11, 99, 206, 0.18);

  transform: translateX(5px);

  box-shadow: 0 10px 28px rgba(12, 40, 75, 0.09);
}


/* Left Icon */
.preview-link-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    #0b63ce,
    #ff8a00
  );

  border-radius: 14px;

  font-size: 17px;

  transition: transform 0.4s ease;
}


.preview-service-link:hover .preview-link-icon,
.preview-service-link.active .preview-link-icon {
  transform: rotateY(360deg);
}


/* Link Text */
.preview-link-content {
  min-width: 0;
}

.preview-link-content strong {
  display: block;
  margin-bottom: 4px;

  color: #102740;
  font-size: 13.5px;
  line-height: 1.35;
}

.preview-link-content small {
  display: block;

  color: #7b8798;
  font-size: 11px;
  line-height: 1.4;
}


/* Arrow */
.preview-arrow {
  color: #a4afbd;
  font-size: 12px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.preview-service-link:hover .preview-arrow,
.preview-service-link.active .preview-arrow {
  color: #0b63ce;
  transform: translateX(4px);
}


/* =========================================
   IMAGE PREVIEW
========================================= */

.service-image-preview {
  position: relative;
  min-height: 390px;
  overflow: hidden;

  border-radius: 18px;

  background: #0b1f3a;

  box-shadow: 0 14px 35px rgba(9, 31, 61, 0.16);
}


.service-image-preview img {
  width: 100%;
  height: 100%;
  min-height: 390px;

  display: block;
  object-fit: cover;

  transition:
    opacity 0.25s ease,
    transform 0.7s ease;
}


.service-image-preview:hover img {
  transform: scale(1.06);
}


/* Image fade while changing */
.service-image-preview img.image-changing {
  opacity: 0;
  transform: scale(1.05);
}


.service-preview-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(4, 20, 43, 0.94),
      rgba(4, 20, 43, 0.18) 65%
    );
}


/* Preview Text */
.service-preview-information {
  position: absolute;
  z-index: 2;

  left: 24px;
  right: 24px;
  bottom: 24px;

  color: #ffffff;
}


.service-preview-information > span {
  display: inline-block;

  margin-bottom: 9px;
  padding: 7px 12px;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 20px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}


.service-preview-information h3 {
  margin: 0 0 9px;

  color: #ffffff;
  font-size: 23px;
  line-height: 1.3;
}


.service-preview-information p {
  margin: 0 0 15px;

  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.6;
}


.service-preview-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
}


.service-preview-button i {
  color: #ff8a00;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .service-preview-menu {
    width: 800px;
  }

  .preview-service-link {
    grid-template-columns: 43px 1fr 20px;
  }

  .preview-link-icon {
    width: 43px;
    height: 43px;
  }
}


@media (max-width: 850px) {

  .services-dropdown {
    width: 100%;
  }

  .service-preview-menu {
    position: static;

    width: 100%;
    margin-top: 12px;
    padding: 14px;

    grid-template-columns: 1fr;

    display: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;

    border-radius: 15px;
    box-shadow: none;
  }

  .services-dropdown:hover .service-preview-menu,
  .services-dropdown:focus-within .service-preview-menu {
    display: grid;
    transform: none;
  }

  .service-preview-menu::before,
  .service-preview-menu::after {
    display: none;
  }

  .service-image-preview {
    min-height: 270px;
  }

  .service-image-preview img {
    min-height: 270px;
  }
}


@media (max-width: 500px) {

  .service-preview-menu {
    padding: 10px;
  }

  .preview-service-link {
    grid-template-columns: 40px 1fr 16px;
    padding: 10px;
  }

  .preview-link-icon {
    width: 40px;
    height: 40px;
  }

  .preview-link-content strong {
    font-size: 12px;
  }

  .preview-link-content small {
    display: none;
  }

  .service-image-preview {
    min-height: 230px;
  }

  .service-image-preview img {
    min-height: 230px;
  }

  .service-preview-information h3 {
    font-size: 18px;
  }
}

/*=====================================
            FOOTER
======================================*/

.techstop-footer{

    background:#050505;

    color:#d9d9d9;

    position:relative;

    overflow:hidden;

    margin-top:80px;

}

/* top border */

.techstop-footer::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
    90deg,
    #0b63ce,
    #ff8a00,
    #25d366);

}

/* container */

.footer-container{

    max-width:1320px;

    margin:auto;

    padding:70px 20px 50px;

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;

    gap:50px;

}

/* logo */

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

/* paragraph */

.footer-column p{

    color:#bcbcbc;

    line-height:1.9;

    font-size:15px;

}

/* headings */

.footer-column h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:60px;
    height:3px;

    background:#ff8a00;

}

/* links */

.footer-column ul{

    list-style:none;

    padding:0;

}

.footer-column li{

    margin-bottom:16px;

}

.footer-column a{

    color:#c8c8c8;

    text-decoration:none;

    transition:.35s;

}

.footer-column a:hover{

    color:#ff8a00;

    padding-left:8px;

}

/* icons */

.footer-contact i{

    width:24px;

    color:#0b63ce;

}

/* social */

.footer-social{

    margin-top:30px;

    display:flex;

    gap:15px;

}

.footer-social a{

    width:46px;
    height:46px;

    border-radius:50%;

    background:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.4s;

    font-size:18px;

}

.footer-social a:hover{

    transform:
    translateY(-8px)
    rotate(360deg);

    background:#0b63ce;

}

/* address */

.footer-address{

    line-height:2;

}

/* bottom */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:22px;

    font-size:15px;

    color:#bcbcbc;

}

.footer-bottom strong{

    color:#ffffff;

}

.footer-bottom a{

    color:#0b63ce;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#ff8a00;

}

/* responsive */

@media(max-width:991px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:650px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-column h3::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

}

.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}