/* Modern CSS with Blue/Purple Gradient Theme */
:root {
  --primary-color: #0f172a;
  --secondary-color: #0f172a;
  --accent-color: #06b6d4;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #2d7a8c 0%, #0f172a 100%);
  --gradient-2: linear-gradient(135deg, #204f60 0%, #0f172a 100%);
  --gradient-3: linear-gradient(135deg, #06b6d4 0%, #0f172a 100%);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  height: 35px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-2);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

/* Hero Section - Modern Design */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  background: var(--dark-bg);
  color: var(--white);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45, 122, 140, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(32, 79, 96, 0.06) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-gradient-orb-1 {
  top: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation-delay: 0s;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-gradient-orb-2 {
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 122, 140, 0.15) 0%, transparent 70%);
  animation-delay: 3s;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-gradient-orb-3 {
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(32, 79, 96, 0.1) 0%, transparent 70%);
  animation-delay: 6s;
  animation: orbFloat3 22s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(-50px, 50px) scale(1.2); opacity: 0.5; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(50px, -30px) scale(1.15); opacity: 0.5; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
  50% { transform: translate(calc(-50% + 30px), calc(-50% - 30px)) scale(1.1); opacity: 0.4; }
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 0.8s ease;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.hero-badge-icon {
  color: #06b6d4;
  font-size: 0.9rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -2px;
}

.hero-title-line {
  display: block;
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.hero-title-line:first-child {
  animation-delay: 0.2s;
}

.hero-title-line:last-child {
  animation-delay: 0.4s;
}

.gradient-text {
  background: linear-gradient(135deg, #06b6d4 0%, #2d7a8c 50%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  background-size: 200% auto;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s;
  animation-fill-mode: both;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.8s;
  animation-fill-mode: both;
  flex-wrap: wrap;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
  width: 300px;
  height: 300px;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon {
  transform: translateX(5px);
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s;
  animation-fill-mode: both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-feature-item i {
  color: #06b6d4;
  font-size: 1.1rem;
}

.hero-feature-item:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.hero .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.hero .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeInUp 0.8s ease 0.6s;
  animation-fill-mode: both;
}

.stat {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1s ease 1.2s;
  animation-fill-mode: both;
}

.scroll-indicator-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.7) 100%);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; transform: translateY(0); }
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-2);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* About Section */
.about {
  position: relative;
  background: var(--white);
  overflow: hidden;
  color: var(--text-dark);
}

.about .section-header h2,
.about .section-header p {
  color: var(--text-dark);
}

.about .section-tag {
  background: var(--gradient-2);
  color: var(--white);
}

.about-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #06b6d4, #2d7a8c);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #204f60, #06b6d4);
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2d7a8c, #06b6d4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

.about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Main Content Card */
.about-main-card {
  background: var(--light-bg);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.about-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.title-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.title-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.about-text h3 {
  font-size: 2.25rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* Modern Features Grid */
.about-features-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: var(--light-bg);
  border-color: rgba(6, 182, 212, 0.3);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(45, 122, 140, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--gradient-3);
  transform: scale(1.1);
}

.feature-icon-wrapper i {
  font-size: 1.75rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
  color: var(--white);
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.stat-card:hover::before {
  opacity: 0.15;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
}

.stat-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  background: var(--gradient-3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--white);
}

.stat-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Deprecated styles - keeping for backward compatibility */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.feature-item span {
  color: var(--text-dark);
  font-weight: 500;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-card {
  width: 300px;
  height: 300px;
  background: var(--gradient-2);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.image-card i {
  font-size: 8rem;
  color: var(--white);
  opacity: 0.9;
}

/* Services Section */
.services {
  background: var(--dark-bg);
  color: var(--white);
}

.services .section-header h2,
.services .section-header p {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
}

.service-icon {
  /* width: 250px;
  height: 100px; */
  background: var(--gradient-2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  /* padding: 10px; */
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 1.5rem;
}

.service-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

/* Technologies Section */
.technologies {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.technologies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 122, 140, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 23, 42, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.tech-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(45, 122, 140, 0.4);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 122, 140, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tech-card:hover .tech-card-glow {
  opacity: 1;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.tech-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(45, 122, 140, 0.3);
  transition: all 0.4s ease;
}

.tech-card:hover .tech-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(45, 122, 140, 0.5);
}

.tech-icon-wrapper i {
  font-size: 1.75rem;
  color: var(--white);
  z-index: 1;
}

.tech-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.tech-card-header h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.025em;
}

.tech-card-body {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(45, 122, 140, 0.15) 50%, 
    transparent 100%);
  transition: left 0.5s ease;
}

.tech-item:hover::before {
  left: 100%;
}

.tech-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(45, 122, 140, 0.4);
  box-shadow: 0 4px 12px rgba(45, 122, 140, 0.2);
}

.tech-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tech-item:hover .tech-item-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tech-item-icon i {
  font-size: 1.5rem;
}

.tech-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-card {
    padding: 1.5rem;
  }
  
  .tech-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .tech-icon-wrapper i {
    font-size: 1.5rem;
  }
  
  .tech-card-header h3 {
    font-size: 1.25rem;
  }
}

/* RFID Solutions Section */
.rfid-solutions {
  background: var(--dark-bg);
  color: var(--white);
}

.rfid-solutions .section-header h2,
.rfid-solutions .section-header p {
  color: var(--white);
}

.rfid-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.rfid-intro h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rfid-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.rfid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.rfid-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.rfid-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rfid-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.rfid-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.rfid-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.rfid-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.hardware-partners {
  text-align: center;
  margin-top: 4rem;
}

.hardware-partners h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 82, 255, 0.5);
  box-shadow: 0 10px 30px rgba(122, 82, 255, 0.2);
}

.partner-card .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
}

.partner-card .partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.partner-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.partner-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 20s infinite ease-in-out;
}

.contact-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-2);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.contact-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-3);
  bottom: -80px;
  left: -80px;
  animation-delay: 5s;
}

.contact-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--gradient-1);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card[data-animate="fade-up"] {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(45, 122, 140, 0.3);
}

.contact-card-inner {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover .contact-card-gradient {
  opacity: 1;
}

.contact-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(45, 122, 140, 0.3);
}

.contact-card:hover .contact-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 122, 140, 0.5);
}

.icon-bg-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
  z-index: 1;
  position: relative;
}

.contact-card-content {
  flex: 1;
}

.contact-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-card a {
  color: #2d7a8c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.contact-card a:hover {
  color: #204f60;
  text-decoration: none;
}

.contact-card a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--gradient-2);
  transition: width 0.3s ease;
}

.contact-card a:hover::after {
  width: 100%;
}

.contact-subtitle {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-style: italic;
}

.contact-cta-wrapper {
  position: relative;
}

.contact-cta-wrapper[data-animate="fade-left"] {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-cta-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gradient-2);
  opacity: 0.05;
  z-index: 0;
}

.contact-cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-icon-circle {
  width: 100px;
  height: 100px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(45, 122, 140, 0.4);
  animation: floatIcon 3s infinite ease-in-out;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-icon-circle i {
  font-size: 2.5rem;
  color: var(--white);
}

.contact-cta-card h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.contact-cta-card > p {
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(45, 122, 140, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-feature:hover {
  background: rgba(45, 122, 140, 0.1);
  transform: translateX(5px);
}

.cta-feature i {
  color: #2d7a8c;
  font-size: 1.25rem;
}

.cta-feature span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.btn-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-modern:hover i {
  transform: scale(1.2);
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
  width: 300px;
  height: 300px;
}

.btn-modern span {
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
  /* background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg); */
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  background: var(--white);
  padding: 0 0.5rem;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  margin: 2rem;
  padding: 2rem;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
  font-size: 2rem;
}

.modal-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.modal-content h4 {
  color: var(--primary-color);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.modal-body {
  color: var(--text-dark);
  line-height: 1.8;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body ul li {
  margin-bottom: 0.5rem;
}

.modal-body strong {
  color: var(--primary-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    min-height: 90vh;
  }

  .hero-gradient-orb-1 {
    width: 350px;
    height: 350px;
  }

  .hero-gradient-orb-2 {
    width: 300px;
    height: 300px;
  }

  .hero-gradient-orb-3 {
    width: 250px;
    height: 250px;
  }

  .hero-badge {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .hero-badge-text {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .btn-modern {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }

  .hero-features {
    gap: 1.5rem;
    font-size: 0.85rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .about-content {
    gap: 2rem;
  }

  .about-main-card {
    padding: 2rem;
  }

  .about-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .about-text h3 {
    font-size: 1.75rem;
  }

  .about-features-modern {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-cta-card {
    padding: 2rem;
  }

  .cta-icon-circle {
    width: 80px;
    height: 80px;
  }

  .cta-icon-circle i {
    font-size: 2rem;
  }

  .contact-cta-card h3 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    gap: 0.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 100px;
    min-height: 85vh;
  }

  .hero-gradient-orb-1,
  .hero-gradient-orb-2,
  .hero-gradient-orb-3 {
    opacity: 0.2;
  }

  .hero-gradient-orb-1 {
    width: 250px;
    height: 250px;
  }

  .hero-gradient-orb-2 {
    width: 200px;
    height: 200px;
  }

  .hero-gradient-orb-3 {
    width: 180px;
    height: 180px;
  }

  .hero-badge {
    padding: 6px 16px;
    margin-bottom: 1.5rem;
  }

  .hero-badge-text {
    font-size: 0.75rem;
  }

  .hero-badge-icon {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
  }

  .btn-modern {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-feature-item {
    font-size: 0.85rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-indicator-line {
    height: 20px;
  }

  .scroll-indicator i {
    font-size: 1.25rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-main-card {
    padding: 1.5rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-lead {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .partners {
    flex-direction: column;
    align-items: center;
  }

  .contact-card-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon i {
    font-size: 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-modern {
    width: 100%;
  }
}
