/* Animated gradient background */
/* Modern Glassmorphism Navbar */
.navbar-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(34, 40, 49, 0.85);
  box-shadow: 0 8px 32px 0 rgba(14, 131, 136, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1.5px solid #0e838844;
  z-index: 100;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.navbar-logo-svg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(56, 178, 172, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.navbar-logo-svg:hover {
  box-shadow: 0 6px 20px rgba(56, 178, 172, 0.5);
  transform: scale(1.05);
}

.navbar-logo-svg svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* Logo Animation Styles */
.logo-animation {
  animation: logoGlow 3s ease-in-out infinite;
}

.ring-outer {
  animation: rotateClockwise 8s linear infinite;
  transform-origin: 20px 20px;
}

.ring-inner {
  animation: rotateCounterClockwise 6s linear infinite;
  transform-origin: 20px 20px;
}

.c-shape {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

.node {
  animation: nodesPulse 1.5s ease-in-out infinite alternate;
}

.node-1 {
  animation-delay: 0s;
}

.node-2 {
  animation-delay: 0.4s;
}

.node-3 {
  animation-delay: 0.8s;
}

.node-4 {
  animation-delay: 1.2s;
}

.connection-1,
.connection-2 {
  animation: connectionFlow 2s ease-in-out infinite alternate;
}

.connection-2 {
  animation-delay: 1s;
}

/* Keyframe Animations */
@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(56, 178, 172, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.6));
  }
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes pulseGlow {
  0% {
    stroke-width: 2.5;
    opacity: 0.8;
  }
  100% {
    stroke-width: 3;
    opacity: 1;
  }
}

@keyframes nodesPulse {
  0% {
    r: 1.5;
    opacity: 0.6;
  }
  100% {
    r: 2;
    opacity: 1;
  }
}

@keyframes connectionFlow {
  0% {
    opacity: 0.3;
    stroke-width: 1;
  }
  100% {
    opacity: 0.9;
    stroke-width: 1.5;
  }
}

/* Hover effects for the entire logo */
.navbar-logo:hover .ring-outer {
  animation-duration: 4s;
}

.navbar-logo:hover .ring-inner {
  animation-duration: 3s;
}

.navbar-logo:hover .c-shape {
  animation-duration: 1s;
}

.navbar-logo:hover .node {
  animation-duration: 0.8s;
}
.navbar-logo-svg svg {
  width: 20px;
  height: 20px;
  color: white;
}
.navbar-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f6f6f6;
}
.navbar-title .neon {
  color: #0e8388;
}
.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-links li a {
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: #f6f6f6;
  position: relative;
  padding: 0.3rem 0.7rem;
  border-radius: 1.2rem;
  transition: color 0.2s, background 0.2s;
  background: rgba(14, 131, 136, 0.12);
}
.navbar-links li a:hover {
  color: #f9b572;
  background: rgba(249, 181, 114, 0.18);
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  margin-left: 1.5rem;
}
.navbar-hamburger span {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0e8388 0%, #f9b572 100%);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}
.navbar-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.navbar-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34, 40, 49, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}
.navbar-mobile.active {
  display: flex;
}
.navbar-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.navbar-mobile ul li a {
  font-size: 2.2rem;
  font-family: "Space Grotesk", sans-serif;
  color: #f9b572;
  text-decoration: none;
  font-weight: 700;
  text-shadow: none;
  transition: color 0.2s;
  background: rgba(14, 131, 136, 0.18);
  border-radius: 1.2rem;
  padding: 0.5rem 1.2rem;
}
.navbar-mobile ul li a:hover {
  color: #f6f6f6;
  background: rgba(249, 181, 114, 0.12);
}
@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
  }
}

/* Modern Hero Section */
.hero-modern {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: linear-gradient(120deg, #1a222b 0%, #0e8388 60%, #f9b572 100%);
}
.hero-modern-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 60vh;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-modern-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2rem;
}
.hero-modern-title {
  font-size: 3.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  margin: 0 0 1.2rem 0;
  color: #f6f6f6;
  line-height: 1.1;
}
.hero-modern-accent {
  color: #f9b572;
  background: linear-gradient(90deg, #0e8388 0%, #f9b572 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-modern-sub {
  font-size: 1.35rem;
  color: #0e8388;
  margin-bottom: 2rem;
  font-family: "DM Sans", sans-serif;
  max-width: 400px;
}
.hero-modern-cta {
  display: flex;
  gap: 1.2rem;
}
.hero-modern-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 320px;
  padding-right: 2rem;
}
.hero-modern-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 8px 32px #0e838866);
  border-radius: 2rem;
  background: #fff;
}
@media (max-width: 900px) {
  .hero-modern-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 0;
  }
  .hero-modern-left,
  .hero-modern-right {
    padding: 0;
    min-width: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-modern-left {
    align-items: center;
  }
  .hero-modern-img {
    max-width: 320px;
  }
}
.bg-animated {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, #f6f8fa 0%, #e3e6ee 60%, #cfd8dc 100%);
  animation: gradientMove 10s ease-in-out infinite alternate;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Fonts */
body {
  font-family: "DM Sans", "Space Grotesk", sans-serif;
  margin: 0;
  min-height: 100vh;
  color: #232946;
  overflow-x: hidden;
  background: #f6f8fa;
}

/* Floating pill navbar */
.nav-pill {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(44, 49, 66, 0.08), 0 0 0 4px #cfd8dc33;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  z-index: 100;
  border: 1.5px solid #e3e6ee;
  transition: box-shadow 0.3s;
}

/* Logo */
.nav-logo span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #232946;
  text-shadow: none;
}
.nav-logo .neon {
  color: #4f5d75;
  text-shadow: none;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: #232946;
  position: relative;
  padding: 0.3rem 0.7rem;
  border-radius: 1.2rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-links li a:hover {
  color: #4f5d75;
  background: rgba(79, 93, 117, 0.08);
}
.nav-links li a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  margin-left: 1.5rem;
}
.nav-hamburger div {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-hamburger.active div:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-hamburger.active div:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active div:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(79, 93, 117, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav-mobile.active {
  display: flex;
}
.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.nav-mobile ul li a {
  font-size: 2.2rem;
  font-family: "Space Grotesk", sans-serif;
  color: #7da2a9;
  text-decoration: none;
  font-weight: 700;
  text-shadow: none;
  transition: color 0.2s;
}
.nav-mobile ul li a:hover {
  color: #232946;
  text-shadow: none;
}

/* Hero Section */
.hero-diagonal {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: none;
}
.hero-bg-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #e3e6ee 60%, #7da2a9 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  opacity: 0.35;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 60vh;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2rem;
}
.hero-left h1 {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  color: #232946;
  line-height: 1.1;
}
.hero-left .accent {
  color: #4f5d75;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 1.25rem;
  color: #4f5d75;
  margin-bottom: 2rem;
  font-family: "DM Sans", sans-serif;
  max-width: 400px;
}
.hero-cta {
  display: flex;
  gap: 1.2rem;
}
.btn {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 rgba(44, 49, 66, 0.08);
}
.btn-primary {
  background: linear-gradient(90deg, #4f5d75 0%, #7da2a9 100%);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #4f5d75;
  border: 2px solid #7da2a9;
}
.btn-outline:hover {
  background: #e3e6ee;
  color: #232946;
  border-color: #4f5d75;
}

/* Hero Right */
.hero-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 320px;
  padding-right: 2rem;
}
.hero-illustration {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 8px 32px #7da2a966);
  border-radius: 2rem;
  background: #fff;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-down-arrow span {
  display: block;
  width: 32px;
  height: 32px;
  border-left: 4px solid #7da2a9;
  border-bottom: 4px solid #7da2a9;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: arrowBounce 1.2s infinite;
}
@keyframes arrowBounce {
  0%,
  100% {
    opacity: 0.7;
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(12px) rotate(-45deg);
  }
}

/* Solutions Section - Interactive Grid Design */
.solutions-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(0, 201, 167, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(249, 181, 114, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

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

.solutions-title {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.title-accent {
  background: linear-gradient(135deg, #00c9a7 0%, #f9b572 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.solution-item {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  height: 400px;
}

.solution-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 201, 167, 0.2);
  border-color: rgba(0, 201, 167, 0.3);
}

.solution-content {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.solution-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.solution-icon-wrapper {
  margin-bottom: 1.5rem;
}

.solution-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.solution-item:hover .solution-icon {
  transform: scale(1.1) rotate(10deg);
}

.cloud-icon {
  background: linear-gradient(135deg, #00c9a7, #0891b2);
}

.security-icon {
  background: linear-gradient(135deg, #f9b572, #f97316);
}

.scaling-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.solution-icon svg {
  width: 35px;
  height: 35px;
  color: white;
  stroke-width: 2.5;
}

.solution-name {
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.solution-description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(0, 201, 167, 0.15);
  color: #00c9a7;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 201, 167, 0.3);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 201, 167, 0.9) 0%,
    rgba(249, 181, 114, 0.9) 100%
  );
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.solution-item:hover .solution-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.solution-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.learn-more-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.learn-more-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-item {
    height: 350px;
  }

  .solution-content {
    padding: 2rem;
  }

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

  .solution-number {
    font-size: 3rem;
  }
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.18, 1),
    transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Tech Stack Section - Modern Categorized Design */
.tech-stack-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.tech-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(56, 178, 172, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

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

.tech-title {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.tech-accent {
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.tech-category {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.tech-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tech-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #38b2ac, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-category:hover::before {
  opacity: 1;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38b2ac, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tech-category:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  stroke-width: 2;
}

.category-header h3 {
  font-size: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tech-item:hover {
  background: rgba(56, 178, 172, 0.1);
  transform: translateX(8px);
}

.tech-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, #38b2ac, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-item:hover::before {
  opacity: 1;
}

.tech-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tech-item:hover img {
  transform: scale(1.1);
}

.tech-item span {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #475569;
  font-size: 0.95rem;
}

/* Specific category colors */
.tech-category[data-category="frontend"]:hover::before {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.tech-category[data-category="backend"]:hover::before {
  background: linear-gradient(90deg, #10b981, #06b6d4);
}

.tech-category[data-category="cloud"]:hover::before {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.tech-category[data-category="tools"]:hover::before {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

@media (max-width: 768px) {
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tech-category {
    padding: 1.5rem;
  }

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

  .category-header {
    gap: 0.75rem;
  }

  .category-icon {
    width: 40px;
    height: 40px;
  }

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

/* Insights Section */
.insights-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0 3rem 0;
}
.insights-title {
  font-size: 2.1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #232946;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.insights-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}
.insights-timeline {
  flex: 1.2 1 0;
  position: relative;
  padding-left: 2.2rem;
  margin-top: 0.5rem;
}
.insights-timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #7da2a9 0%, #4f5d75 100%);
  border-radius: 2px;
  opacity: 0.7;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  min-height: 70px;
}
.timeline-dot {
  position: absolute;
  left: -0.3rem;
  top: 0.5rem;
  width: 1.1rem;
  height: 1.1rem;
  background: #7da2a9;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px #7da2a933;
}
.timeline-content {
  margin-left: 2.2rem;
  background: none;
}
.timeline-content h4 {
  font-size: 1.15rem;
  font-family: "Space Grotesk", sans-serif;
  color: #4f5d75;
  margin: 0 0 0.3rem 0;
  font-weight: 700;
}
.timeline-content p {
  font-size: 1rem;
  color: #232946;
  margin: 0 0 0.3rem 0;
  font-family: "DM Sans", sans-serif;
}
.timeline-date {
  font-size: 0.92rem;
  color: #7da2a9;
  font-family: "DM Sans", sans-serif;
  opacity: 0.7;
}

/* Featured Article */
.insights-featured {
  flex: 2 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(120deg, #e3e6ee 60%, #f6f8fa 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px #cfd8dc33;
  overflow: hidden;
  min-width: 320px;
  max-width: 520px;
}
.insights-featured img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2rem 2rem 0 0;
  background: #fff;
}
.featured-content {
  padding: 2rem 2rem 1.2rem 2rem;
}
.featured-content h3 {
  font-size: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
  color: #4f5d75;
  margin-bottom: 1rem;
  font-weight: 700;
}
.featured-content p {
  font-size: 1.08rem;
  color: #232946;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 1.2rem;
}
.featured-readmore {
  font-size: 1rem;
  color: #7da2a9;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.featured-readmore:hover {
  color: #4f5d75;
}

/* Team Section - Modern Card Design with SVG Avatars */
.team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

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

.team-title {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.team-accent {
  background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.team-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1) rotate(-5deg);
}

.team-card[data-role="architect"] .team-avatar {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.team-card[data-role="developer"] .team-avatar {
  background: linear-gradient(135deg, #10b981, #059669);
}

.team-card[data-role="security"] .team-avatar {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.team-card[data-role="designer"] .team-avatar {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.team-card[data-role="devops"] .team-avatar {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.team-avatar svg {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 2;
}

.team-info {
  position: relative;
  z-index: 2;
}

.team-name {
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-quote {
  font-size: 1rem;
  color: #475569;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  position: relative;
}

.team-quote::before {
  content: '"';
  font-size: 2rem;
  color: #cbd5e1;
  position: absolute;
  left: -10px;
  top: -10px;
}

.team-quote::after {
  content: '"';
  font-size: 2rem;
  color: #cbd5e1;
  position: absolute;
  right: -10px;
  bottom: -20px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.skill-tag {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

/* Role-specific skill tag colors */
.team-card[data-role="architect"] .skill-tag {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.2);
}

.team-card[data-role="developer"] .skill-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.2);
}

.team-card[data-role="security"] .skill-tag {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.2);
}

.team-card[data-role="designer"] .skill-tag {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.2);
}

.team-card[data-role="devops"] .skill-tag {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-card {
    padding: 2rem 1.5rem;
  }

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

  .team-avatar {
    width: 70px;
    height: 70px;
  }

  .team-avatar svg {
    width: 35px;
    height: 35px;
  }
}

/* Responsive Insights */
@media (max-width: 900px) {
  .insights-layout {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .insights-featured {
    max-width: 100%;
    min-width: 0;
  }
  .insights-featured img {
    height: 160px;
  }
  .featured-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  .insights-timeline {
    padding-left: 1.2rem;
  }
  .timeline-content {
    margin-left: 1.5rem;
  }
}
@media (max-width: 600px) {
  .insights-section {
    padding: 2.5rem 0 1.5rem 0;
  }
  .insights-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .insights-featured img {
    height: 90px;
    border-radius: 1rem 1rem 0 0;
  }
  .featured-content {
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  }
  .featured-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .featured-content p {
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
  }
  .insights-timeline {
    padding-left: 0.7rem;
  }
  .timeline-content {
    margin-left: 1rem;
  }
  .timeline-content h4 {
    font-size: 0.98rem;
  }
  .timeline-content p {
    font-size: 0.88rem;
  }
  .timeline-date {
    font-size: 0.8rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-pill {
    padding: 0.5rem 1rem;
  }
  .nav-logo span {
    font-size: 1.5rem;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 0;
  }
  .hero-left,
  .hero-right {
    padding: 0;
    min-width: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-tagline {
    max-width: 100%;
  }
  .hero-illustration {
    max-width: 320px;
  }
  .solutions-section {
    padding: 3rem 0 2rem 0;
  }
  .solution-block {
    flex-direction: column !important;
    gap: 2rem;
    min-height: 0;
    margin-bottom: 3rem;
  }
  .solution-img {
    min-width: 0;
    max-width: 320px;
    height: 180px;
  }
  .solution-img img {
    max-width: 220px;
    max-height: 160px;
  }
  .solution-text {
    padding: 0;
    text-align: center;
  }
  .tech-marquee-track {
    gap: 2rem;
  }
  .tech-marquee-track img {
    height: 40px;
    padding: 0.3rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .nav-pill {
    top: 1rem;
    width: 98vw;
    padding: 0.4rem 0.7rem;
    max-width: 99vw;
  }
  .nav-logo span {
    font-size: 1.1rem;
  }
  .hero-diagonal {
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: 60vh;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
  .hero-illustration {
    max-width: 220px;
  }
  .scroll-down-arrow span {
    width: 24px;
    height: 24px;
    border-width: 3px;
  }
  .solutions-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .solution-block {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .solution-img {
    max-width: 180px;
    height: 100px;
  }
  .solution-img img {
    max-width: 120px;
    max-height: 80px;
  }
  .solution-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .solution-text p {
    font-size: 0.98rem;
  }
  .tech-stack-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .tech-marquee-bg {
    padding: 1rem 0;
  }
  .tech-marquee-track {
    gap: 1.2rem;
  }
  .tech-marquee-track img {
    height: 28px;
    padding: 0.2rem 0.4rem;
  }
}

/* Contact Section - Modern Interactive Design */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(56, 178, 172, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

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

.contact-title {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-accent {
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 1.2rem 3rem 1.2rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #38b2ac;
  box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.input-wrapper label {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
  transform: translateY(-2rem) scale(0.85);
  color: #38b2ac;
  background: #0f172a;
  padding: 0 0.5rem;
}

.input-icon {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 20px;
  height: 20px;
  color: #64748b;
  transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
  color: #38b2ac;
}

.input-icon svg {
  width: 100%;
  height: 100%;
}

.textarea-wrapper label {
  top: 1.2rem;
}

.textarea-wrapper textarea:focus + label,
.textarea-wrapper textarea:not(:placeholder-shown) + label {
  transform: translateY(-2rem) scale(0.85);
}

.submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 178, 172, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content h3 {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.info-content p {
  color: #94a3b8;
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.contact-social {
  margin-top: 2rem;
}

.contact-social h3 {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

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

/* Footer Section - Modern Design */
.footer-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #94a3b8;
  padding: 60px 0 0 0;
  position: relative;
}

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

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

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

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.logo-accent {
  color: #38b2ac;
}

.footer-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #38b2ac 0%, #8b5cf6 100%);
  color: white;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column-title {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #38b2ac;
}

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

.footer-copyright p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #38b2ac;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 1rem;
  }
}
