:root {
  --gradient-primary: linear-gradient(to right, #ff7e5f, #feb47b);
  --gradient-secondary: linear-gradient(to right, #3b82f6, #6366f1);
  --gradient-accent: linear-gradient(to right, #ff7e5f, #feb47b, #3b82f6);
  --gradient-dark: linear-gradient(to right, #1e293b, #0f172a);
  --color-blue-500: #3b82f6;
  --color-blue-700: #1d4ed8;
  --color-orange-500: #f97316;
  --color-orange-700: #c2410c;
  --color-red-500: #ef4444;
  --color-purple-500: #8b5cf6;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --primary-gradient: linear-gradient(to right, #ff7e5f, #feb47b, #3b82f6);
  --secondary-gradient: linear-gradient(to right, #3b82f6, #6366f1);
  --accent-color: #1e40af;
  --light-bg: #f8fafc;
  --text-dark: #1d1d1d;
  --text-medium: #4a5568;
  --text-light: #718096;
  --border-color: #e2e8f0;
}
#main-logo-key{
 font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.4;
  color: white;
  background: var(--gradient-dark);
  min-height: 100vh;
  margin-top: 5vw;
}
@media (max-width:600px) {
  #main-logo-key{
 font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.4;
  color: white;
  background: var(--gradient-dark);
  min-height: 100vh;
  margin-top: 19vw;
}
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 30px 0 80px;
  position: relative;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(to right, white, #feb47b, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 16px 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 72px;
  }
}

.hero-description {
  font-size: 20px;
  color: var(--color-gray-300);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-primary i {
  margin-left: 8px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Services Section */
.section {
  padding: 80px 0;
}

.section-blur {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(to right, white, #feb47b, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title p {
  font-size: 18px;
  color: var(--color-gray-300);
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.service-card:hover {
  transform: scale(1.05);
  border-color: rgba(255, 126, 95, 0.5);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--color-orange-500);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #feb47b;
}

.service-card p {
  color: var(--color-gray-300);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: scale(1.05);
  border-color: rgba(255, 126, 95, 0.5);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-avatar {
  font-size: 32px;
  margin-right: 16px;
}

.testimonial-author h3 {
  font-size: 18px;
  font-weight: 600;
  color: #feb47b;
}

.testimonial-author p {
  font-size: 14px;
  color: var(--color-gray-400);
}

.testimonial-text {
  color: var(--color-gray-300);
  font-style: italic;
  line-height: 1.7;
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.feature-card:hover {
  transform: scale(1.05);
  border-color: rgba(255, 126, 95, 0.5);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #feb47b;
}

.feature-card p {
  color: var(--color-gray-300);
  line-height: 1.7;
}
