/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: white;
  background: linear-gradient(135deg, #0f0c29 0%, #24243e 35%, #313078 100%);
  margin: 0;
  padding: 0;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

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

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

.text-right {
  text-align: right;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mt-5 {
  margin-top: 2rem;
}

.py-5 {
  padding: 2rem 0;
}

.position-relative {
  position: relative;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgba(13, 110, 253, 0.95); */
  background: linear-gradient(135deg, #0f0c29 0%, #24243e 35%, #313078 100%);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-height: 80px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar-brand {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 60px;
  width: 60px;
  margin-right: 0.5rem;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Mobile Navigation */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-nav {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 172, 254, 0.2);
    flex-direction: column;
    padding: 1.5rem 0;
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(79, 172, 254, 0.1);
    margin-top: 10px;
  }

  .navbar-nav.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    margin: 0;
    text-align: center;
    padding: 0 1.5rem;
  }

  .nav-link {
    color: #333 !important;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(79, 172, 254, 0.1),
      transparent
    );
    transition: left 0.5s ease;
  }

  .nav-link:hover {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
  }

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

  .nav-link.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white !important;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
  }

  .navbar-toggler {
    display: flex !important;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
  }

  .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
  }

  .navbar-toggler.open .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar-toggler.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .navbar-toggler.open .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ===== HERO SECTION ===== */
.hero-section-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0c29 0%, #24243e 35%, #313078 100%);
  padding: 80px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(79, 172, 254, 0.1),
    rgba(0, 242, 254, 0.1)
  );
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation-delay: 10s;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(255, 255, 255, 0.2),
      transparent
    );
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particles 50s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.badge-text {
  background: linear-gradient(
    45deg,
    rgba(79, 172, 254, 0.2),
    rgba(0, 242, 254, 0.2)
  );
  border: 1px solid rgba(79, 172, 254, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #4facfe;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-right: 1rem;
}

.btn i {
  margin-left: 0.5rem;
}

.btn i:first-child {
  margin-left: 0;
  margin-right: 0.5rem;
}

.btn-hero-primary {
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #4facfe;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* ===== TECH SPHERE ===== */
.hero-visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.tech-sphere {
  position: relative;
  width: 400px;
  height: 400px;
}

.sphere-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 30px rgba(79, 172, 254, 0.5);
}

.core-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(79, 172, 254, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

.sphere-core i {
  font-size: 2rem;
  color: white;
}

.tech-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(79, 172, 254, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 200px;
  height: 200px;
  animation: rotate 30s linear infinite;
}

.orbit-2 {
  width: 300px;
  height: 300px;
  animation: rotate 45s linear infinite reverse;
}

.tech-node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(79, 172, 254, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
  color: white;
  animation: reverse-rotate 30s linear infinite;
}

.orbit-2 .tech-node {
  animation: reverse-rotate 45s linear infinite reverse;
}

.tech-node i {
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: #4facfe;
}

.tech-node span {
  font-size: 0.6rem;
  font-weight: 500;
}

.node-1 {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.node-2 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.node-3 {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.node-4 {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.node-5 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.node-6 {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connection-line {
  stroke: rgba(79, 172, 254, 0.3);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 5, 5;
  animation: dash 3s linear infinite;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0 40px 0;
  /* top padding for fixed navbar */
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.5;
}

.page-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-header .row {
  margin: 0;
}

.page-header .col-lg-8 {
  padding: 0 1rem 0 0;
}

.page-header .col-lg-4 {
  padding: 0;
  text-align: right;
  margin-right: -20px;
  padding-right: 20px;
}

.mobile-icon {
  display: none;
}

.desktop-icon {
  display: block;
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 60px 0;
  }

  .header-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }

  .page-title {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .page-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .page-icon {
    font-size: 3rem;
    margin-top: 0;
  }

  .mobile-icon {
    display: block;
  }

  .desktop-icon {
    display: none;
  }
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.6;
}

.services-preview {
  padding: 4rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(79, 172, 254, 0.1) 0%,
    rgba(0, 242, 254, 0.1) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2.5rem;
  color: #4facfe;
  transition: all 0.3s ease;
}

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

.service-card:hover .service-icon i {
  color: #00f2fe;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.features-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(79,172,254,0.1)"/><circle cx="90" cy="10" r="1" fill="rgba(79,172,254,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(79,172,254,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(79,172,254,0.1)"/></svg>');
  opacity: 0.5;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card:hover .feature-icon::before {
  opacity: 0.3;
}

.feature-icon i {
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

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

  .features-header {
    margin-bottom: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
  }

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

  .feature-icon i {
    font-size: 2rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.5;
}

.cta-action {
  flex-shrink: 0;
}

.btn-cta {
  background: linear-gradient(45deg, #00f2fe 0%, #4facfe 100%) !important;
  color: white !important;
}

.btn-cta:hover {
  background: linear-gradient(45deg, #0099cc 0%, #3399ff 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5) !important;
  color: white !important;
}

.btn-cta:focus,
.btn-cta:active {
  background: linear-gradient(45deg, #00f2fe 0%, #4facfe 100%) !important;
  color: white !important;
}

.btn-cta i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .btn-cta {
    padding: 16px 30px;
    font-size: 1.1rem;
    gap: 0.6rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(79, 172, 254, 0.5),
    transparent
  );
}

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

/* Footer Main Layout */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Company Section */
.footer-company {
  justify-content: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo {
  height: 60px;
  width: 60px;
  border-radius: 4px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 1rem;
}

.footer-reg-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reg-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.reg-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  min-width: 80px;
}

.reg-value {
  color: white;
  font-weight: 500;
}

/* Footer Headings */
.footer-heading {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
}

/* Navigation Links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.footer-link i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #4facfe;
  transition: all 0.3s ease;
}

.footer-link span {
  font-weight: 500;
}

.footer-link:hover {
  color: white;
  transform: translateX(8px);
}

.footer-link:hover i {
  color: #00f2fe;
  transform: scale(1.1);
}

.footer-link::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #4facfe;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-contact .contact-note {
  color: rgba(255, 255, 255, 0.8) !important;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  gap: 1rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4facfe;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  word-break: break-word;
}

.contact-link:hover {
  color: white;
  transform: translateX(5px);
}

.contact-item:hover .contact-icon {
  color: #00f2fe;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-top: 1rem;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer-copyright p,
.footer-tagline-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-tagline-bottom {
  text-align: right;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-contact {
    grid-column: 1 / -1;
    margin-top: 2rem;
    justify-self: center;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    /* text-align: center; */
    justify-items: center;
  }

  .footer-section {
    align-items: center;
    max-width: 100%;
    width: 100%;
  }

  .footer-company {
    order: 1;
    max-width: 400px;
    text-align: center;
  }

  .footer-links {
    order: 2;
    max-width: 300px;
  }

  .footer-contact {
    order: 3;
    max-width: 350px;

    text-align: center;
  }

  .footer-contact .contact-item .contact-item-content {
    flex-direction: column;
  }

  .footer-brand {
    justify-content: center;
    font-size: 1.4rem;
  }

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

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

  .footer-nav {
    align-items: center;
    width: 100%;
  }

  .footer-link {
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.5rem auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 200px;
  }

  .footer-link:hover {
    transform: translateY(-2px);
    background: rgba(79, 172, 254, 0.15);
    border-color: rgba(79, 172, 254, 0.3);
  }

  .footer-link::before {
    display: none;
  }

  .contact-link:hover {
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding-top: 2.5rem;
    align-items: center;
  }

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

  .reg-item {
    justify-content: center;
    text-align: center;
  }

  .footer-reg-info {
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-main {
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .footer-section {
    max-width: 100%;
  }

  .footer-company {
    max-width: 100%;
    text-align: center;
  }

  .footer-links {
    max-width: 100%;
    text-align: center;
  }

  .footer-contact {
    max-width: 100%;
    /* text-align: center; */
  }

  .footer-brand {
    font-size: 1.3rem;
  }

  .footer-link {
    padding: 0.75rem 1rem;
    max-width: 100%;
    margin: 0.25rem auto;
  }

  .contact-item {
    padding: 0.75rem 1rem;
    max-width: 100%;
    margin: 0.25rem auto;
  }

  .contact-link {
    font-size: 0.9rem;
  }

  .footer-copyright p,
  .footer-tagline-bottom p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 2rem;
    gap: 1rem;
  }
}

/* ===== SERVICES PAGE ===== */
.services-detail-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-detail-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-detail-header {
  margin-bottom: 2.5rem;
}

.service-detail-top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 2rem;
}

.service-detail-content {
  flex: 1;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-detail-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.05);
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-detail-description {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  width: 100%;
}

.service-features {
  margin-top: 2rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: #4facfe;
  margin-right: 1rem;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.feature-item span {
  color: #555;
  font-weight: 500;
}

.services-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.services-empty i {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.services-empty h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Tech Stack Section */
.tech-stack-section {
  padding: 5rem 0;
  background: white;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.tech-category {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tech-category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tech-icons i {
  font-size: 2.5rem;
  color: #4facfe;
  transition: all 0.3s ease;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icons i:hover {
  transform: scale(1.1);
  color: #00f2fe;
}

.tech-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section .section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.process-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-section .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 2rem auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.2) 0%,
    rgba(118, 75, 162, 0.2) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-icon i {
  font-size: 2rem;
  color: #667eea;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.step-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.contact-form-subtitle {
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.required {
  color: #dc3545;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4facfe;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
  cursor: pointer;
  min-height: 3.2rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-submit {
  margin-top: 1rem;
}

.btn-submit {
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

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

.contact-item-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details {
  flex: 1;
  line-height: 1.4;
}

.contact-label {
  font-weight: 700;
  color: #333;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.2;
}

.contact-link {
  color: #4facfe;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #00f2fe;
}

.contact-text {
  color: #333;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}

.contact-note {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #4facfe;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 1rem 1.5rem;
  max-height: 200px;
}

/* Contact Stats Section */
.contact-stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon i {
  font-size: 2rem;
  color: white;
}

.stat-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* ===== ABOUT PAGE ===== */
.company-overview-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.company-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "content visual"
    "info info";
  gap: 4rem;
  align-items: start;
}

.company-content {
  grid-area: content;
  padding: 2rem 0;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

.company-tagline {
  font-size: 1.3rem;
  color: #4facfe;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.company-description {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.company-extended {
  color: #666;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.company-details {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.company-details-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

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

.company-detail {
  margin-bottom: 1rem;
  color: #555;
}

.company-detail:last-child {
  margin-bottom: 0;
}

.company-detail strong {
  color: #333;
  font-weight: 600;
}

.company-link {
  color: #4facfe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-link:hover {
  color: #00f2fe;
}

.company-visual {
  grid-area: visual;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-info-wrapper {
  grid-area: info;
  margin-top: 2rem;
}

.tech-circles {
  position: relative;
  width: 400px;
  height: 400px;
}

.tech-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
  animation: float 6s ease-in-out infinite;
}

.tech-circle i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tech-circle span {
  font-size: 0.9rem;
  font-weight: 600;
}

.tech-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.circle-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.circle-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

.circle-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 3s;
}

.circle-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 4.5s;
}

/* Expertise Section */
.expertise-section {
  padding: 5rem 0;
  background: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.expertise-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.expertise-card:hover::before {
  opacity: 1;
}

.expertise-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.expertise-icon i {
  font-size: 2.5rem;
  color: white;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.05);
}

.expertise-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: center;
}

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

.expertise-feature {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-feature:last-child {
  border-bottom: none;
}

.expertise-feature i {
  color: #4facfe;
  margin-right: 1rem;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.expertise-feature span {
  color: #555;
  font-weight: 500;
}

/* Skills Section */
.skills-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.skill-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.skill-card:hover::before {
  opacity: 1;
}

.skill-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.skill-icon i {
  font-size: 2.5rem;
  color: white;
}

.skill-card:hover .skill-icon {
  transform: scale(1.1);
}

.skill-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.skill-description {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-section {
    padding: 1rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
    margin-bottom: 0;
    border-radius: 20px;
    order: 1;
  }

  .contact-info-wrapper {
    gap: 1.5rem;
    order: 2;
  }

  .contact-info,
  .faq-section {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .contact-form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .contact-form select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
  }

  .btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  .contact-info-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .contact-item {
    margin-bottom: 1.2rem !important;
  }

  .faq-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
  }

  .stat-icon i {
    font-size: 1.8rem;
  }

  .stat-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .stat-description {
    font-size: 0.95rem;
  }

  .contact-stats-section {
    padding: 3rem 0;
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-category {
    padding: 2rem 1.5rem;
  }

  .tech-icons {
    gap: 1rem;
  }

  .tech-icons i {
    font-size: 2rem;
    padding: 0.75rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-card {
    padding: 2rem;
  }

  .service-detail-header {
    text-align: center;
  }

  .service-detail-top {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .service-detail-icon {
    align-self: center;
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-category {
    padding: 2rem 1.5rem;
  }

  .tech-icons {
    gap: 1rem;
  }

  .tech-icons i {
    font-size: 2rem;
    padding: 0.75rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-card {
    padding: 2rem;
  }

  .service-detail-header {
    text-align: center;
  }

  .service-detail-top {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .service-detail-icon {
    align-self: center;
  }
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .company-overview-section {
    padding: 2rem 0 !important;
  }

  .company-overview-grid {
    display: block !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
    gap: 0 !important;
  }

  .company-name {
    font-size: 2rem;
  }

  .company-tagline {
    font-size: 1.1rem;
  }

  .company-content {
    grid-area: none !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 3rem !important;
    padding: 0 !important;
  }

  .company-visual {
    grid-area: none !important;
    display: flex !important;
    height: 350px !important;
    margin: 3rem 0 !important;
    width: 100% !important;
    padding: 0 2rem !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .company-info-wrapper {
    grid-area: none !important;
    display: block !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
  }

  .tech-circles {
    width: 280px !important;
    height: 280px !important;
    margin: 0 auto !important; /* Center the circles */
    position: relative !important;
  }

  .tech-circle {
    width: 80px !important;
    height: 80px !important;
  }

  .tech-circle i {
    font-size: 1.8rem !important;
  }

  .tech-circle span {
    font-size: 0.7rem !important;
  }

  /* Adjust circle positions to fit within smaller container */
  .circle-1 {
    top: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .circle-2 {
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
  }

  .circle-3 {
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .circle-4 {
    top: 50% !important;
    left: 10px !important;
    transform: translateY(-50%) !important;
  }

  /* Keep original circle positions */

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .expertise-card,
  .skill-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .company-overview-section {
    padding: 1.5rem 0 !important;
  }

  .company-overview-grid {
    display: block !important;
  }

  .company-info-wrapper {
    margin-top: 1rem !important;
  }

  .contact-info {
    padding: 1.5rem !important;
  }

  .contact-info-title {
    margin-bottom: 1rem !important;
  }

  .contact-item {
    margin-bottom: 1rem !important;
  }

  .company-visual {
    height: 400px !important;
    margin: 2rem 0 !important;
    padding: 0 2rem !important;
  }

  .tech-circles {
    width: 100% !important;
    max-width: 400px !important;
    height: 400px !important;
  }

  /* Only scale down circles slightly for very tight spaces */
  .tech-circle {
    width: 110px !important;
    height: 110px !important;
  }

  .tech-circle i {
    font-size: 2.3rem !important;
  }

  .tech-circle span {
    font-size: 0.85rem !important;
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top i {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

/* Pulse animation when first appearing */
.scroll-to-top.show {
  animation: scrollButtonAppear 0.5s ease;
}

@keyframes scrollButtonAppear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  50% {
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

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

@keyframes particles {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-200px);
  }
}

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

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes reverse-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 20;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.fade-in-delay-4 {
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.fade-in-delay-5 {
  animation: fadeIn 0.8s ease-out 1s both;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out 0.5s both;
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .col-lg-6,
  .col-lg-4,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .hero-visual {
    height: 300px;
    margin-top: 2rem;
  }

  .tech-sphere {
    width: 300px;
    height: 300px;
  }

  .orbit-1 {
    width: 150px;
    height: 150px;
  }

  .orbit-2 {
    width: 220px;
    height: 220px;
  }

  .tech-node {
    width: 45px;
    height: 45px;
  }

  .tech-node i {
    font-size: 1rem;
  }

  .tech-node span {
    font-size: 0.5rem;
  }

  .hero-stats {
    margin-top: 2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* ===== UTILITIES ===== */
.fw-bold {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.text-muted {
  color: #6c757d;
}

.text-primary {
  color: #0d6efd;
}

.bg-light {
  background-color: #f8f9fa;
}

.bg-white {
  background-color: white;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.rounded {
  border-radius: 0.375rem;
}

.h-100 {
  height: 100%;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-4 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}
