/* ✅ Applying Google font over the website */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: var(--navbar-height);
  background: linear-gradient(135deg, #3b414c, #243b55);
}

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ✅ Navbar Styling */
.tech-navbar {
  position: fixed;
  top: 10px;
  z-index: 1000;
  width: 100%; /* 🔹 Changed from 98% to 100% */
  background: rgba(255, 255, 255, 0.1); /* Glass effect */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center; /* 🔹 Centering container */
  animation: fadeIn 1s ease-in-out;
  height: 90px; /* ✅ Fixed navbar height */
  max-width: 1600px; /* ✅ Keeps navbar centered on big screens */
  left: 50%; /* 🔹 Ensures centering */
  transform: translateX(-50%); /* 🔹 Centers navbar */
  overflow: visible; /* ✅ allow dropdown visibility */
}

/* ✅ Container */
.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
}

/* ✅ Logo */
.navbar-logo img {
  height: auto;
  max-height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px #ffffff);
  max-width: 180px;
}

/* ✅ Nav Links */
.navbar-links {
  list-style: none;
  display: flex;
  gap: 4rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

/* ⛳ NEW: hide the mobile CTA by default (desktop/tablet) */
.navbar-links .mobile-cta { display: none; }

.nav-item {
  position: relative;
}

.nav-link {
  color: #d8dee9 !important;
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw, 1.1rem); /* ✅ Auto font scaling */
  font-weight: 700 !important; /* Bold */
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #ff5c8a);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
  color: #00d4ff;
  transform: translateY(-3px);
}

.nav-link:hover::before {
  width: 100%;
  left: 0;
}

/* ✅ CTA Button */
.cta-button {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(90deg, #00d4ff, #ff5c8a);
  color: white;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 15px;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ✅ Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Mobile Devices (<=768px) */
@media (max-width: 768px) {
  .tech-navbar {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .navbar-container {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar-links {
    justify-content: center;
    gap: 1.5rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* 💻 Tablets & Medium Screens (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar-links {
    gap: 2rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
  }
}

/* 🖥️ Big Screens (>1600px) */
@media (min-width: 1600px) {
  .tech-navbar {
    padding: 1rem 4rem;
    border-radius: 25px;
  }

  .navbar-links {
    gap: 5rem;
  }

  .nav-link {
    font-size: 1.2rem;
  }
}

/* ✅ Toggle Button */
.menu-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* 📱 Mobile Devices */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show on mobile */
  }

  .navbar-links {
    display: none; /* Hide menu initially */
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
  }

  .navbar-links.active {
    display: flex; /* Show when active */
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* ========================= */
/* 📱 FINAL MOBILE FIXES ✅  */
/* (Overrides to ensure small logo/CTA and visible dropdown) */
/* ========================= */
@media (max-width: 768px) {
  .tech-navbar {
    height: auto;
    padding: 0.7rem 0.9rem;
    min-height: 60px;
    z-index: 2000; /* keep above page */
  }

  .navbar-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  /* Smaller logo */
  .navbar-logo img {
    max-height: 36px;
    max-width: 120px;
    filter: drop-shadow(0 0 6px #ffffff);
  }

  /* Toggle position */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    z-index: 3;
  }

  /* Dropdown container (animated) */
  .navbar-links {
    display: flex !important; /* ensure visible for animation */
    flex-direction: column;
    gap: 0.8rem;
    width: calc(100% - 20px);
    text-align: center;
    background: rgba(0, 0, 0, 0.88);
    padding: 0; /* collapsed */
    border-radius: 12px;
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    right: 10px;
    z-index: 2001; /* above navbar */
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.2s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .navbar-links.active {
    padding: 0.9rem;
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
  }

  /* Hide the header CTA; use the duplicate inside dropdown */
  .navbar-container > .cta-button {
    display: none;
  }

  /* ✅ Show the mobile CTA only on mobile */
  .navbar-links .mobile-cta { display: block; }

  /* Make the mobile CTA smaller */
  .mobile-cta .cta-button {
    width: 100%;
    margin-top: 0;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  /* Shrink CTA generally on small screens (fallback) */
  .cta-button {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    margin-top: 0;
  }
}

/* Accessibility & UX helpers */
body.no-scroll { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .navbar-links, .nav-link::before, .cta-button, .tech-navbar {
    transition: none !important;
    animation: none !important;
  }
}

/* Section Styling */
#contents {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

/* Section Title */
.section-title h2 {
    font-size: 2.2rem;
    color: #d3d3d3;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: auto;
    line-height: 1.5;
}

/* Service Boxes - Modern Glassmorphism Style */
/* ✅ Reactor Layout */
.reactor-layout {
  display: flex;
  position: relative;
  min-height: 100vh; /* ✅ FIX: ensure it always fills full screen */
  height: 100dvh; /* ✅ Modern fix for large screens (covers viewport properly) */
  background: #0d0d1c;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
  flex-wrap: wrap;
  align-items: center; /* ✅ Ensures content vertically centers on tall screens */
  justify-content: center;
}

.reactor-left,
.reactor-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* ✅ Removed offset so full height aligns */
}

/* Keep everything else as-is from your original */
.reactor-right { position: relative; }

.hero-title {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(90deg, #00ffe0, #0088ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.hero-subtitle {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #ffffff;
}

/* ✅ Core Center */
.core-center {
  position: absolute;
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  background: radial-gradient(circle, #0ff, #00f2ff33, transparent);
  border-radius: 50%;
  box-shadow: 0 0 30px #0ff, 0 0 60px #00f2ff;
  animation: corePulse 3s infinite;
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ✅ Orbit Ring */
.orbit-ring {
  position: relative;
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 400px);
  border: 2px dashed rgba(0, 255, 255, 0.4);
  border-radius: 50%;
  animation: rotateOrbit 30s linear infinite;
}

@keyframes rotateOrbit {
  to { transform: rotate(360deg); }
}

/* ✅ Orbit Items */
.orbit-item {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(calc(var(--i) * 72deg));
}

.orbit-item .service-node {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: stayUpright 30s linear infinite;
}

@keyframes stayUpright {
  from { transform: translate(-50%, -50%) rotate(calc(-1 * var(--i) * 72deg)); }
  to { transform: translate(-50%, -50%) rotate(calc(-1 * var(--i) * 72deg - 360deg)); }
}

/* ✅ Service Node */
.service-node {
  width: clamp(100px, 15vw, 160px);
  background: #031c3f;
  color: #0ff;
  border-radius: 20px;
  box-shadow: 0 0 15px #0ff66caa;
  text-align: center;
  padding: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.service-node:hover {
  transform: translate(-50%, -50%) scale(1.2) !important;
  box-shadow: 0 0 30px #ff00ff;
  z-index: 99;
}

.service-node h3 {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: #ffffff;
  margin-bottom: 10px;
}

.service-node p {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  color: #8ff7ff;
  line-height: 1.2;
}

/* 🖥️ Big Screens (>1600px) */
@media (min-width: 1600px) {
  .reactor-layout {
    height: 100vh; /* ✅ Enforce full height */
    min-height: 100vh;
    max-width: 2000px;
    margin: auto;
    padding: 3rem;
  }

  .orbit-ring {
    width: 550px;
    height: 550px;
  }

  .service-node {
    width: 190px;
  }
}

/* Keep all mobile + medium breakpoints exactly the same from your original */

/* Reset */
  :root{
    --accent1: #00e0ff;
    --accent2: #ff00ff;
    --accent3: #00ff99;
    --muted: rgba(255,255,255,0.85);
    --glass: rgba(255,255,255,0.04);
  }

  /* full screen hero */
  .hero-section{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* fallback */
    color: var(--muted);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
  }

  /* canvas covers whole section */
  #heroBgCanvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none;
  }

  /* content floats on top (NO BOX) */
  .hero-content{
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    padding: 40px 24px;
    text-align: center;
    /* no background, no border, nothing boxy */
  }

  /* brand / title */
  .brand{
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: 0.95;
    margin: 0;
    letter-spacing: 6px;
    background: linear-gradient(90deg, rgb(255, 255, 255), #ffffff, #f8f8f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 6px 30px rgba(0,0,0,0.6),
      0 0 18px rgba(0,224,255,0.06);
    transform-origin: center;
    display: inline-block;
    animation: subtlePulse 4s ease-in-out infinite;
  }
  @keyframes subtlePulse {
    0%{ filter: drop-shadow(0 0 8px rgba(0,224,255,0.08)); transform: scale(1); }
    50%{ filter: drop-shadow(0 0 28px rgba(255,0,255,0.12)); transform: scale(1.015); }
    100%{ filter: drop-shadow(0 0 8px rgba(0,224,255,0.08)); transform: scale(1); }
  }

  /* headline */
  .headline{
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin: 14px 0 8px;
    color: rgba(255,255,255,0.94);
    letter-spacing: 0.6px;
    text-shadow: 0 4px 22px rgba(0,0,0,0.6);
  }

  /* lead paragraph - lightweight, floating */
  .lead{
    font-size: clamp(0.95rem, 1.4vw, 1.12rem);
    color: rgba(230, 240, 255, 0.85);
    max-width: 820px;
    margin: 12px auto 18px;
    line-height: 1.6;
  }

  /* CTA */
  .cta-wrap{
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 22px;
    flex-wrap: wrap;
  }

  .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transform: translateZ(0);
    transition: transform 240ms cubic-bezier(.2,.9,.3,1), box-shadow 240ms;
    letter-spacing: 0.4px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .btn-primary{
    background: linear-gradient(90deg, rgba(0,224,255,0.12), rgba(0,160,255,0.08));
    color: #001;
    box-shadow:
      0 10px 30px rgba(0,224,255,0.06),
      0 0 30px rgba(0,224,255,0.06);
    border: 1px solid rgba(0,224,255,0.12);
  }

  .btn-primary:hover{
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0,224,255,0.12), 0 0 60px rgba(0,224,255,0.08);
  }

  .btn-outline{
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 18px rgba(255,0,255,0.02) inset;
  }

  .btn-outline:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(255,255,255,0.03);
    border-color: rgba(0,224,255,0.16);
    color: #dff;
  }

  /* small screens */
  @media (max-width: 768px){
    .hero-section{ min-height: 560px; padding-top: 36px; padding-bottom: 36px; }
    .brand{ font-size: clamp(2.4rem, 12vw, 4rem); letter-spacing: 4px; }
    .headline{ font-size: 1.05rem; }
    .lead{ padding: 0 8px; }
    .cta-wrap{ gap: 10px; }
    .btn{ padding: 11px 20px; font-size: 0.95rem; }
  }


/* 🔹 Parallax Section */
.parallax-section {
  position: relative;
  height: 70vh;
  background-image: url("./../images/ai-generated-8544297_1280.jpg"); /* 👉 replace with your background */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.parallax-section .parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-section .parallax-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.parallax-section .parallax-content p {
  font-size: 1.2rem;
  margin: 0;
}

/* Expertise section starts */
.service-card .img img {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.heading small {
  background: linear-gradient(135deg, #00795f, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  font-weight: 600;
}

.heading h3 {
    color: #3f396d;
    font-size: 2.5rem;
    font-weight: 700;
}

.expertise h4 {
    color: #3f396d;
    font-weight: 700;
}

.expertise a {
    text-decoration: none;
    color: #fca61f;
}

.expertise a:hover {
    color: #6f34fe;
}

.expertise .service-card {
    text-align: center;
    padding: 15px 15px;
    border-radius: 0.7rem;
}

/* Case Studies Section */
.case-studies {
    background-color: #f8f9fa;
}

.case-study-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.case-study-card {
    width: 100%;
    max-width: 400px; /* Ensures it doesn’t get too large on big screens */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto; /* Centers the card */
}

/* Adjust for tablets */
@media (min-width: 768px) {
    .case-study-card {
        width: 45%;
    }
}

/* Adjust for desktops */
@media (min-width: 1024px) {
    .case-study-card {
        width: 30%;
    }
}

.case-study-card img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

.case-study-card h4 {
    color: #3f396d;
    font-weight: 700;
    margin-top: 15px;
}

.case-study-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.cyber-about-wrapper {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

.cyber-about-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.cyber-about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.cyber-about-intro h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  animation: cyberFadeIn 1s ease-out;
}

.cyber-about-intro h1 span {
  color: #00d4ff;
}

.cyber-about-intro p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #bbbbbb;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  animation: cyberFadeInUp 1.2s ease-out;
}

.cyber-timeline {
  position: relative;
  margin-top: 40px;
}

.cyber-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #00d4ff;
  transform: translateX(-50%);
  z-index: 1;
}

.cyber-timeline-item {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: row-reverse;
}

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

.cyber-timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00ffff55;
  border-radius: 16px;
  padding: 30px;
  width: 45%;
  position: relative;
  z-index: 2;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cyber-timeline-item:nth-child(odd) .cyber-timeline-content {
  text-align: right;
}

.cyber-timeline-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #00d4ff;
  margin-bottom: 10px;
}

.cyber-timeline-content p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #cccccc;
  line-height: 1.6;
}

.cyber-timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 255, 255, 0.2);
}

.cyber-timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #00d4ff;
  border: 4px solid #1a1a2e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: cyberPulse 1.5s infinite;
}

.cyber-about-footer {
  text-align: center;
  margin-top: 40px;
  animation: cyberFadeInUp 1.2s ease-out;
}

.cyber-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00d4ff, #ff5c8a);
  color: #000000;
  padding: 12px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: cyberFadeInUp 1.4s ease-out;
}

.cyber-cta-btn:hover {
  background: linear-gradient(135deg, #007fdb, #00ffd5);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(255, 0, 255, 0.5);
}

.cyber-lottie-animation {
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
}

.cyber-lottie-animation1 {
  width: 50%;
  max-width: 300px;
  margin: 20px auto 0;
}

/* Animation Classes */
.cyber-box {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.cyber-animate-left {
  transform: translateX(-100px);
}

.cyber-animate-right {
  transform: translateX(100px);
}

.cyber-animate-bottom {
  transform: translateY(100px);
}

.cyber-box.visible {
  opacity: 1;
  transform: translate(0);
}

/* Keyframes */
@keyframes cyberFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .cyber-timeline-content {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .cyber-timeline-item {
    flex-direction: column;
    align-items: center;
  }
  .cyber-timeline-content {
    width: 90%;
    text-align: center !important;
  }
  .cyber-timeline::before {
    left: 15px;
  }
  .cyber-timeline-dot {
    left: 15px;
    transform: translateY(-50%);
  }
}

@media (max-width: 480px) {
  .cyber-about-wrapper {
    padding: 50px 15px;
  }
  .cyber-about-intro p {
    font-size: 0.95rem;
  }
  .cyber-timeline-content {
    padding: 20px;
  }
  .cyber-cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Ultra-wide screen adjustments */
@media (min-width: 1600px) {
  .cyber-about-container {
    max-width: 1500px;
  }
  .cyber-about-intro h1 {
    font-size: 3.5rem;
  }
}




/* VConnect Expertise Section */
.vconnect-expertise {
  margin-bottom: 20px;
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.expertise-heading h3 {
  font-size: 2.75rem;
  color: #2b2e4a;
  font-weight: 800;
  margin-bottom: 3rem;
}

.expertise-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.expertise-col {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.vconnect-card {
  width: 100%;
  background: #f8f9ff;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease;
}

.vconnect-card:hover {
  transform: translateY(-10px);
}

.vconnect-icon img {
  width: 120px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.vconnect-content h4 {
  font-size: 1.5rem;
  color: #2b2e4a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.vconnect-content p {
  font-size: 1rem;
  color: #5a5a89;
  line-height: 1.6;
}


    
/*CSS for Scrolling Effect*/
  .scrolling-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px 0;
  }

  .logos {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 40px;
  }

  .logos img {
    max-height: 150px;
    object-fit: contain;
  }

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

/* Blog section starts */
.blog {
    background-color: #f2f2ff;
}

.blog .blogpost .card {
    border: none;
    border-radius: 5%;
}

.nav-bg {
    background-color: #fff;
}

.blog .blogpost small {
    color: #6f34fe;
    font-size: 1.1rem;
}

.blog .blogpost h4,
.blogpost a {
    color: #3f396d;
    font-weight: 700;
    margin-top: 1rem;
    text-decoration: none;
}

.blogpost a:hover {
    color: #007cf0;
}

.blog .blogpost .read-more-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #00795f, #00bcd4);
    font-size: 1.1rem;
}

.blog .blogpost .read-more-btn:hover {
  background: linear-gradient(135deg, #3d3e3e, #b0f2fa);
}

/* Styling modal group */
.btn-c {
    margin-left: 94%;
    background: linear-gradient(135deg, #00795f, #00bcd4);
    border: none;
    color: #fff;
    font-size: 2rem;
    margin-top: -3%;
}

.btn-c i {
  background: linear-gradient(135deg, #00795f, #00bcd4);
}

.modal-body .content span {
    font-size: 1rem;
}

.modal-body .content small {
    font-size: 1rem;
    color: #6f34fe;
}

/* Contact Section - Modern Glassmorphism Style */
.contact {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    transition: transform 0.3s ease;
  }
  
  .contact-card:hover {
    transform: scale(1.02);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-control {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 16px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.05), inset -2px -2px 5px rgba(255,255,255,0.7);
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px #9b59b6, 0 0 15px rgba(155, 89, 182, 0.4);
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #00795f, #00bcd4);
    color: white;
    font-weight: 600;
    border: none;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, #3d3e3e, #b0f2fa);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 188, 212, 0.4);
  }
  
  .contact-card i {
    font-size: 24px;
    color: #6f34fe;
    transition: transform 0.3s ease;
  }
  
  .contact-card i:hover {
    transform: scale(1.15);
    color: #00bcd4;
  }
  
  .text {
    color: #6f34fe;
    font-weight: bold;
  }
    
/* Modern Footer */
/* Real-World Inspired Footer */
.footer-realworld {
  background: #111;
  color: #ccc;
  font-family: 'Segoe UI', sans-serif;
  padding: 50px 20px 30px;
  transition: background 0.35s ease, padding 0.3s ease;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #00e0ff;
  outline: none;
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.footer-column h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  display: block;
}

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

.footer-column ul li {
  margin: 8px 0;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column a:hover,
.footer-column a:focus {
  color: #00e0ff;
  outline: none;
}

.footer-column p {
  font-size: 0.9rem;
  margin: 8px 0;
}

.footer-column i {
  margin-right: 8px;
}

.footer-social {
  text-align: center;
  margin-top: 40px;
}

.footer-social button {
  margin: 0 8px;
  background: transparent;
  border: 2px solid #ccc;
  color: #ccc;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.footer-social button:hover,
.footer-social button:focus {
  background-color: #00e0ff;
  color: #000;
  border-color: #00e0ff;
  transform: scale(1.1);
  outline: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}

.footer-bottom hr {
  border-top: 1px solid #444;
  margin-bottom: 15px;
}

.footer-bottom p {
  color: #aaa;
}

/* Safety: hide any col-toggle on desktop by default */
.col-toggle { display: none; }

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-logo {
    height: 70px;
  }

  .footer-brand h3 {
    font-size: 1.6rem;
  }
}

/* ============================
   UNIQUE MOBILE THEME (<=600px)
   - glass/neon cards, accordion columns, larger touch targets
   ============================ */
@media (max-width: 600px) {
  .footer-realworld {
    /* mobile-unique default (will be enhanced by .mobile-unique class) */
    padding: 24px 12px 18px;
  }

  /* mobile-only activated theme via JS: .mobile-unique */
  .footer-realworld.mobile-unique {
    background: linear-gradient(135deg, #020617 0%, #061026 60%, #071527 100%);
    border-top: 4px solid rgba(0, 224, 255, 0.06);
    padding: 20px 12px 14px;
  }

  /* Show toggle (only when mobile-unique) */
  .footer-realworld.mobile-unique .col-toggle {
    display: inline-flex;
  }

  /* Top area centered & compact */
  .footer-realworld.mobile-unique .footer-top {
    width: 100%;
    border-bottom: none;
    padding-bottom: 14px;
    margin-bottom: 6px;
  }

  .footer-realworld.mobile-unique .footer-brand {
    gap: 12px;
  }

  .footer-realworld.mobile-unique .footer-logo {
    height: 60px;
    filter: drop-shadow(0 6px 18px rgba(0, 224, 255, 0.08));
  }

  .footer-realworld.mobile-unique .footer-brand h3 {
    font-size: 1.15rem;
    color: #eafcff;
    letter-spacing: .2px;
  }

  .footer-realworld.mobile-unique .footer-links {
    display: none; /* compact: show important links via columns */
  }

  /* Footer columns become card-like and collapsible */
  .footer-realworld.mobile-unique .footer-middle {
    margin-top: 16px;
    display: block;
  }

  .footer-realworld.mobile-unique .footer-column {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 12px 12px 10px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(2,6,23,0.6);
    border-left: 4px solid rgba(0, 224, 255, 0.12);
  }

  .footer-realworld.mobile-unique .footer-column h4 {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding-right: 8px;
    color: #e8fbff;
  }

  /* Toggle button inserted by JS */
  .footer-realworld.mobile-unique .col-toggle {
    background: transparent;
    border: none;
    color: #00e0ff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-realworld.mobile-unique .col-toggle:focus {
    outline: 2px solid rgba(0, 224, 255, 0.22);
    outline-offset: 2px;
  }
  .footer-realworld.mobile-unique .col-toggle .chev {
    display: inline-block;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1;
  }

  /* Collapsible content wrapper */
  .footer-realworld.mobile-unique .col-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.36s cubic-bezier(.2,.9,.3,1), padding 0.28s;
    padding-top: 0;
  }
  .footer-realworld.mobile-unique .col-content.open {
    max-height: 1000px; /* large enough for content */
    padding-top: 10px;
  }

  .footer-realworld.mobile-unique .footer-column ul li {
    margin: 10px 0;
  }

  .footer-realworld.mobile-unique .footer-column a,
  .footer-realworld.mobile-unique .footer-column p {
    color: #d7fbff;
    font-size: 0.98rem;
  }

  /* Social area larger for touch */
  .footer-realworld.mobile-unique .footer-social {
    margin-top: 8px;
  }
  .footer-realworld.mobile-unique .footer-social button {
    margin: 0 8px;
    padding: 12px;
    font-size: 1.4rem;
    border-width: 2px;
    transition: transform 0.18s ease, background-color 0.18s;
  }

  .footer-realworld.mobile-unique .footer-bottom {
    margin-top: 12px;
    font-size: 0.86rem;
  }
  .footer-realworld.mobile-unique .footer-bottom hr {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 10px;
  }

  /* Focus states for links inside mobile theme */
  .footer-realworld.mobile-unique a:focus {
    outline: 2px solid rgba(0,224,255,0.14);
    outline-offset: 3px;
  }
}



/* Contact Section */
.contact-info p {
  font-size: 0.95rem;
  margin: 8px 0;
  color: #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.contact-info a {
  color: #00e0ff;
  text-decoration: none;
}

.tech-social-icons {
  margin-top: 30px;
}

.tech-social-btn {
  margin: 0 10px;
  padding: 12px;
  font-size: 1.2rem;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tech-social-btn:hover {
  transform: scale(1.1);
  background-color: #00e0ff;
  color: #000;
}

.instagram:hover { background-color: #E4405F; color: #fff; }
.email:hover { background-color: #007bff; color: #fff; }
.twitter:hover { background-color: #1DA1F2; color: #fff; }
.linkedin:hover { background-color: #0077b5; color: #fff; }

.tech-divider {
  border-top: 1px solid #555;
  margin: 40px 0 20px;
}

.tech-copy {
  font-size: 0.95rem;
  color: #bbbbbb;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-info-sections {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

/* Team Section Styling */
.team-section .row {
    display: flex;
    justify-content: space-between; /* Ensures even spacing */
    align-items: center; /* Aligns team members vertically */
    flex-wrap: nowrap; /* Prevents wrapping */
    gap: 20px; /* Space between team members */
}

/* Team Member Styling */
.team-section .col-md-4 {
    flex: 1; /* Distributes equal space */
    max-width: 30%; /* Ensures members fit in a single row */
    text-align: center;
}

.team-section strong {
    color: #028285;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-section .row {
        flex-wrap: wrap; /* Allows stacking on smaller screens */
        justify-content: center;
    }

    .team-section .col-md-4 {
        max-width: 100%; /* Full width on smaller screens */
    }
}

/* Expertise Showcase Section */
.expertise-showcase {
    background-color: #ffffff;
    padding: 60px 0;
}

.expertise-title h2 {
    color: #333;
    font-weight: bold;
    text-align: center;
}

/* Progress Bar Container */
.progress-bar-container {
    margin-bottom: 20px;
}

/* Progress Bar Title */
.progress-title {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

/* Progress Bar Wrapper */
.progress-bar-wrap {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #00dfd8, #007cf0);
    width: 0;  /* Default to 0, animated using JS */
    transition: width 1s ease-in-out;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Root Setup */
:root {
  --primary-color: #6c5ce7;
  --hover-color: #4834d4;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --card-bg: rgba(255, 255, 255, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --border-radius: 20px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

/* Services Grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Service Card */
.service-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
  justify-content: space-between;
  height: 100%;
  min-height: 450px; /* Fixed height for equal card size */
  max-height: 450px;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: #ffffff;
}

/* Service Images */
.service-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
  transform: scale(1.1);
}

/* Service Titles */
.service-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
}

.service-card:hover h4 {
  color: var(--hover-color);
}

/* Service Description */
.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}


/* Responsive Modal Background */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

/* Modal Content Styling (Glassmorphism) */
.modal-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  max-width: 700px;
  width: 90%;
  border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  color: var(--text-dark);
  position: relative;
  overflow-y: auto;
  max-height: 85vh;
  transform: scale(0.9);
  opacity: 0;
  animation: modalAnim 0.5s forwards;
}

/* Modal Content Animation */
@keyframes modalAnim {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Headings */
.modal-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Paragraphs */
.modal-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Close Button (Glassmorphism Style) */
.close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-dark);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Close Button Hover */
.close:hover {
  transform: rotate(45deg) scale(1.2);
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Fade-In Background (optional if you want to use fade separately) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
  

  .footer a {
    color: #171717;
    text-decoration: none;
    display: block;
    padding: 5px 0;
  }

  .footer a:hover {
    color: #344043;
  }

  .social-icon {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #bbb;
    text-decoration: none;
  }

  .social-icon:hover {
    color: #fff;
  }

  @media (max-width: 768px) {
    .footer .text-md-start, .footer .text-md-end {
      text-align: center !important;
    }
  }

/* about page */
.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-bottom: 1cm;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .col {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
  }

  .team-member {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
  }

  .team-member:hover {
    transform: translateY(-5px);
  }

  .pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .member-info h4 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
  }

  .member-info span {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
  }

  /* .custom-tab {
    background: linear-gradient(135deg, #ff7b00, #ffb700);
    color: rgb(11, 11, 11) !important;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border: none;
  }

  .custom-tab:hover {
    background: linear-gradient(135deg, #ffb700, #ff7b00);
    color: white !important;
  }

  .custom-tab.active {
    background: linear-gradient(135deg, #ffb700, #ff7b00) !important;
    color: white !important;
    border: none;
  } */

  .nav-pills .nav-link {
    outline: none;
  }

/* General About Section */


/* 🌌 Modern Dark Cyber Theme */
.about-section {
  position: relative;
  padding: 100px 0;
  color: #e8f7ff;
  font-family: 'Poppins', sans-serif;
  background: url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?auto=format&fit=crop&w=1400&q=80')
    no-repeat center center/cover;
  overflow: hidden;
}

.about-section .overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1;
}

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

.intro-content {
  text-align: center;
  margin-bottom: 70px;
}

.intro-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, #00f5ff, #00ffa1, #008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 10px #00fff2, 0 0 20px #00ffc8; }
  to { text-shadow: 0 0 20px #00ffc8, 0 0 40px #00fff2; }
}

.intro-content span {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 10px #00ffc8;
}

.intro-content p {
  max-width: 780px;
  margin: 20px auto 0;
  font-size: 1.15rem;
  color: #d4f7ff;
  opacity: 0.9;
  line-height: 1.8;
}

/* ✅ Timeline Layout */
.timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.timeline-item {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  animation-fill-mode: forwards;
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.1);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(0, 255, 200, 0.3);
}

.timeline-text h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: #00f0ff;
}

.timeline-text p {
  color: #e5faff;
  font-size: 1.05rem;
  line-height: 1.7;
}

.lottie-container,
.lottie-container-alt {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  border: 2px solid rgba(0, 255, 200, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
  animation: float 4s ease-in-out infinite;
}

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

/* ✅ CTA Section */
.about-cta {
  margin-top: 60px;
  text-align: center;
}

.about-cta p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #baf9ff;
}

.btn-learn-more {
  background: linear-gradient(135deg, #00ffae, #00c4ff);
  color: #0a0a0a;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.25);
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: linear-gradient(135deg, #00c4ff, #00ffae);
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 255, 200, 0.4);
}

/* ✅ Scroll Animations */
.slide-left { animation: slideLeft 1s ease forwards; }
.slide-right { animation: slideRight 1s ease forwards; }
.slide-up { animation: slideUp 1s ease forwards; }
.fade-in { animation: fadeIn 1.5s ease forwards; }

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .timeline-content {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .lottie-container,
  .lottie-container-alt {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .intro-content h1 {
    font-size: 2.1rem;
  }
  .intro-content p {
    font-size: 1rem;
  }
  .timeline-text h3 {
    font-size: 1.5rem;
  }
  .timeline-text p {
    font-size: 0.95rem;
  }
  .lottie-container,
  .lottie-container-alt {
    width: 130px;
    height: 130px;
  }
}


/* About page */
/* About Section */
.abt-wrapper {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.abt-title h3 {
  font-size: 2.2rem;
  color: #a7b5ff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-top: 60px;
  margin-bottom: 50px;
}

.abt-title h3::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: #00e0ff;
  bottom: -8px;
  left: 25%;
  border-radius: 2px;
}

.abt-container {
  max-width: 1300px;
  margin: auto;
}

.abt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.abt-card {
  background: #0b1019;
  color: #ccc;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.abt-card:hover {
  transform: translateY(-5px);
}

.abt-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.abt-list {
  list-style: none;
  padding: 0;
}

.abt-list li {
  margin: 10px 0;
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
}

.abt-list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 0;
  color: #00e0ff;
  font-weight: bold;
}

.abt-icon {
  margin-right: 8px;
}

/* Skills Section */
.abt-title-alt h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #00e0ff, #ff6ad5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.abt-skill-card {
  background: #0b1019;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  max-width: 1000px;
  margin: auto;
}

.abt-skill-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.abt-skill-card strong {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .abt-title h3,
  .abt-title-alt h3 {
    font-size: 1.8rem;
  }

  .abt-card,
  .abt-skill-card {
    padding: 20px;
  }
}


  /* services page starts here */
/* Base Section Style */
.service-section-modern {
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

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

/* Headings */
.service-heading h3 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
}

.service-heading .sub-title {
  font-size: 1.4rem;
  color: #555e6d;
  margin-bottom: 28px;
}

.service-intro {
  font-size: 1.1rem;
  color: #333b49;
  max-width: 780px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Grid Layout Without Cards */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 70px;
  padding: 0;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    row-gap: 60px;
  }
}

/* Service Items – Cardless Flow */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  border-left: 4px solid #00c096;
  padding-left: 20px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-image {
  width: 200px;
  min-width: 200px;
  height: 200px;
  object-fit: contain;
  margin-top: 4px;
}

.service-content h4 {
  font-size: 1.5rem;
  color: #16584e;
  margin-bottom: 8px;
  font-weight: bolder;
}

.service-content p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* CTA Button Style */
.modern-btn {
  margin-top: 15px;
  background-color: transparent;
  color: #00c096;
  font-weight: 600;
  border: 2px solid #00c096;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.modern-btn:hover {
  background: linear-gradient(135deg, #00795f, #00bcd4);
  color: white;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.close-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}


/* Achievements section */
.achievements-section {
  padding: 50px 20px;
  background: #0f172a; /* Dark background */
  border-radius: 20px;
}

.achievements-section .heading h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff; /* White for contrast */
  margin-bottom: 10px;
}

.section-subtitle {
  color: #cccccc; /* Light gray */
  font-size: 16px;
  margin-bottom: 40px;
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat h2 {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.stat span {
  font-size: 16px;
  color: #aaaaaa; /* Soft light gray */
}

/* Subtle hover animation */
.stat:hover h2 {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .stat h2 {
    font-size: 48px;
  }

  .stat span {
    font-size: 14px;
  }
}

.challenges-section {
  background: #fefefe;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.challenge-box {
  background: linear-gradient(135deg, #00795f, #00bcd4);
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.challenge-box:hover {
  transform: translateY(-5px);
}

.challenge-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.challenge-box p {
  font-size: 14px;
  opacity: 0.95;
}


  /* services page ends here */
  .career-journey {
    padding: 60px 20px;
    background: linear-gradient(120deg, #f0f4ff, #ffffff);
  }
  
  .career-wrapper {
    max-width: 700px;
    margin: auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
  }
  
  .journey-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #14213d;
  }
  
  .journey-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .journey-steps {
    position: relative;
  }
  
  .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
  }
  
  .step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    height: 100%;
    width: 2px;
    background: #e0e0e0;
    z-index: 0;
  }
  
  .step:last-child::before {
    display: none;
  }
  
  .circle {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00795f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1;
    margin-right: 20px;
  }
  
  .content {
    flex-grow: 1;
  }
  
  .content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #1d3557;
  }
  
  .content input[type="text"],
  .content input[type="email"],
  .content input[type="tel"],
  .content input[type="file"] {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    background: #f9f9f9;
  }
  
  .file-note {
    font-size: 0.85rem;
    color: #888;
  }
  
  .journey-submit {
    padding: 12px 30px;
    border-radius: 30px;
    background: #00795f;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .journey-submit:hover {
    background: #009e89;
  }
  
  @media (max-width: 600px) {
    .step {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .step::before {
      left: 19px;
    }
  
    .circle {
      margin-bottom: 10px;
    }
  }

/* Contact Wrapper */
.glass-contact-wrapper {
  padding: 6rem 2rem;
  font-family: 'Inter', sans-serif;
  color: #f1f1f1;
  position: relative;
  overflow: hidden;
}

/* Intro */
.glass-contact-intro {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.glass-contact-subtitle {
  color: #00d4ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.glass-contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: #ffffff;
}

.glass-contact-text {
  font-size: 1rem;
  color: #bbbbbb;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.glass-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 3rem;
}

/* Info Panel */
.glass-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 255, 180, 0.1);
}

.glass-info-item {
  display: flex;
  flex-direction: column;
}

.glass-info-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #00d4ff;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.glass-info-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.glass-info-text:hover {
  color: #00d4ff;
}

/* Contact Form */
.glass-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 255, 180, 0.05);
}

.glass-contact-form input,
.glass-contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #777;
  padding: 0.8rem 0.4rem;
  font-size: 1.05rem;
  color: #fff;
  transition: border-color 0.3s ease;
}

.glass-contact-form input::placeholder,
.glass-contact-form textarea::placeholder {
  color: #aaa;
  transition: color 0.3s ease;
}

.glass-contact-form input:focus,
.glass-contact-form textarea:focus {
  outline: none;
  border-bottom-color: #00d4ff;
}

.glass-contact-form input:focus::placeholder,
.glass-contact-form textarea:focus::placeholder {
  color: #00ffd5;
}

/* Button */
.glass-contact-form button {
  background: linear-gradient(90deg, #00d4ff, #ff5c8a);
  color: white;
  border: none;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 8px 20px rgba(0, 255, 180, 0.2);
  transition: all 0.3s ease;
}

.glass-contact-form button:hover {
  background: linear-gradient(135deg, #007fdb, #00ffd5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .glass-contact-title {
    font-size: 2rem;
  }
}


/* About Section */
/* Main Container */
.about-section {
  padding: 80px 20px;
}

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

/* Intro */
.intro-content {
  text-align: center;
  margin-bottom: 60px;
}

.intro-content h1 {
  font-size: 2.5rem;
}

.intro-content span {
  color: #007BFF;
}

.intro-content p {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
}

/* Timeline */
.timeline-wrapper {
  display: flex;
  flex-direction: column;
  color: white;
}

.timeline-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

/* Flex layout for text and animation */
.timeline-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.timeline-content.reverse {
  flex-direction: row-reverse;
}

.timeline-text {
  flex: 1;
}

.timeline-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #00dfd8;
}

.lottie-container,
.lottie-container-alt {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: 300px;
}

/* Marker (if needed for visual guide) */
.timeline-marker {
  display: none;
}

/* CTA */
.about-cta {
  text-align: center;
  margin-top: 60px;
  color: white;
}

.btn-learn-more {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00d4ff, #ff5c8a);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #0056b3;
}

/* Animations */
.animate-from-left {
  transform: translateX(-50px);
}

.animate-from-right {
  transform: translateX(50px);
}

.animate-from-bottom {
  transform: translateY(50px);
}

.visible.animate-from-left,
.visible.animate-from-right,
.visible.animate-from-bottom {
  transform: translateX(0) translateY(0);
}

/* ===== Back to Top Button - Neon Glow Style ===== */
  #btn-back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #00fff2;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(255, 0, 255, 0.2);
    z-index: 99;
    padding: 14px 18px;
    font-size: 1.4rem;
    display: none; /* Initially hidden */
    transition: all 0.3s ease;
    animation: glowPulse 2s infinite alternate;
  }

  #btn-back-to-top:hover {
    background: rgba(0, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), inset 0 0 20px rgba(255, 0, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
  }

  /* Neon pulse animation */
  @keyframes glowPulse {
    0% {
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(255, 0, 255, 0.2);
    }
    100% {
      box-shadow: 0 0 25px rgba(0, 255, 255, 0.9), inset 0 0 20px rgba(255, 0, 255, 0.4);
    }
  }

/* ===== Parallax Background + Neon Glassmorphism ===== */
.pc-builder-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 85vh;
  text-align: center;
  overflow: hidden;
  background: url("../images/PC-Background.png") center/cover no-repeat fixed;
  box-sizing: border-box;
}


/* ===== Text Box (appears after scroll) ===== */
.pc-builder-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.5s ease-out;
  margin-bottom: 10vh;
}
.pc-builder-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Heading ===== */
.pc-builder-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  background:black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  font-weight: 900;
}


/* ===== Description ===== */
.pc-builder-content p {
  color: #d6e9f5;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 35px;
}

/* ===== Buttons Section ===== */
.pc-builder-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Build Button */
.pc-builder-btn {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  background: linear-gradient(135deg, #00fff2, #ff00ff);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.pc-builder-btn:hover {
  background: linear-gradient(135deg, #ff00ff, #00fff2);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
  transform: translateY(-3px);
}

/* Contact Button */
.contact-btn {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #00fff2;
  border: 1px solid rgba(0, 255, 255, 0.6);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}
.contact-btn:hover {
  color: #0a0a0a;
  background: linear-gradient(135deg, #00fff2, #ff00ff);
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.5);
  transform: translateY(-3px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .pc-builder-content {
    padding: 40px 20px;
    margin-bottom: 5vh;
  }
  .pc-builder-content h2 {
    font-size: 2rem;
  }
  .pc-builder-content p {
    font-size: 1rem;
  }
  .pc-builder-buttons {
    flex-direction: column;
    gap: 15px;
  }
}




/* 🌑 Minimal Modern Dark Service Page */

/* ===== Page Header ===== */
/* ===== Page Header ===== */
.page-header {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(160deg, #0e0e0e, #1c1c1c 80%);
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(40px);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); /* Responsive size */
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -1px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #aaa;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* ===== Services Container ===== */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* ===== Service Card ===== */
.service-card {
  background: #161616;
  border: 1.5px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

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

.service-card:hover {
  background: #1e1e1e;
  transform: translateY(-5px);
}

/* ===== Icon Style ===== */
.service-icon {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 15px;
  color: #f8d66d;
  background: #292929;
  padding: 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Title & Description ===== */
.service-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 8px;
  font-weight: 700;
  color: #f2f2f2;
}

.service-desc {
  color: #bbb;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 1.6;
}

/* ===== Advanced Services Section ===== */
.advanced-services {
  background: linear-gradient(140deg, #252525, #323232);
  padding: 70px 20px;
  margin-top: 70px;
  position: relative;
}

.advanced-services::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(248,214,109,0.07), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.advanced-services h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 30px;
  color: #f8d66d;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 15px 30px;
  }

  .services-container {
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  .advanced-services {
    padding: 50px 15px;
  }
}

@media (min-width: 1600px) {
  .page-header h1 {
    font-size: 3.5rem;
  }
  .services-container {
    max-width: 1400px;
  }
  .advanced-services {
    padding: 100px 20px;
  }
}

/* ================= BUILD YOUR PC SECTION ================= */
.build-pc-section {
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.build-pc-title {
  font-size: 2rem;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 10px;
}

.build-pc-subtitle {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* ================= FLOW DIAGRAM ================= */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 50px;
}

.node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 15px 25px;
  min-width: 150px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.node:hover {
  box-shadow: 0 0 20px #00c6ff;
  transform: translateY(-5px);
}

.connector {
  height: 4px;
  width: 60px;
  border-radius: 5px;
  animation: move-gradient 3s linear infinite;
  background-size: 200% 100%;
}

.connector.red { background: linear-gradient(90deg, #ff004c, #ff6b6b, #ff004c); }
.connector.blue { background: linear-gradient(90deg, #00c6ff, #0072ff, #00c6ff); }
.connector.green { background: linear-gradient(90deg, #00ff88, #32ff7e, #00ff88); }
.connector.yellow { background: linear-gradient(90deg, #f8c000, #ffdd57, #f8c000); }

@keyframes move-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ================= FORM ================= */
.build-pc-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  text-align: left;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #00c6ff;
}

input,
select,
textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

textarea {
  resize: none;
}

.build-pc-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.build-pc-btn:hover {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  box-shadow: 0 0 15px #00c6ff;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}
