/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color System - HSL Values */
  --background: 0 0% 100%;
  --foreground: 215 25% 27%;
  --card: 0 0% 100%;
  --card-foreground: 215 25% 27%;
  --primary: 222 84% 15%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 222 84% 25%;
  --secondary: 215 20% 65%;
  --secondary-foreground: 0 0% 100%;
  --muted: 215 15% 95%;
  --muted-foreground: 215 15% 45%;
  --accent: 222 84% 15%;
  --accent-foreground: 0 0% 100%;
  --border: 215 20% 90%;
  --radius: 0.75rem;

  /* Custom Design Tokens */
  --gradient-primary: linear-gradient(135deg, hsl(222 84% 15%), hsl(222 84% 25%));
  --gradient-hero: linear-gradient(135deg, hsl(222 84% 8%), hsl(222 84% 15%));
  --gradient-accent: linear-gradient(135deg, hsl(222 84% 25%), hsl(222 84% 35%));
  --gradient-subtle: linear-gradient(180deg, hsl(215 20% 98%), hsl(215 20% 95%));
  --shadow-elegant: 0 20px 40px -12px hsl(222 84% 15% / 0.25);
  --shadow-glow: 0 0 60px hsl(222 84% 25% / 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  font-family: 'Sora', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background-color: hsl(var(--background));
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  
  inset: 0;
  
}
  .dispimg {
  margin-left: 10vw;
  
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Goes up */
  }
  100% {
    transform: translateY(0); /* Back to start */
  }
}

.hero-content { 
    display: grid;
    grid-template-columns: 13fr  1fr;
  text-align: center;
 
  z-index: 10;
}

@media (max-width: 768px) {
  .dispimg{
     display: none;
  }
  .maintenance-visual{
    margin-left: 30vw !important;
  }
  .hero-cta{
    margin-bottom: 1vw;
  }

}
.hero-text {
  animation: fadeInUp 0.8s ease-out;
  text-align: left;
 padding-top: 5vw;
}

.hero-title {
    display: contents;
   
  font-size: clamp(3rem, 3vw, 4.5rem);
  font-weight: 700;
  color: white;
  /* margin-bottom: 1.2rem; */
  line-height: 1.1;
}
:root {
  /* Color System - HSL Values */
  --background: 0 0% 100%;
  --foreground: 215 25% 27%;
  --card: 0 0% 100%;
  --card-foreground: 215 25% 27%;
  --primary: 222 84% 15%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 222 84% 25%;
  --secondary: 215 20% 65%;
  --secondary-foreground: 0 0% 100%;
  --muted: 215 15% 95%;
  --muted-foreground: 215 15% 45%;
  --accent: 222 84% 15%;
  --accent-foreground: 0 0% 100%;
  --border: 215 20% 90%;
  --radius: 0.75rem;

  /* Custom Design Tokens */
  --gradient-primary: linear-gradient(135deg, hsl(222 84% 15%), hsl(222 84% 25%));
  --gradient-hero: linear-gradient(135deg, hsl(222 84% 8%), hsl(222 84% 15%));
  --gradient-accent: linear-gradient(135deg, hsl(222 84% 25%), hsl(222 84% 35%));
  --gradient-subtle: linear-gradient(180deg, hsl(215 20% 98%), hsl(215 20% 95%));
  --shadow-elegant: 0 20px 40px -12px hsl(222 84% 15% / 0.25);
  --shadow-glow: 0 0 60px hsl(222 84% 25% / 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-subtitle {
  display: contents;

  animation: shimmer 2s linear infinite;
  background-size: 200% 100%;
}

.hero-description-main {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: white;
  margin-bottom: 2rem;
  padding-top: 1vw;
  max-width: 64rem;
 
  
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description-sub {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 3rem;
  max-width: 48rem;

  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  background: white;
  color: hsl(var(--primary));
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  cursor: pointer;
  transition: var(--transition-spring);
  animation: fadeInUp 0.8s ease-out 0.6s both, pulseGlow 2s ease-in-out infinite;
}

.hero-cta:hover {
  background: hsl(222 84% 97%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.floating-1 {
  top: 5rem;
  left: 2.5rem;
  width: 1rem;
  height: 1rem;
  background: hsl(var(--primary-glow));
  animation: float 6s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
}

.floating-2 {
  bottom: 8rem;
  right: 4rem;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  opacity: 0.4;
  animation: bounceGentle 3s ease-in-out infinite 2s, pulseGlow 2s ease-in-out infinite;
}

.floating-3 {
  top: 33%;
  right: 2rem;
  width: 0.75rem;
  height: 0.75rem;
  background: hsl(var(--primary-glow));
  opacity: 0.5;
  animation: float 6s ease-in-out infinite 4s;
}

.floating-4 {
  bottom: 5rem;
  left: 25%;
  width: 0.5rem;
  height: 0.5rem;
  background: white;
  opacity: 0.3;
  animation: bounceGentle 3s ease-in-out infinite 1s;
}

.floating-5 {
  top: 25%;
  left: 33%;
  width: 1.25rem;
  height: 1.25rem;
  background: hsl(var(--primary-glow));
  opacity: 0.4;
  animation: float 6s ease-in-out infinite 3s;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.feature-card {
  background: var(--gradient-subtle);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-spring);
  border: 1px solid hsl(var(--border));
  animation: scaleIn 0.6s ease-out;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elegant);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

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

.feature-icon {
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  width: 2rem;
  height: 2rem;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  color: hsl(var(--primary-glow));
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-items {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, hsl(var(--muted) / 0.3), hsl(var(--background)));
}

.process-steps {
  max-width: 64rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: slideInRight 0.8s ease-out;
}

.process-number {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-spring);
}

.process-number:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elegant);
}

.process-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.process-content:hover h3 {
  color: hsl(var(--primary-glow));
}

.process-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Maintenance Section */
.maintenance-section {
  padding: 6rem 0;
  background: hsl(var(--primary));
  color: white;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.maintenance-content {
  animation: fadeInUp 0.8s ease-out;
}

.maintenance-title {
  font-size: clamp(3rem, 4vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.maintenance-subtitle {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.maintenance-description {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.maintenance-features {
  list-style: none;
  margin-bottom: 2rem;
}

.maintenance-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: white;
}

.maintenance-check {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(222 84% 90%);
  flex-shrink: 0;
}

.maintenance-visual {
  margin-left: 10vw;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Goes up */
  }
  100% {
    transform: translateY(0); /* Back to start */
  }
}




.maintenance-card {
 
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glow);
  transition: all 0.5s;
}

.maintenance-card:hover {
  box-shadow: var(--shadow-elegant);
}

.maintenance-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.maintenance-bar {
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  animation: shimmer 2s linear infinite;
}

.bar-2 {
  animation-delay: 0.5s;
}

.bar-3 {
  animation-delay: 1s;
}

.maintenance-lines {
  margin-bottom: 1.5rem;
}

.maintenance-line {
  height: 1rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.line-2 {
  width: 75%;
  animation-delay: 0.2s;
}

.line-3 {
  width: 50%;
  animation-delay: 0.4s;
}

.maintenance-icons {
  display: flex;
  gap: 0.5rem;
}

.maintenance-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-spring);
}

.maintenance-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
}

.maintenance-icon:nth-child(2) {
  transition-delay: 0.1s;
}

.maintenance-icon:nth-child(3) {
  transition-delay: 0.2s;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}

.cta-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.cta-title {
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-button {
  background: var(--gradient-primary);
  color: white;
  font-size: 1.25rem;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-spring);
  animation: pulseGlow 2s ease-in-out infinite;
}

.cta-button:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .maintenance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(222 84% 25% / 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsl(222 84% 25% / 0.6);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}