@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Vendor Prefix Initialization for Cross-Browser Smooth Animations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

/* Ensure 3D transforms work smoothly */
.btn,
.nav-link,
.nav-logo,
.hamburger,
.bar,
.project-card,
.skill-category,
.advantage-card,
.expertise-card,
.social-link,
[class*="hover"] {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* GPU acceleration helpers */
.nav-menu,
.nav-link,
.btn,
.hamburger {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

body {
  /* Added 'Noto Sans Georgian' before sans-serif */
  font-family: "Inter", "Noto Sans Georgian", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Backdrop for Mobile Menu - Clickable Area */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 990; /* Behind navbar (1000) */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

body.menu-open::after {
  opacity: 1;
  pointer-events: auto;
}

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

/* Optimized High-Performance Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  will-change: transform, background-color;
  /* contain: layout style paint;  <-- REMOVED TO FIX MENU CLIPPING */
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
  contain: layout;
}

/* Enhanced Logo with Smooth Animations */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1004;
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.nav-logo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-text a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}



.brand-text a:hover {
  color: #1d4ed8;
  transform: translateY(-1px);
}

.brand-text a:hover::after {
  width: 100%;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  transition: all 0.3s ease;
}

.nav-logo:hover .brand-tagline {
  color: #374151;
  transform: translateX(2px);
}

/* Enhanced Navigation Menu with Smooth Hover Effects */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.nav-link i {
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

.nav-link:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #1d4ed8;
}

.nav-link.active {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.15);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

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

/* Enhanced CTA Button */
.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #764ba2, #fbbf24);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-cta-btn:hover::before {
  opacity: 1;
}

.nav-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-cta-btn:hover .btn-shine {
  left: 100%;
}

.nav-cta-btn i {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.nav-cta-btn:hover i {
  transform: translateX(3px) rotate(10deg) scale(1.1);
}

.nav-cta-btn span {
  position: relative;
  z-index: 1;
}

/* Hamburger Menu Base */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.bar {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  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="heroPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23heroPattern)"/></svg>');
  opacity: 0.3;
  animation: heroFloat 20s ease-in-out infinite;
  margin-top: 20px;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-0.5deg);
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.8);
  border-radius: 50%;
  animation: heroParticles 8s ease-in-out infinite;
}

.hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  top: 70%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes heroParticles {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  25% {
    opacity: 1;
    transform: translateY(-50px) scale(1);
  }
  75% {
    opacity: 0.5;
    transform: translateY(-100px) scale(0.5);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 100px;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
  color: #fbbf24;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title:hover {
  transform: scale(1.02);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight:hover {
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.typing-text {
  position: relative;
}

.cursor {
  animation: blink 1s infinite;
  color: #fbbf24;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-description:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* ENHANCED BUTTON STYLES */
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  background-size: 200% 200%;
  color: #1f2937;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4);
  border: 2px solid transparent;
  position: relative;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f59e0b, #d97706, #92400e);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: inherit;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.08) rotateX(10deg);
  box-shadow: 0 20px 60px rgba(251, 191, 36, 0.6);
  background-position: 100% 100%;
  color: #0f172a;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-8px) scale(1.08) rotateX(-10deg);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
  color: #fbbf24;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1rem;
  padding-bottom: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.social-link:hover .social-tooltip {
  opacity: 1;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link i {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover i {
  transform: scale(1.2) rotate(360deg);
}

/* Hero Visual - Code Animation */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.code-animation {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Courier New", monospace;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.code-animation:hover::before {
  opacity: 1;
}

.code-line {
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: typewriter 0.5s ease forwards;
}

.code-line:nth-child(1) {
  animation-delay: 0.5s;
}
.code-line:nth-child(2) {
  animation-delay: 1s;
}
.code-line:nth-child(3) {
  animation-delay: 1.5s;
}
.code-line:nth-child(4) {
  animation-delay: 2s;
}
.code-line:nth-child(5) {
  animation-delay: 2.5s;
}

@keyframes typewriter {
  to {
    opacity: 1;
  }
}

.code-keyword {
  color: #ff6b9d;
}
.code-variable {
  color: #4ecdc4;
}
.code-operator {
  color: #ffe66d;
}
.code-function {
  color: #a8e6cf;
}
.code-bracket {
  color: #ffd93d;
}
.code-property {
  color: #6c5ce7;
}
.code-string {
  color: #fd79a8;
}
.code-comma {
  color: #fdcb6e;
}
.code-number {
  color: #00b894;
}
.code-semicolon {
  color: #e17055;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Enhanced Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.section-title:hover {
  transform: scale(1.05);
  color: #2563eb;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title:hover::after {
  width: 120px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin-top: 1rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
}

.about::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.05),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.about-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.about-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
}

.skills h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.skills-grid {
  display: grid;
  gap: 2rem;
}

.skill-category {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.skill-category:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.category-header h4 {
  font-size: 1.2rem;
  color: #1f2937;
  font-weight: 600;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #764ba2, #fbbf24);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skill-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

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

/* Strategy Section */
.strategy {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.strategy .section-title {
  color: white;
}

.strategy-content {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.strategy-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
  transition: all 0.3s ease;
}

.intro-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.strategy-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.strategy-icon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4);
}

.strategy-icon i {
  font-size: 2.5rem;
  color: #1f2937;
  transition: all 0.3s ease;
}

.strategy-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 191, 36, 0.5),
    transparent
  );
  animation: strategyLines 4s ease-in-out infinite;
}

.line-1 {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  animation-delay: 0s;
}
.line-2 {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  animation-delay: 1.3s;
}
.line-3 {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  animation-delay: 2.6s;
}

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

.intro-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
}

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

.timeline-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.timeline-header p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea, #764ba2, #fbbf24, #ec4899);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
  direction: ltr;
}

.timeline-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.marker-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.timeline-item:hover .marker-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.marker-icon i {
  font-size: 1.8rem;
  color: white;
}

.marker-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2937;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.timeline-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

.timeline-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.timeline-features i {
  color: #10b981;
}

.strategy-principles {
  margin-bottom: 6rem;
}

.strategy-principles h3 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

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

.principle-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.4s ease;
}

.principle-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.principle-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.principle-icon i {
  font-size: 1.8rem;
  color: white;
}

.principle-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.strategy-results {
  margin-bottom: 6rem;
}

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

.results-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

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

.result-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.result-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.2);
}

.result-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.result-icon i {
  font-size: 1.5rem;
  color: #1f2937;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

/* IMPROVED STRATEGY CTA SECTION */
.strategy-cta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.strategy-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.strategy-cta:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.5);
}

.cta-icon i {
  font-size: 3rem;
  color: white;
}

.cta-content {
  min-width: 0; /* Allows content to shrink */
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  flex: 0 1 auto;
  min-width: 180px;
}

/* Why Choose Section */
.why-choose {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.why-choose-content {
  position: relative;
  z-index: 2;
}

.why-choose-intro {
  margin-bottom: 5rem;
}

.intro-card {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(118, 75, 162, 0.05)
  );
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

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

.intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

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

.intro-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.advantage-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.advantage-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon i {
  font-size: 1.5rem;
  color: white;
}

.advantage-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
}

.advantage-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.advantage-content ul {
  list-style: none;
  padding: 0;
}

.advantage-content li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-weight: 500;
}

.advantage-content li i {
  color: #10b981;
}

.testimonials {
  margin-bottom: 5rem;
}

.testimonials h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
}

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

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.author-info h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #6b7280;
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 0.9rem;
}

/* IMPROVED WHY CHOOSE CTA SECTION */
.why-choose-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #fbbf24 100%);
  color: white;
  padding: 4rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  transition: all 0.4s ease;
}

.why-choose-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.why-choose-cta::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="ctaPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaPattern)"/></svg>');
  opacity: 0.3;
  animation: ctaFloat 15s ease-in-out infinite;
}

@keyframes ctaFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  min-width: 0; /* Allows content to shrink */
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.4s ease;
  min-width: 180px;
  flex: 0 1 auto;
}

.cta-buttons .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-color: transparent;
  color: #1f2937;
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.cta-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-stats .stat-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.cta-stats .stat-item:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.cta-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fbbf24;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.cta-stats .stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Why Website Section */
.why-website {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.why-website .section-title {
  color: white;
  margin-bottom: 2rem;
}

.why-website-content {
  position: relative;
  z-index: 1;
}

.why-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.why-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.7;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.benefit-icon i {
  font-size: 1.5rem;
  color: #1f2937;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;
  transition: all 0.3s ease;
}

.benefit-card:hover h3 {
  color: #fbbf24;
}

.benefit-card p {
  opacity: 0.9;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.benefit-card:hover p {
  opacity: 1;
}

.cta-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Expertise Section */
.expertise {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.expertise-content {
  position: relative;
  z-index: 1;
}

.expertise-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.expertise-description {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.expertise-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.expertise-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.expertise-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.expertise-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.expertise-header h3 {
  font-size: 1.3rem;
  color: #1f2937;
}

.expertise-details p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.expertise-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-skill {
  background: #f3f4f6;
  color: #374151;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.expertise-card:hover .expertise-skill {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.expertise-stats .stat-item {
  color: white;
}

.expertise-stats .stat-item:hover {
  transform: scale(1.05);
}

.expertise-stats .stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #374151;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e5e7eb;
  position: relative;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.project-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-placeholder {
  font-size: 3rem;
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.project-card:hover .project-placeholder {
  opacity: 1;
  transform: scale(1.2) rotate(5deg);
}

.project-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.project-card:hover .project-title {
  color: #2563eb;
}

.project-description {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background-color: #f3f4f6;
  color: #374151;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tech-tag:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
}

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

.project-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.project-link:hover {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
  transform: translateY(-2px);
}

.projects-cta {
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 2rem;
}

.projects-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.projects-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact .section-title {
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.7;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.contact-item i {
  width: 20px;
  color: #fbbf24;
}

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

.social-links-contact .social-link {
  background: rgba(255, 255, 255, 0.1);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-form:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08) !important;
}

.error-message {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.success-banner {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.12);
  font-weight: 600;
  transform: translateY(-12px) scale(0.98);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 420ms ease;
  pointer-events: auto;
  z-index: 2200;
  max-width: 420px;
  width: auto;
}

.success-banner.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.success-banner .check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.12);
  animation: pop 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.success-banner.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.success-banner .msg {
  flex: 1 1 auto;
  font-size: 0.95rem;
}

@keyframes pop {
  0% {
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2, #fbbf24);
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-form .btn.sending {
  cursor: progress;
  transform: translateY(0);
  opacity: 0.95;
  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.2) inset,
    0 8px 30px rgba(102, 126, 234, 0.18);
}

.contact-form .btn.sent {
  animation: btn-pop 900ms cubic-bezier(0.2, 0.9, 0.2, 1);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.32);
}

@keyframes btn-pop {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.06);
  }
  60% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 0.2rem;
  padding-bottom: 3rem;
  position: relative;
}

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

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.footer-social-link {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.4s ease;
}

.footer-social-link:hover {
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 10px;
  color: #fbbf24;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ENHANCED RESPONSIVE DESIGN FOR MOBILE */
@media (max-width: 1024px) {
  /* Tablet adjustments for CTA sections */
  .strategy-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem;
  }

  .cta-icon {
    width: 100px;
    height: 100px;
  }

  .cta-icon i {
    font-size: 2.5rem;
  }

  .why-choose-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

  .cta-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 80px;
  }

  .nav-logo img {
    width: 50px;
    height: 50px;
  }

  .nav-cta {
    display: none;
  }

  /* Hamburger Styling */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(102, 126, 234, 0.2);
  }

  .bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #fbbf24);
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
  }

  /* Mobile Navigation Menu - Right Slide */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0; /* Slide in from the RIGHT */
    bottom: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;

    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;

    /* Animation Properties */
    transform: translateX(100%); /* Start hidden to the right */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.5s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0);

    z-index: 1005; /* HIGH Z-Index to ensure it's on top */
    border-left: 1px solid rgba(102, 126, 234, 0.1);

    /* Reset desktop styles */
    left: auto;
    display: flex !important;
    visibility: visible;
  }

  .nav-menu.active {
    transform: translateX(0); /* Slide into view */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  }

  .nav-menu li {
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger animation */
  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav-menu.active li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .nav-menu.active li:nth-child(6) {
    transition-delay: 0.35s;
  }
  .nav-menu.active li:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav-menu a {
    padding: 1rem 1.5rem;
    display: block;
    width: 100%;
    border-radius: 12px;
    font-size: 1.15rem;
    text-align: center;
  }

  /* Hamburger Animation States */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Section Layouts */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    order: -1;
    margin-top: 100px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }

  .about-content,
  .contact-content,
  .footer-main,
  .projects-grid,
  .benefits-grid,
  .expertise-areas,
  .testimonials-grid,
  .advantages-grid,
  .principles-grid,
  .strategy-intro {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    gap: 1.5rem;
  }
  .expertise-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-filter {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .footer-social {
    justify-content: center;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .cta-content {
    align-items: center;
  }
  .hero-badge {
    margin-top: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .timeline::before {
    display: none;
  }
  .timeline-item:nth-child(even) {
    direction: ltr;
  }

  /* MOBILE RESPONSIVE IMPROVEMENTS FOR CTA SECTIONS */
  .strategy-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .cta-visual {
    order: -1; /* Put visual above content on mobile */
  }

  .cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

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

  .cta-content h3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .cta-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }

  .why-choose-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
  }

  .cta-content h3 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .cta-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .cta-stats .stat-item {
    padding: 1rem;
  }

  .cta-stats .stat-number {
    font-size: 2rem;
  }

  .cta-stats .stat-label {
    font-size: 0.9rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .code-animation {
    padding: 1rem;
    font-size: 0.8rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .strategy-cta,
  .why-choose-cta {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }

  .cta-content h3 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

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

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

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .advantage-card {
    padding: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.plans {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

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

.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 3rem 2rem;
  position: relative;
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

/* Popular Card Highlight */
.pricing-card.popular {
  border: 2px solid #667eea;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-15px);
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.25);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.plan-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.pricing-card:hover .plan-icon {
  transform: scale(1.1) rotate(10deg);
}

.plan-header h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price span {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.plan-desc {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1; /* Pushes button to bottom */
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-features li i {
  color: #10b981; /* Green checkmark */
  margin-top: 4px;
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Mobile Responsiveness for Plans */
@media (max-width: 768px) {
  .pricing-card.popular {
    transform: scale(1);
    margin: 1rem 0;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}
/* =========================================
   FIX: PLANS BUTTON VISIBILITY
   ========================================= */
/* Override btn-secondary specifically inside pricing cards to be visible on white */
.pricing-card .btn-secondary {
  background: transparent;
  color: #667eea; /* Purple/Blue color matching your theme */
  border: 2px solid #667eea;
  box-shadow: none;
}

/* Hover effect for these buttons */
.pricing-card .btn-secondary:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* =========================================
   FIX: LOGO TEXT ALIGNMENT
   ========================================= */
/* Update the .nav-logo rule to reduce the gap between icon and text */
.nav-logo {
  gap: 0.rem; /* Reduced from 1rem to pull text closer to the left */
}

/* Optional: Fine-tune the text container if needed */
.brand-text {
  margin-left: -15px;
  margin-right: 10px; /* Pulls it slightly more left if needed */
}

/* =========================================
   BRANDING UPDATE: FONT & COLOR
   ========================================= */

/* Update Brand Font to Montserrat Bold */
.brand-text a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; /* Extra Bold */
  letter-spacing: -0.5px; /* Slight tightening for a modern look */
}

/* Style for the "N1" part */
.n1-accent {
  color: #E8A221; /* Using your purple brand color */
  /* Option 2: Use Gold -> color: #fbbf24; */
}

/* Optional: Add a hover effect for the N1 accent */

/* Accent color for N1 branding */
.n1-accent {
  color: #E8A221; /* Your brand purple */
  font-family: 'Montserrat', sans-serif; /* Optional: matches your logo font */
  font-weight: 800; /* Optional: makes it extra bold */
}
/* =========================================
   HERO & FOOTER BRANDING UPDATES
   ========================================= */

/* 1. HERO SECTION ADJUSTMENTS */
/* Ensure the "kodev" part (highlight) uses the new Brand Font */
.hero .highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

/* Force N1 to be WHITE in the Hero section (Purple on Purple would be invisible) */
.hero .n1-accent {
  color: #ffffff !important;
}


/* 2. FOOTER SECTION ADJUSTMENTS */
/* Update Footer Title Font */
.footer-logo h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Fix N1 Color in Footer */
/* The footer h3 uses a gradient text fill, which makes child elements transparent. 
   We must force the N1 accent to have a solid purple fill. */
.footer-logo .n1-accent {
  -webkit-text-fill-color: #764ba2; /* Force Purple */
  color: #764ba2;
}
/* =========================================
   PRICING / PLANS IMPROVEMENTS
   ========================================= */

/* ბარათების ზოგადი სტილი და ჩრდილები */
.pricing-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); /* უფრო რბილი ჩრდილი */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

/* პოპულარული ბარათის გამოყოფა */
.pricing-card.popular {
  border: 2px solid #667eea; /* თქვენი ბრენდის ფერი */
  position: relative;
  z-index: 1;
}

.popular-badge {
  background: linear-gradient(135deg, #667eea, #764ba2); /* ბრენდის გრადიენტი */
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  top: -16px;
}

/* სათაურის და ფასის სტილი */
.plan-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.price {
  color: #1f2937; /* მუქი ფერი უკეთესი კითხვისთვის */
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.price span {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.9rem;
}

/* სიის ელემენტების დაშორება */
.plan-features li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #4b5563;
  display: flex;
  align-items: center;
}

/* Checkmark-ის ფერი */
.plan-features li i {
  color: #10b981; /* მწვანე ფერი */
  margin-right: 12px;
  font-size: 1.1rem;
}

/* ღილაკების განახლება (წინა კოდიდან) */
.pricing-card .btn-secondary {
  color: #667eea;
  border-color: #667eea;
}

.pricing-card .btn-secondary:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}/* =========================================
   PRICING UPDATE: LIMITED OFFER STYLES
   ========================================= */

/* ძველი ფასის გადახაზვა */
.old-price {
  text-decoration: line-through;
  color: #9ca3af; /* ნაცრისფერი */
  font-size: 1.2rem;
  margin-right: 8px;
  font-weight: 400;
}

/* "ყველა სტარტაპ ფუნქცია" - გამორჩეული სტილი */
.feature-highlight {
  color: #4f46e5 !important; /* ბრენდის ფერი */
  background: rgba(79, 70, 229, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.feature-highlight i {
  color: #4f46e5 !important;
}

/* ბიზნეს ბარათის აქცენტირება */
.pricing-card.popular {
  border: 2px solid #4f46e5;
  transform: scale(1.02); /* ოდნავ გადიდებული */
  box-shadow: 0 25px 50px rgba(79, 70, 229, 0.15);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

/* ბეჯის განახლება */
.popular-badge {
  background: linear-gradient(135deg, #ef4444, #f87171); /* წითელი ტონები აქცენტისთვის */
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}
/* =========================================
   FIX: HORIZONTAL ALIGNMENT FOR 4 PLANS
   ========================================= */

.pricing-grid {
  display: grid;
  /* Reduced min-width from 320px to 240px so 4 items can fit */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; /* Reduced gap from 2.5rem to save space */
  margin-top: 3rem;
  padding: 1rem 0; /* Removed side padding to maximize width */
  align-items: stretch; /* Ensures all cards are same height */
}

/* Force exactly 4 columns on Laptop/Desktop screens */
@media (min-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Optional: Adjust card padding slightly for compact layout */
.pricing-card {
  padding: 2.5rem 1.5rem; /* Slightly less side padding */
} 
/* =========================================
   FIX: WIDER LAYOUT FOR PLANS
   ========================================= */

/* ვზრდით კონტეინერის ზომას მხოლოდ Plans სექციისთვის */
.plans .container {
  max-width: 1600px; /* სტანდარტული 1200px-ის ნაცვლად */
  width: 95%; /* ეკრანის თითქმის სრული სიგანე */
  padding: 0 20px;
}

/* ბარათების შიდა დაშორების შემცირება მეტი სივრცისთვის */
.pricing-card {
  padding: 2.5rem 1.5rem; /* გვერდებიდან დაშორება შემცირდა */
}

/* ტექსტის ზომის მცირე კორექცია, რომ არ გადავიდეს ახალ ხაზზე */
.plan-features li {
  font-size: 0.9rem;
  white-space: nowrap; /* ცდილობს ტექსტი არ გაწყვიტოს */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 4 სვეტიანი განლაგება მხოლოდ დიდ ეკრანებზე */
@media (min-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* მცირე ლეპტოპებზე (1024px-1280px) გადავიდეს 2 სვეტზე უკეთესი კითხვისთვის */
@media (max-width: 1279px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr); /* 2-2 განლაგება */
  }
}
/* =========================================
   RESPONSIVE PLANS SECTION (FINAL FIX)
   ========================================= */

/* 1. Container & Section Base */
.plans {
  padding: 80px 0; /* Adjusted padding */
}

.plans .container {
  max-width: 1400px; /* Optimal width for 4 cards */
  width: 92%;
  margin: 0 auto;
  padding: 0 15px;
}

/* 2. Grid System - Default (Desktop) */
.pricing-grid {
  display: grid;
  /* Force 4 columns by default on large screens */
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 1rem 0;
  align-items: stretch; /* Ensures all cards are equal height */
}

/* 3. Card Base Styles */
.pricing-card {
  height: 100%; /* Fill the grid cell height */
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  transition: all 0.3s ease;
  width: 100%; /* Ensure it fills the column */
}

.plan-features {
  flex-grow: 1; /* Pushes the button to the bottom */
  margin-bottom: 2rem;
}

/* 4. Responsive Breakpoints */

/* Laptop & Tablet Landscape (max-width: 1280px) */
/* Switches to a 2x2 Layout */
@media (max-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: 2rem;
    max-width: 900px; /* Restrict width so 2 cards look good */
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile & Tablet Portrait (max-width: 768px) */
/* Switches to a 1 Column Layout */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr; /* 1 Column */
    gap: 3rem; /* More space between stacked cards */
    max-width: 450px;
  }

  .plans .container {
    width: 90%;
  }

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

  /* Reset the "Popular" card scaling for mobile to prevent overflow */
  .pricing-card.popular {
    transform: scale(1);
    margin: 0;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    border: 2px solid #4f46e5;
    z-index: 1;
  }

  /* Keep a subtle hover effect on mobile */
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  /* Fix badge position on mobile */
  .popular-badge {
    top: -12px;
    font-size: 0.8rem;
    padding: 4px 12px;
  }
}/* =========================================
   CENTER PACKAGES & CONTENT
   ========================================= */

/* 1. Center the grid on the page */
.pricing-grid {
  justify-content: center; /* Centers the columns if they don't fill the row */
  margin-left: auto;
  margin-right: auto;
}

/* 2. Center ALL content inside the cards */
.pricing-card {
  text-align: center; /* Centers text */
  align-items: center; /* Centers flex items if direction is column */
}

/* 3. Center the Feature List Items */
/* Currently they are left-aligned because of display: flex */
.plan-features li {
  justify-content: center; /* Centers the icon and text group horizontally */
  text-align: center;      /* Centers the text itself if it wraps */
  width: 100%;             /* Ensures the line takes full width to center properly */
}

/* Optional: Adjust icon spacing when centered */
.plan-features li i {
  margin-right: 8px; /* Adds space between icon and text */
  margin-top: 4px;   /* optical alignment for checkmark */
}
/* =========================================
   FIX: CENTERED PACKAGE WITH ALIGNED CHECKMARKS
   ========================================= */

/* 1. Make the list container shrink to fit the text, then center it */
.plan-features {
  width: fit-content;    /* Shrinks width to match the longest text line */
  margin-left: auto;     /* Auto margins center the block horizontally */
  margin-right: auto;
  text-align: left;      /* Ensures text inside lines up to the left */
}

/* 2. Force list items to align left relative to the container */
.plan-features li {
  justify-content: flex-start; /* Aligns icon and text to the start (left) */
  text-align: left;            /* Resets text alignment to left */
  width: 100%;                 /* Ensures full width within the container */
}

/* 3. Keep the card content centered (Title, Price, Button) */
.pricing-card {
  text-align: center;
  align-items: stretch; /* Ensures the card fills height properly */
}

/* 4. Ensure the button is centered specifically */
.pricing-card .btn {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 280px; /* Optional: Keeps button from being too wide */
}
/* =========================================
   STYLISH BURGER BAR (MOBILE MENU)
   ========================================= */

@media (max-width: 768px) {
  /* 1. The Container Button */
  .hamburger {
    display: flex; /* Ensure it's visible on mobile */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;  /* Fixed square size */
    height: 48px;
    padding: 0;   /* Reset padding to center bars */
    
    /* Glassmorphism Style */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px; /* Smooth rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    cursor: pointer;
    overflow: hidden; /* Keeps animations contained */
  }

  /* 2. Hover Effect (Glow) */
  .hamburger:hover {
    transform: scale(1.05);
    background: white;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3); /* Purple glow */
  }

  /* 3. The Bars (Lines) */
  .bar {
    width: 24px;
    height: 2.5px; /* Thinner, more elegant lines */
    background: linear-gradient(90deg, #1f2937, #4b5563); /* Dark gray for contrast */
    border-radius: 4px;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  /* 4. Stylish "Staggered" Look (Middle bar shorter) */
  .bar:nth-child(2) {
    width: 16px; /* Middle bar is shorter */
    transform: translateX(4px); /* Aligned slightly right */
  }

  /* Hover Animation: Expand the middle bar */
  .hamburger:hover .bar:nth-child(2) {
    width: 24px;
    transform: translateX(0);
    background: linear-gradient(90deg, #667eea, #764ba2); /* Gradient on hover */
  }
  
  .hamburger:hover .bar:nth-child(1),
  .hamburger:hover .bar:nth-child(3) {
    background: linear-gradient(90deg, #667eea, #764ba2); /* Gradient on hover */
  }

  /* 5. ACTIVE STATE (When Menu is Open) */
  .hamburger.active {
    background: white;
    border-color: #fbbf24; /* Gold accent border when open */
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
  }

  /* Top Bar transforms to part of X */
  .hamburger.active .bar:nth-child(1) {
    width: 24px;
    transform: translateY(8.5px) rotate(45deg);
    background: #1f2937;
  }

  /* Middle Bar slides out */
  .hamburger.active .bar:nth-child(2) {
    width: 24px;
    opacity: 0;
    transform: translateX(20px);
  }

  /* Bottom Bar transforms to part of X */
  .hamburger.active .bar:nth-child(3) {
    width: 24px;
    transform: translateY(-8.5px) rotate(-45deg);
    background: #1f2937;
  }
}
/* =========================================
   PLANS SECTION UPDATES: FONT & SPACING
   ========================================= */

.plans {
  /* Ensure the whole section uses Noto Sans Georgian */
  font-family: "Noto Sans Georgian", sans-serif !important;
}

.plan-header h3, 
.plan-features li,
.plan-btn {
  font-family: "Noto Sans Georgian", sans-serif !important;
}

/* Compensate for removed description by adding vertical rhythm */
.plan-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
}

.plan-features {
  margin-top: 1rem;
}

.plan-features li {
  margin-bottom: 1.2rem; /* Increased spacing between features */
  font-size: 1rem;
  line-height: 1.6;
}

/* Ensure the title remains bold and clean */
.plan-header h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}
/* =========================================
   FIX: REMOVE GAPS & SET FONT
   ========================================= */

/* 1. Set the font for the entire section */
.plans {
  font-family: "Noto Sans Georgian", sans-serif !important;
}

/* 2. Reduce the gap between price and features */
.plan-header {
  margin-bottom: 0.5rem !important; /* Reduced from 2.5rem */
  padding-bottom: 0.5rem !important; /* Reduced from 2.5rem */
  border-bottom: none !important; /* Optional: removes the line for a cleaner look */
}

/* 3. Ensure list items follow the new font */
.plan-features li {
  font-family: "Noto Sans Georgian", sans-serif !important;
  margin-bottom: 0.8rem; /* Keeps features clean but compact */
  font-size: 0.95rem;
}

/* 4. Fix Title and Button font */
.plan-header h3, 
.plan-btn {
  font-family: "Noto Sans Georgian", sans-serif !important;
}