/* ============================================
   SERVICES PAGE - PREMIUM STYLES
   ============================================ */

/* ============================================
   SERVICES HERO - MATCHES HOMEPAGE & ABOUT
   ============================================ */
.services-hero {
  position: relative;
  min-height: 420px;
  max-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030712;
  padding: 20px 0 40px 0; /* Added bottom padding */
}

/* BACKGROUND LIGHT (DEPTH) */
.services-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 70% 50%, 
    rgba(59, 130, 246, 0.2), 
    transparent 60%
  );
  pointer-events: none;
}

/* NETWORK GLOW EFFECT - Subtle dots */
.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 40%, rgba(96, 165, 250, 0.6) 2px, transparent 2px),
    radial-gradient(circle at 85% 55%, rgba(96, 165, 250, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 70% 65%, rgba(255, 170, 50, 0.5) 2px, transparent 2px);
  background-repeat: no-repeat;
  z-index: 1;
  animation: pulseSubtle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseSubtle {
  from { opacity: 0.3; }
  to { opacity: 0.7; }
}

/* HERO IMAGE - Full immersive */
.services-hero .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.services-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) contrast(1.1);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* FADE OVERLAY - Blends image into dark background */
.services-hero .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #030712 0%,
    rgba(3, 7, 18, 0.9) 25%,
    rgba(3, 7, 18, 0.5) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* CONTENT ABOVE EVERYTHING */
.services-hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-hero .hero-content {
  max-width: 520px;
  /* margin-left removed */
}

/* ===== BREADCRUMB - ORIGINAL STYLE ===== */
.breadcrumb-trail {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-trail a {
  color: var(--gray);
  transition: color 0.2s;
}

.breadcrumb-trail a:hover {
  color: var(--white);
}

.breadcrumb-trail .current {
  color: var(--white);
}

.services-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 8px;
}

.services-hero h2 {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 12px;
}

.services-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 460px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h5 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
}

/* ============================================
   INTERNET CONNECTIVITY - 4 COLUMN CARDS
   ============================================ */
.services-section {
  padding: 60px 40px 72px;
  background: var(--navy);
}

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

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
  border-color: var(--cyan);
}

.service-item-icon {
  width: 72px;
  height: 72px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.service-item:hover .service-item-icon {
  background: rgba(59, 130, 246, 0.2);
}

.service-item-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}

.service-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.service-btn {
  display: inline-block;
  color: var(--cyan);
  font-weight: 600;
  font-size: 13px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.service-btn:hover {
  color: var(--white);
  border-bottom-color: var(--cyan);
}

/* ============================================
   IT SOLUTIONS - 4 COLUMN CARDS
   ============================================ */
.solutions-section {
  padding: 60px 40px 72px;
  background: linear-gradient(180deg, #050c1a 0%, #0a1535 50%, #050c1a 100%);
}

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

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
  border-color: var(--cyan);
}

.solution-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.solution-card:hover .solution-card-icon {
  background: rgba(59, 130, 246, 0.2);
}

.solution-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.8;
}

.solution-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.solution-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.solution-features li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 12px;
}

.solution-btn {
  display: inline-block;
  color: var(--cyan);
  font-weight: 600;
  font-size: 13px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
}

.solution-btn:hover {
  color: var(--white);
  border-bottom-color: var(--cyan);
}

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-section {
  padding: 60px 40px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.coverage-container {
  text-align: center;
}

.coverage-container h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 8px;
}

.coverage-container > p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 28px;
}

.coverage-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.coverage-areas span {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}

.coverage-areas span:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-hero {
    max-height: none;
    min-height: 380px;
  }

  .services-hero .hero-image {
    width: 65%;
  }

  .services-hero .hero-content {
    margin-left: 240px;
  }

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

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

@media (max-width: 768px) {
  .services-hero {
    min-height: 340px;
    padding: 20px 0 30px 0;
  }

  .services-hero .hero-image {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  .services-hero .hero-image img {
    opacity: 1;
    filter: brightness(0.5) contrast(1.2);
  }

  .services-hero .hero-image::after {
    background: linear-gradient(
      180deg,
      #030712 0%,
      rgba(3, 7, 18, 0.9) 30%,
      rgba(3, 7, 18, 0.6) 60%,
      #030712 100%
    );
  }

  .services-hero .hero-inner {
    padding: 0 20px;
  }

  .services-hero .hero-content {
    max-width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .services-hero h1 {
    font-size: 30px;
  }

  .services-hero h2 {
    font-size: 17px;
  }

  .services-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .breadcrumb-trail {
    justify-content: center;
  }

  .services-section {
    padding: 40px 20px 48px;
  }

  .service-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-item {
    padding: 24px 16px;
  }

  .service-item-icon {
    width: 56px;
    height: 56px;
  }

  .service-item-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-item h3 {
    font-size: 15px;
  }

  .service-item p {
    font-size: 12px;
  }

  .service-btn {
    font-size: 12px;
  }

  .solutions-section {
    padding: 40px 20px 48px;
  }

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

  .solution-card {
    padding: 24px 16px;
  }

  .solution-card-icon {
    width: 44px;
    height: 44px;
  }

  .solution-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .solution-card h3 {
    font-size: 15px;
  }

  .solution-card p {
    font-size: 12px;
  }

  .solution-features li {
    font-size: 11px;
  }

  .solution-btn {
    font-size: 12px;
  }

  .coverage-section {
    padding: 40px 20px 60px;
  }

  .coverage-areas span {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    min-height: 300px;
    padding: 20px 0 20px 0;
  }

  .services-hero h1 {
    font-size: 26px;
  }

  .service-items-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-item {
    padding: 20px 14px;
  }

  .service-item-icon {
    width: 48px;
    height: 48px;
  }

  .service-item-icon svg {
    width: 22px;
    height: 22px;
  }

  .service-item h3 {
    font-size: 14px;
  }

  .service-item p {
    font-size: 11px;
  }

  .service-btn {
    font-size: 11px;
  }

  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .solution-card {
    padding: 20px 14px;
  }

  .solution-card-icon {
    width: 40px;
    height: 40px;
  }

  .solution-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .solution-card h3 {
    font-size: 14px;
  }

  .solution-card p {
    font-size: 11px;
  }

  .solution-features li {
    font-size: 10px;
    padding-left: 16px;
  }

  .solution-btn {
    font-size: 11px;
  }

  .coverage-areas {
    gap: 8px;
  }

  .coverage-areas span {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .service-items-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ============================================
   FUTURISTIC GLOBE OVERLAY - ADDED ON TOP
   ============================================ */

/* Globe Container - Positioned on RIGHT side */
.globe-overlay {
  position: absolute;
  top: 50%;
  right: 5%;        /* <-- CHANGED from left to right */
  transform: translateY(-50%);
  z-index: 5;
  width: 320px;
  height: 320px;
  pointer-events: none;
}

/* Outer Orbital Rings */
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringSpin 20s linear infinite;
}

.globe-ring-1 {
  width: 300px;
  height: 300px;
  border-color: rgba(59, 130, 246, 0.12);
  animation-duration: 30s;
}

.globe-ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(59, 130, 246, 0.08);
  animation-duration: 25s;
  animation-direction: reverse;
}

.globe-ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(96, 165, 250, 0.06);
  animation-duration: 20s;
  border-style: dashed;
}

@keyframes ringSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Cyber Globe Core - VIBRANT BLUE */
.cyber-globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.5) 30%, rgba(2, 6, 23, 0.95) 80%);
  box-shadow: 
    inset 0 0 60px rgba(59, 130, 246, 0.5),
    0 0 50px rgba(59, 130, 246, 0.4),
    0 0 100px rgba(37, 99, 235, 0.25),
    0 0 150px rgba(59, 130, 246, 0.15);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  animation: globeFloat 8s ease-in-out infinite alternate;
}

@keyframes globeFloat {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.02); }
}

/* Globe Mesh - More visible */
.globe-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 50%;
  animation: meshScroll 10s linear infinite;
}

@keyframes meshScroll {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Globe Pulse Ring - More visible */
.globe-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
}

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

/* Floating Nodes - Vibrant */
.globe-node {
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(3, 10, 36, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 11px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  cursor: pointer;
}

.globe-node i {
  position: relative;
  z-index: 2;
}

.globe-node:hover {
  color: #ffffff;
  border-color: #60a5fa;
  background: rgba(59, 130, 246, 0.3);
  transform: scale(1.2);
  box-shadow: 0 0 30px #3b82f6, 0 0 60px rgba(59, 130, 246, 0.3);
}

/* Node Pulse Ring - Vibrant */
.node-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  animation: nodePulse 2.5s ease-out infinite;
}

.globe-node:nth-child(1) .node-pulse-ring { animation-delay: 0s; }
.globe-node:nth-child(2) .node-pulse-ring { animation-delay: 0.4s; }
.globe-node:nth-child(3) .node-pulse-ring { animation-delay: 0.8s; }
.globe-node:nth-child(4) .node-pulse-ring { animation-delay: 1.2s; }
.globe-node:nth-child(5) .node-pulse-ring { animation-delay: 1.6s; }
.globe-node:nth-child(6) .node-pulse-ring { animation-delay: 2.0s; }

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Node Positions */
.node-pos-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.node-pos-2 { top: 55px; right: 12px; }
.node-pos-3 { bottom: 85px; right: -2px; }
.node-pos-4 { bottom: 18px; left: 72%; }
.node-pos-5 { bottom: 40px; left: 28px; }
.node-pos-6 { top: 88px; left: 5px; }

/* Connection Lines SVG */
.globe-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.conn-line {
  stroke: rgba(59, 130, 246, 0.2);
  stroke-width: 1;
  animation: linePulse 3s ease-in-out infinite;
}

.conn-line:nth-child(1) { animation-delay: 0s; }
.conn-line:nth-child(2) { animation-delay: 0.4s; }
.conn-line:nth-child(3) { animation-delay: 0.8s; }
.conn-line:nth-child(4) { animation-delay: 1.2s; }
.conn-line:nth-child(5) { animation-delay: 1.6s; }
.conn-line:nth-child(6) { animation-delay: 2.0s; }
.conn-line:nth-child(7) { animation-delay: 2.4s; }
.conn-line:nth-child(8) { animation-delay: 2.8s; }

@keyframes linePulse {
  0%, 100% { stroke: rgba(59, 130, 246, 0.1); }
  50% { stroke: rgba(59, 130, 246, 0.4); }
}

.center-dot {
  fill: #60a5fa;
  opacity: 0.8;
  animation: centerDotPulse 2s ease-in-out infinite;
}

@keyframes centerDotPulse {
  0%, 100% { opacity: 0.5; r: 3; }
  50% { opacity: 1; r: 5; }
}

/* Responsive - Adjust globe position on smaller screens */
@media (max-width: 1024px) {
  .globe-overlay {
    width: 260px;
    height: 260px;
    right: 3%;  /* Changed from left to right */
  }
  /* REMOVED: .services-hero .hero-content { margin-left: 240px; } */
  .globe-ring-1 { width: 240px; height: 240px; }
  .globe-ring-2 { width: 200px; height: 200px; }
  .globe-ring-3 { width: 160px; height: 160px; }
  .cyber-globe-core { width: 120px; height: 120px; }
  .globe-node { width: 24px; height: 24px; font-size: 10px; }
  .node-pos-2 { top: 45px; right: 8px; }
  .node-pos-3 { bottom: 65px; right: -1px; }
  .node-pos-6 { top: 70px; left: 3px; }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 20px 0 30px 0;
    min-height: auto;
    max-height: none;
  }
  
  .globe-overlay {
    position: relative;
    top: auto;
    left: auto;
    right: auto;  /* Added to override */
    transform: none;
    width: 200px;
    height: 200px;
    margin: 10px auto 0;
  }
  
  .services-hero .hero-content {
    margin-left: 0;
    text-align: center;
  }
  
  .globe-ring-1 { width: 180px; height: 180px; }
  .globe-ring-2 { width: 150px; height: 150px; }
  .globe-ring-3 { width: 120px; height: 120px; }
  .cyber-globe-core { width: 90px; height: 90px; }
  .globe-node { width: 20px; height: 20px; font-size: 8px; }
  .node-pos-1 { top: 5px; }
  .node-pos-2 { top: 35px; right: 5px; }
  .node-pos-3 { bottom: 50px; right: -1px; }
  .node-pos-4 { bottom: 12px; left: 72%; }
  .node-pos-5 { bottom: 28px; left: 18px; }
  .node-pos-6 { top: 55px; left: 2px; }
}

/* ============================================
   2 BUTTONS - ADDED TO HERO
   ============================================ */

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.hero-btn-primary:hover::before {
  opacity: 1;
}

.hero-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive buttons */
@media (max-width: 768px) {
  .hero-cta-group {
    justify-content: center;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 10px 22px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ============================================
   GLOWING BUTTONS FOR SERVICE CARDS
   ============================================ */

.service-btn.glow-btn,
.solution-btn.glow-btn {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: auto;
  align-self: center;
  margin-top: 8px;
}

.service-btn.glow-btn::before,
.solution-btn.glow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-btn.glow-btn:hover,
.solution-btn.glow-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
  color: #ffffff;
  border-bottom: none;
}

.service-btn.glow-btn:hover::before,
.solution-btn.glow-btn:hover::before {
  opacity: 1;
}

.service-btn.glow-btn:active,
.solution-btn.glow-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Remove the old underline styles */
.service-btn:hover,
.solution-btn:hover {
  border-bottom: none;
}

/* Make sure the buttons are centered in cards */
.service-item .glow-btn,
.solution-card .glow-btn {
  margin-top: auto;
}

/* Adjust for dark backgrounds */
.solutions-section .solution-btn.glow-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.solutions-section .solution-btn.glow-btn:hover {
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

/* ============================================
   EXTRA LARGE SCREENS - SERVICES PAGE
   ============================================ */

/* For screens 1800px and larger (100+ inch monitors) */
@media (min-width: 1800px) {
  .services-hero {
    min-height: 500px;
    max-height: 650px;
    padding: 30px 0 50px 0;
  }

  .services-hero .hero-inner {
    max-width: 1400px;
    padding: 0 60px;
  }

  .services-hero .hero-content {
    max-width: 650px;
  }

  .services-hero h1 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .services-hero h2 {
    font-size: clamp(22px, 1.8vw, 28px);
  }

  .services-hero p {
    font-size: 17px;
  }

  .services-hero .hero-image {
    width: 58%;
  }

  /* Section Headers */
  .section-header {
    max-width: 800px;
  }

  .section-header h2 {
    font-size: clamp(36px, 3vw, 48px);
  }

  .section-header p {
    font-size: 18px;
  }

  /* Services Section */
  .services-section {
    padding: 80px 60px 90px;
  }

  .services-container {
    max-width: 1400px;
  }

  .service-items-grid {
    gap: 28px;
  }

  .service-item {
    padding: 36px 28px;
    border-radius: 16px;
  }

  .service-item-icon {
    width: 80px;
    height: 80px;
  }

  .service-item-icon svg {
    width: 38px;
    height: 38px;
  }

  .service-item h3 {
    font-size: 19px;
  }

  .service-item p {
    font-size: 14px;
  }

  /* Solutions Section */
  .solutions-section {
    padding: 80px 60px 90px;
  }

  .solutions-container {
    max-width: 1400px;
  }

  .solutions-grid {
    gap: 28px;
  }

  .solution-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

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

  .solution-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .solution-card h3 {
    font-size: 19px;
  }

  .solution-card p {
    font-size: 14px;
  }

  .solution-features li {
    font-size: 13px;
  }

  /* Globe on large screens */
  .globe-overlay {
    width: 400px;
    height: 400px;
  }

  .globe-ring-1 { width: 380px; height: 380px; }
  .globe-ring-2 { width: 330px; height: 330px; }
  .globe-ring-3 { width: 280px; height: 280px; }

  .cyber-globe-core {
    width: 180px;
    height: 180px;
  }

  .globe-node {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .node-pos-2 { top: 65px; right: 15px; }
  .node-pos-3 { bottom: 100px; right: -2px; }
  .node-pos-6 { top: 105px; left: 6px; }

  /* Hero Buttons */
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 14px 34px;
    font-size: 16px;
  }

  /* Coverage Section */
  .coverage-section {
    padding: 80px 60px 100px;
    max-width: 1200px;
  }

  .coverage-areas span {
    padding: 12px 28px;
    font-size: 16px;
  }
}

/* For screens 2200px and larger */
@media (min-width: 2200px) {
  .services-hero .hero-inner {
    max-width: 1600px;
    padding: 0 80px;
  }

  .services-hero h1 {
    font-size: clamp(48px, 4vw, 64px);
  }

  .services-container,
  .solutions-container {
    max-width: 1600px;
  }

  .service-items-grid,
  .solutions-grid {
    gap: 32px;
  }

  .service-item {
    padding: 40px 32px;
  }

  .service-item-icon {
    width: 88px;
    height: 88px;
  }

  .service-item-icon svg {
    width: 42px;
    height: 42px;
  }

  .solution-card {
    padding: 36px 28px;
  }

  .solution-card-icon {
    width: 68px;
    height: 68px;
  }

  .solution-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .globe-overlay {
    width: 480px;
    height: 480px;
  }

  .globe-ring-1 { width: 450px; height: 450px; }
  .globe-ring-2 { width: 390px; height: 390px; }
  .globe-ring-3 { width: 330px; height: 330px; }

  .cyber-globe-core {
    width: 210px;
    height: 210px;
  }

  .globe-node {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 16px 40px;
    font-size: 17px;
  }

  .service-btn.glow-btn,
  .solution-btn.glow-btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* For screens 3000px and larger */
@media (min-width: 3000px) {
  .services-hero .hero-inner {
    max-width: 1800px;
    padding: 0 100px;
  }

  .services-hero h1 {
    font-size: 72px;
  }

  .services-hero .hero-content {
    max-width: 800px;
  }

  .services-container,
  .solutions-container {
    max-width: 1800px;
  }

  .service-items-grid,
  .solutions-grid {
    gap: 36px;
  }

  .service-item {
    padding: 48px 36px;
  }

  .service-item-icon {
    width: 100px;
    height: 100px;
  }

  .service-item-icon svg {
    width: 48px;
    height: 48px;
  }

  .service-item h3 {
    font-size: 22px;
  }

  .service-item p {
    font-size: 16px;
  }

  .solution-card {
    padding: 40px 32px;
  }

  .solution-card-icon {
    width: 76px;
    height: 76px;
  }

  .solution-card-icon svg {
    width: 36px;
    height: 36px;
  }

  .solution-card h3 {
    font-size: 22px;
  }

  .solution-card p {
    font-size: 16px;
  }

  .solution-features li {
    font-size: 14px;
  }

  .globe-overlay {
    width: 550px;
    height: 550px;
  }

  .globe-ring-1 { width: 520px; height: 520px; }
  .globe-ring-2 { width: 460px; height: 460px; }
  .globe-ring-3 { width: 400px; height: 400px; }

  .cyber-globe-core {
    width: 250px;
    height: 250px;
  }

  .globe-node {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 20px 48px;
    font-size: 20px;
  }

  .service-btn.glow-btn,
  .solution-btn.glow-btn {
    padding: 14px 36px;
    font-size: 17px;
  }

  .section-header h2 {
    font-size: 52px;
  }

  .section-header p {
    font-size: 20px;
  }
}