/* Service Page Styles */

/* Service Hero Section */
.service-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(16, 185, 129, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.02) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      #000000 0%,
      #050505 25%,
      #080808 50%,
      #050505 75%,
      #000000 100%
    );
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(16, 185, 129, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.015) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(139, 92, 246, 0.01) 0%,
      transparent 50%
    );
  animation: heroBackgroundShift 15s ease-in-out infinite;
  z-index: 1;
}

.service-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 70%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
  animation: heroPatternMove 20s linear infinite;
  z-index: 2;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.app-interface {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  position: relative;
}

.app-interface::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.app-interface::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 15%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

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

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero-content .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-hero-buttons .btn {
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.service-hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.service-hero-buttons .btn:hover::before {
  left: 100%;
}

.service-hero-buttons .btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  border: 2px solid transparent;
}

.service-hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-hero-buttons .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.service-hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-hero-buttons .btn i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.service-hero-buttons .btn:hover i {
  transform: scale(1.2);
}

.service-hero-visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Laptop Mockup Styles */
.laptop-mockup-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.laptop-two {
  animation-delay: 2s;
}

.laptop {
  width: 100%;
  max-width: 350px;
  height: auto;
  position: relative;
  background: #333;
  border-radius: 20px 20px 8px 8px;
  padding: 20px 20px 8px 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: laptopFloat 6s ease-in-out infinite;
}

.laptop-screen {
  width: 100%;
  height: 220px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 2px solid #444;
}

.laptop-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.website-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.laptop::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 8px;
  background: #222;
  border-radius: 0 0 8px 8px;
}

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

/* Desktop Monitor Mockup Styles */
.desktop-monitor-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: monitorFloat 6s ease-in-out infinite;
}

.monitor {
  width: 100%;
  max-width: 450px;
  height: auto;
  position: relative;
}

.monitor-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.monitor-stand {
  width: 120px;
  height: 20px;
  background: #333;
  margin: 0 auto;
  border-radius: 4px;
  position: relative;
}

.monitor-base {
  width: 180px;
  height: 8px;
  background: #222;
  margin: 0 auto;
  border-radius: 8px;
  position: relative;
  top: -2px;
}

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

/* Desktop Mockup Styles */
.desktop-mockup-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.desktop-screen {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: desktopFloat 6s ease-in-out infinite;
}

.desktop-frame {
  width: 100%;
  height: 450px;
  position: relative;
}

.desktop-header {
  background: #2a2a2a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-btn.close {
  background: #ff5f56;
}

.control-btn.minimize {
  background: #ffbd2e;
}

.control-btn.maximize {
  background: #27ca3f;
}

.desktop-title {
  color: #888;
  font-size: 0.8rem;
  font-family: "JetBrains Mono", monospace;
  margin-left: 10px;
}

.desktop-content {
  height: calc(100% - 50px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.website-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.website-header {
  background: #ffffff;
  padding: 20px 30px;
  border-bottom: 1px solid #e5e5e5;
}

.website-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-item {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #10b981;
}

.website-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.website-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.website-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 30px;
}

.website-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.website-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.website-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-box span {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

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

.mobile-mockup-container {
  position: relative;
  width: 300px;
  height: 600px;
  animation: fadeUpInfinite 3s ease-in-out infinite;
}

.mobile-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2d3748, #1a202c);
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.mobile-mockup::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #4a5568;
  border-radius: 2px;
  z-index: 1;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.app-preview {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  position: relative;
}

.app-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    transparent 60%,
    transparent 100%
  );
  border-radius: 20px;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.8rem;
  padding: 15px 20px 10px;
  position: relative;
  z-index: 10;
}

.status-icons {
  display: flex;
  gap: 5px;
}

.mockup-hover .app-screenshot {
  animation: appScreenGlow 2s ease-in-out infinite;
}

@keyframes appScreenGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

@keyframes heroBackgroundShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.9;
    transform: scale(0.95) rotate(-1deg);
  }
}

@keyframes heroPatternMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-10px) translateY(-10px);
  }
}

.app-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.nav-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-item.active {
  color: white;
  font-weight: 600;
}

.content-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-content h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 5px;
}

.card-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(236, 72, 153, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.why-choose-us .container {
  position: relative;
  z-index: 10;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

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

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

.benefit-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.highlight-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3b82f6;
}

.highlight-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.guarantee-section {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
  z-index: 1;
}

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

.guarantee-content h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guarantee-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.guarantee-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.guarantee-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.guarantee-badge i {
  font-size: 1.2rem;
  color: #10b981;
}

.guarantee-badge span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Service Features Section */
.service-features {
  padding: 100px 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(59, 130, 246, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  position: relative;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.service-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-features .container {
  position: relative;
  z-index: 10;
}

.development-process .container {
  position: relative;
  z-index: 10;
}

.technologies-section .container {
  position: relative;
  z-index: 10;
}

.portfolio-preview .container {
  position: relative;
  z-index: 10;
}

.pricing-section .container {
  position: relative;
  z-index: 10;
}

.cta-section .container {
  position: relative;
  z-index: 10;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: white;
}

.feature-card h4 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.feature-list li {
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Technologies Section */
.technologies-section {
  padding: 100px 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(139, 92, 246, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(16, 185, 129, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(59, 130, 246, 0.015) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(236, 72, 153, 0.01) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      #000000 0%,
      #050505 25%,
      #080808 50%,
      #050505 75%,
      #000000 100%
    );
  position: relative;
  border-top: 1px solid rgba(139, 92, 246, 0.05);
  border-bottom: 1px solid rgba(139, 92, 246, 0.05);
}

.technologies-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(139, 92, 246, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(16, 185, 129, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(59, 130, 246, 0.015) 0%,
      transparent 50%
    );
  animation: technologiesBackgroundFlow 15s ease-in-out infinite;
  z-index: 1;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35%, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.tech-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.tech-category h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-item:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-3px);
}

.tech-item i {
  font-size: 1.5rem;
  color: #10b981;
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s ease;
}

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

.tech-item span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Portfolio Preview Section */
.portfolio-preview {
  padding: 100px 0;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(16, 185, 129, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
  position: relative;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.portfolio-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.9),
    rgba(59, 130, 246, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  color: white;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.portfolio-tech {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-tech span {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  position: relative;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(16, 185, 129, 0.5);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

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

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 15px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: #10b981;
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.pricing-price .period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features i {
  color: #10b981;
  font-size: 0.9rem;
}

.pricing-footer .btn {
  width: 100%;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: white;
  color: #10b981;
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light {
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-outline-light:hover {
  background: white;
  color: #10b981;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-hero-content h1 {
    font-size: 2.5rem;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .service-hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .desktop-monitor-container {
    max-width: 350px;
  }

  .monitor {
    max-width: 320px;
  }

  .monitor-screen {
    height: 220px;
  }

  .mobile-mockup-container {
    width: 250px;
    height: 500px;
  }

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

  .tech-items {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 576px) {
  .service-hero {
    padding-top: 100px;
  }

  .service-hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .mobile-mockup-container {
    width: 200px;
    height: 400px;
  }
}

/* Mockup Animation */
@keyframes fadeUpInfinite {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.8;
  }
}

/* Sales Section Styles */
.sales-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 107, 107, 0.3);
  border-bottom: 1px solid rgba(255, 107, 107, 0.3);
}

.sales-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 107, 107, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 215, 0, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 69, 0, 0.06) 0%,
      transparent 50%
    );
  animation: salesBackgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

.sales-section .container {
  position: relative;
  z-index: 10;
}

.sales-header {
  margin-bottom: 60px;
}

.sales-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ff6b6b, #ffa500, #ff1493, #ff4500);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: salesTitleGlow 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
  margin-bottom: 20px;
}

.sales-subtitle {
  font-size: 1.3rem;
  color: #ffa500;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.sales-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sales-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 107, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

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

.sales-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 30px 60px rgba(255, 107, 107, 0.2);
}

.sales-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.05);
  transform: scale(1.05);
}

.sales-card.featured:hover {
  transform: translateY(-10px) scale(1.07);
  box-shadow: 0 40px 80px rgba(255, 215, 0, 0.3);
}

.sales-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 5;
}

.sales-badge span {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sales-badge .discount {
  background: linear-gradient(45deg, #ff6b6b, #ff4500);
  color: white;
}

.sales-badge .popular {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000;
}

.sales-badge .bonus {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: white;
}

.sales-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  animation: salesIconPulse 2s ease-in-out infinite;
}

.sales-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.sales-card p {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.sales-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.sales-features li {
  color: #fff;
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sales-price {
  margin-top: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
  margin-right: 15px;
}

.new-price {
  font-size: 2rem;
  font-weight: 900;
  color: #ff6b6b;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.sales-guarantee {
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 10px;
}

.guarantee-text {
  color: #00ff00;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.sales-value {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: 10px;
}

.bonus-value {
  color: #ff1493;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.sales-urgency {
  margin-top: 60px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 107, 0.3);
}

.countdown-timer {
  margin-bottom: 40px;
}

.countdown-timer h3 {
  color: #ff6b6b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.timer-unit {
  text-align: center;
  background: rgba(255, 107, 107, 0.1);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  min-width: 100px;
}

.timer-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #ff6b6b;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
  animation: timerPulse 1s ease-in-out infinite;
}

.timer-label {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.sales-testimonial {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ffa500;
}

.sales-testimonial blockquote {
  font-size: 1.2rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.sales-testimonial cite {
  color: #ffa500;
  font-weight: 600;
  font-size: 1rem;
}

.sales-cta {
  margin-top: 40px;
}

.sales-cta h4 {
  color: #ff6b6b;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.sales-cta p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.sales-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-sales-primary {
  background: linear-gradient(45deg, #ff6b6b, #ff4500);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-sales-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
  color: white;
  text-decoration: none;
}

.btn-sales-whatsapp {
  background: linear-gradient(45deg, #25d366, #128c7e);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-sales-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.sales-note {
  color: #00ff00;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Sales Section Animations */
@keyframes salesBackgroundPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes salesTitleGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes salesIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
  }
}

@keyframes timerPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

  .sales-card {
    padding: 30px 20px;
  }

  .sales-card.featured {
    transform: none;
  }

  .timer-display {
    gap: 15px;
  }

  .timer-unit {
    min-width: 80px;
    padding: 15px;
  }

  .timer-number {
    font-size: 2rem;
  }

  .sales-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-sales-primary,
  .btn-sales-whatsapp {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Urgent Timer Styles */
.timer-number.urgent {
  color: #ff0000 !important;
  animation: urgentPulse 0.5s ease-in-out infinite;
}

.countdown-timer h3.urgent {
  color: #ff0000 !important;
  animation: urgentPulse 0.5s ease-in-out infinite;
}

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

/* Sales Card Animation */
.sales-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sales-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Button Hover Effects */
.button-hover {
  animation: buttonShake 0.5s ease-in-out;
}

@keyframes buttonShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Why Choose Us Section Animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Enhanced feature card animations */
.feature-card {
  animation: featureCardFloat 6s ease-in-out infinite;
}

.feature-card:nth-child(1) {
  animation-delay: 0s;
}

.feature-card:nth-child(2) {
  animation-delay: 1s;
}

.feature-card:nth-child(3) {
  animation-delay: 2s;
}

.feature-card:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.02);
}

.feature-icon {
  animation: featureIconPulse 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  animation-play-state: paused;
  transform: scale(1.1);
}

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

@keyframes featureIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

@keyframes technologiesBackgroundFlow {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.9;
    transform: scale(0.95) rotate(-1deg);
  }
}

/* Technologies Section - Static Styling like Why Choose Us */
.tech-category {
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.tech-item {
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.tech-item i {
  transition: all 0.3s ease;
}

.tech-item:hover i {
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

.stagger-7 {
  transition-delay: 0.7s;
}

/* Offer Section */
.offer-section {
  padding: 100px 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 102, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(236, 72, 153, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      #000000 0%,
      #0a0a0a 25%,
      #111111 50%,
      #0a0a0a 75%,
      #000000 100%
    );
  position: relative;
  border-top: 1px solid rgba(16, 185, 129, 0.05);
  border-bottom: 1px solid rgba(16, 185, 129, 0.05);
}

.offer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(16, 185, 129, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(0, 102, 255, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(236, 72, 153, 0.015) 0%,
      transparent 50%
    );
  animation: offerBackgroundFlow 20s ease-in-out infinite;
  z-index: 1;
}

.offer-header {
  margin-bottom: 60px;
  z-index: 10;
  position: relative;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.badge-text {
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badgePulse 2s ease-in-out infinite;
}

.offer-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00ffff, #0066ff, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite;
}

.offer-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.offer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.offer-card.featured {
  border: 2px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
  transform: scale(1.05);
}

.offer-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.offer-badge-card {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 20px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #00ffff, #0066ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
  animation: iconFloat 4s ease-in-out infinite;
}

.offer-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.offer-card p {
  color: #b0b0b0;
  margin-bottom: 25px;
  line-height: 1.6;
}

.offer-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.original-price {
  color: #888;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.offer-price {
  color: #10b981;
  font-size: 1.2rem;
  font-weight: 700;
}

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

.offer-features li {
  color: #b0b0b0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-features i {
  color: #10b981;
  font-size: 0.9rem;
}

.offer-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-text {
  color: #00ffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.guarantee-text {
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 500;
}

.offer-cta {
  margin-top: 50px;
  z-index: 10;
  position: relative;
}

.offer-urgency {
  margin-bottom: 30px;
}

.urgency-text {
  color: #ff6b6b;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.offer-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn-offer-primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-offer-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.btn-offer-secondary {
  background: linear-gradient(135deg, #00ffff, #0066ff);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

.btn-offer-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
  color: white;
  text-decoration: none;
}

.offer-note {
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@keyframes offerBackgroundFlow {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.9;
    transform: scale(0.95) rotate(-1deg);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@media (max-width: 768px) {
  .offer-title {
    font-size: 2rem;
  }

  .offer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-offer-primary,
  .btn-offer-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .offer-card.featured {
    transform: none;
  }

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

/* Modern Offer Bar */
.modern-offer-bar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.moving-offer-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
  z-index: 1;
}

.moving-offer-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  animation: radialGlow 6s ease-in-out infinite;
  z-index: 1;
}

.offer-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.offer-text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.offer-icon {
  font-size: 2rem;
  animation: iconBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.offer-message {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.offer-message strong {
  background: linear-gradient(45deg, #ffff00, #ff6b6b, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: textShine 3s ease-in-out infinite;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.original-price {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 500;
}

.new-price {
  background: linear-gradient(45deg, #ffff00, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 800;
  animation: pricePulse 2.5s ease-in-out infinite;
  text-shadow: none;
}

.offer-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-offer-claim {
  background: linear-gradient(135deg, #25d366, #128c7e, #25d366);
  background-size: 200% 100%;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  animation: buttonGlow 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-offer-claim:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
  background-position: 100% 0;
}

.btn-offer-call {
  background: linear-gradient(135deg, #4facfe, #00f2fe, #4facfe);
  background-size: 200% 100%;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-offer-call:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(79, 172, 254, 0.6);
  color: white;
  text-decoration: none;
  background-position: 100% 0;
}

@keyframes offerBarMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 25% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 75% 50%;
  }
}

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

@keyframes radialGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(5deg);
  }
  75% {
    transform: translateY(5px) rotate(-5deg);
  }
}

@keyframes textShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6),
      0 0 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .offer-bar-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .offer-text {
    flex-direction: column;
    gap: 10px;
  }

  .offer-message {
    font-size: 1rem;
    white-space: normal;
    text-align: center;
  }

  .offer-price {
    margin-left: 0;
  }

  .offer-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-offer-claim,
  .btn-offer-call {
    width: 100%;
    justify-content: center;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .offer-message {
    font-size: 0.9rem;
  }

  .offer-price {
    flex-direction: column;
    gap: 5px;
  }

  .original-price {
    font-size: 0.9rem;
  }

  .new-price {
    font-size: 1.1rem;
  }
}

/* Modern Offer Bar Styles */
.offer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.offer-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
  animation: badgePulse 2s ease-in-out infinite;
}

.badge-text {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.title-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.discount-badge {
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  animation: discountPulse 3s ease-in-out infinite;
}

.offer-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.price-new {
  color: #10b981;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.offer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-style: italic;
}

.offer-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.offer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-btn.primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.offer-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.offer-btn.secondary {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.offer-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.offer-close {
  margin-left: 20px;
}

.close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes discountPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
  }
}

@media (max-width: 768px) {
  .offer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .offer-content {
    flex-direction: column;
    gap: 15px;
  }

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

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

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

  .offer-close {
    margin-left: 0;
    align-self: center;
  }
  .desktop-monitor-container {
    display: none;
  }
}

@media (max-width: 480px) {
  .offer-container {
    padding: 15px;
  }

  .offer-buttons {
    flex-direction: column;
    width: 100%;
  }

  .offer-btn {
    width: 100%;
    justify-content: center;
    max-width: 200px;
  }
}

/* ========================================
   Portfolio Carousel - Responsive Styles
   ======================================== */

.portfolio-carousel.owl-carousel {
  position: relative;
}

/* Portfolio Navigation Arrows */
.portfolio-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 10px;
}

.portfolio-carousel .owl-nav button {
  pointer-events: all;
  width: 45px;
  height: 45px;
  background: rgba(16, 185, 129, 0.9) !important;
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  color: #fff !important;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.portfolio-carousel .owl-nav button:hover {
  background: rgba(16, 185, 129, 1) !important;
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
  transform: scale(1.1);
}

.portfolio-carousel .owl-nav button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Portfolio Dots - Hidden */
.portfolio-carousel .owl-dots {
  display: none !important;
}

/* Portfolio Item Responsive */
.portfolio-item {
  width: 100%;
}

.portfolio-image {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%; /* 3:2 aspect ratio */
  overflow: hidden;
}

.portfolio-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .portfolio-carousel .owl-nav {
    padding: 0 5px;
  }

  .portfolio-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .portfolio-preview {
    padding: 60px 0;
  }

  .portfolio-content h3 {
    font-size: 1.1rem;
  }

  .portfolio-content p {
    font-size: 0.9rem;
  }

  .portfolio-tech span {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-carousel .owl-nav button {
    width: 42px;
    height: 42px;
  }

  .portfolio-preview {
    padding: 80px 0;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .portfolio-carousel .owl-nav {
    padding: 0 20px;
  }

  .portfolio-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
