/* Global Styles */
:root {
  --primary:   #fd5db6;
  --primary-light: #f70af7;
  --primary-dark: #ed13ab;
  --purple: #75caee;
  --pink: #ec4899;
  --rose: #f43f5e;
  --yellow: #f59e0b;
  --green: #10b981;

  --background: #ffffff;
  --foreground: #0f172a;
  --foreground-light: #ffffff;
  --muted: #64748b;
  --muted-light: #e3e3e3;
  --card: #ffffff;
  --card-foreground: #1e293b;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --radius: 0.5rem;

  --primary-rgb: 253, 93, 182;
  --purple-rgb: 65, 163, 212;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--foreground);
  line-height: 1.5;
  background-color: var(--background);
}

h1, h2, h3, h4, h5, h6, .footer-column h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

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

h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

h6 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-primary, 
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .about-logo {
    width: 150px;
  }
  
  .section-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .section-header p {
    font-size: 0.85rem;
  }
  
  .stats {
    gap: 1rem;
  }
  
  .stat-number,
  .stat-number2 {
    font-size: 1.5rem;
  }
  
  .stat-label,
  .stat-label2 {
    font-size: 0.75rem;
  }
}

@media (max-width: 270px) {
  .container {
    padding: 0 0.25rem;
    min-width: 270px;
    overflow-x: hidden;
  }
  
  body {
    min-width: 270px;
    overflow-x: hidden;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .about-logo {
    width: 120px;
  }
  
  .section-header h2 {
    font-size: 1.1rem;
  }
  
  .section-header p {
    font-size: 0.8rem;
  }
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--foreground);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
}

/* Buttons */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 8px 12px -3px rgba(99, 102, 241, 0.3);
}

.btn-outline {
  background-color: white;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: #f8fafc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-full {
  width: 100%;
  height: 3rem;
}

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {

  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  background: linear-gradient(to right, var(--primary), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 100px;
  max-width: 180px;
  object-fit: contain;
}

.about-logo {
  width: 400px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .about-logo {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .about-logo {
    width: 180px;
  }
}
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-btn {
  padding: 0.5rem 1rem;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle i {
  font-size: 1.5rem;
  color: var(--foreground);
}

.menu-toggle .fa-times {
  display: none;
}

.menu-toggle.active .fa-bars {
  display: none;
}

.menu-toggle.active .fa-times {
  display: block;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .nav-menu .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  animation: fadeIn 1s ease-out;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
  }
}

/* Hero Navigation Buttons */
.hero-nav-buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 100px;
  z-index: 2;
}

.hero-nav-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero-nav-buttons {
    width: 80px;
  }

  .hero-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

/* About Section */
.about {
  background-color: #ffffff;
  padding: 4rem 0;
}
.about-light {
  background-color: #ffffff;
  padding: 4rem 0;
}
.about-light {
  background-color: #ffffff;
  padding: 4rem 0;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2,
.about-text p,
.stat-label,
.stat-label2,
.stat-number,
.stat-number2 {
  color: white;
}
.about-text-light h2,
.about-text-light p,
.stat-number2-light {
  color: rgb(0, 0, 0);
}
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}



.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-index {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.about-image-index img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .about-content.reverse {
    flex-direction: column;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }

  .about-image-index {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-image-index img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .about-image-index {
    width: 90%;
    max-width: 250px;
  }
}



.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .about-content.reverse {
    flex-direction: column;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  .about-image-index{
    width:50%

  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 3fr 2fr;
  }
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #40a2d3;
  margin-bottom: 0.5rem;
}
.stat-number2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fd5cb6;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #40a2d3;
  font-weight: 500;
}
.stat-label2 {
  font-size: 0.875rem;
  color: #fd5cb6;
  font-weight: 500;
}


.image-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: white;
}
.pink-color{
  color:#ec4899;
}
.gradient-bg {
  background: linear-gradient(135deg, var(--primary), var(--purple));
}

.about-light {
  background-color: #ffffff;
  padding: 4rem 0;
}
.about-light-maintenance {
  background-color: #41a3d4;
  padding: 4rem 0;
}
.about-light .about-text h2 {
  color: var(--foreground);
}

.about-light .about-text p {
  color: var(--muted);
}

.about-light .about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.maintenance-repair {
  background-color: #ffffff;
  padding: 4rem 0;
}
/* About Buttons */
.about-buttons {
  margin-top: 10px;
}

.about-buttons .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, #fd5db6 0%, #fd5d93 100%);
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(253, 93, 182, 0.3);
}

/* Features Section */
.features {
  background-color: #41a3d4;
  padding: 5rem 0;
}

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

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.primary-icon { background-color: var(--primary); }
.pink-icon { background-color: var(--pink); }
.purple-icon { background-color: var(--purple); }
.green-icon { background-color: var(--green); }
.yellow-icon { background-color: var(--yellow); }
.rose-icon { background-color: var(--rose); }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted);
}

.feature-image {
  width: calc(100% + 4rem);
  height: 200px;
  margin: -2rem -2rem 1.5rem -2rem;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-img {
  transform: scale(1.05);
}

.feature-card > *:not(.feature-image) {
  padding: 0 2rem 2rem;
}

.features .section-header h2,
.features .section-header p {
  color: white;
}

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

/* Services Section */
.services {
  background-color: #ffffff;
}

.services-light {
  background-color: #41a3d4;
}
.services-light .service-card {
    position: relative;
    background: #ffffff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
.services-light .section-header h2{
  color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: #41a3d4;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  position: relative;
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  z-index: 1;
}

.service-card p {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  z-index: 1;
}

.service-icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 32px;
  color: white;
}
.fa-wrench{
  margin-top: 25px;
}
.fa-tools{
  margin-top: 25px;
}
.fa-clipboard-check{
  margin-top: 25px;
}
.blue-icon {
  background-color: #007bff;
}

.teal-icon {
  background-color: #20c997;
}

.orange-icon {
  background-color: #fd7e14;
}

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

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground-light);
}

.service-card p {
  color: var(--muted-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground-light);
}

.service-features li i {
  color: var(--green);
  font-size: 0.75rem;
}

.service-btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-card > *:not(.service-image) {
  padding: 0 2rem 2rem;
}

.services .section-header h2,
.services .section-header p {
  color: #000000;
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

/* Testimonials Section */
.testimonials {
  background-color: #41a3d4;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-content {
  padding: 1.5rem;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  overflow: hidden;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-info h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: white;
}

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* Contact Section */
.contact {
  background-color: #41a3d4;
  padding: 5rem 0;
}

.contact-content {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgb(233, 96, 208);
  color: var(--foreground-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.contact-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-text p {
  color: white;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--foreground-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-link:hover {
  background-color: var(--primary);
  color: white;
}

.contact .section-header h2,
.contact .section-header p {
  color: white;
}

/* Waitlist Section */
.waitlist {
  position: relative;
  background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
  padding: 3rem 0;
}
.waitlist-blue{
  background-color:#41a3d4;
}
.waitlist-card {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 64rem;
  margin: 0 auto;
}

.waitlist-card-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .waitlist-card-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.waitlist-info {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: white;
  position: relative;
}

.waitlist-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.waitlist-info p {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.waitlist-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}

.waitlist-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.check-icon {
  background-color: rgba(255, 255, 255, 0.2);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.waitlist-form {
  padding: 2rem;
}

.waitlist-form h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.waitlist-form > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.form {
  margin-bottom: 1rem;
}

.form-group {

}

.form-group label {
  display: block;
  font-size: 0.875rem;

}

.input-icon-wrapper {
  position: relative;
  margin-bottom: 0.25rem;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

input {
  width: 100%;
  height: 3rem;
  padding: 8px 40px;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.error-message {
  color: var(--rose);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  height: 1rem;
}

.success-message {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
}

.hidden {
  display: none;
}

.success-icon {
  color: var(--green);
  font-size: 1rem;
  background-color: var(--green);
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.success-text h4 {
  font-size: 0.875rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.success-text p {
  font-size: 0.75rem;
  color: var(--foreground);
}

.terms-text {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}

.terms-link {
  color: var(--primary);
}

.terms-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #f1f5f9;
  padding: 4rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0;
  }
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 480px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-logo p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-logo a {
    font-size: 1.25rem;
  }

  .footer-logo p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-column li {
    margin-bottom: 0.5rem;
  }

  .footer-column a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding: 1rem;
  }

  .footer-bottom p {
    font-size: 0.7rem;
    line-height: 1.4;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .gradient-text {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Responsive Images */


@media (max-width: 768px) {
  .about-image img {
    max-height: 300px;
  }
}

/* Logo Styles */
.navbar-logo {
  height: 95px;
  width: auto;
  margin-left: 35px;
}

/* Team Section */
.team {
  padding: 4rem 0;
  background-color: #2596be;
}

.team-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 2rem 1rem;
  margin: 0 -1rem;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  touch-action: pan-y;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

/* Swiper Navigation Styles */
.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
  transform: scale(1.1);
}

.team-swiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.5;
}

.team-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Swiper Navigation Styles */
.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
  transform: scale(1.1);
}

.team-swiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.5;
}

.team-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .team-member-image {
    height: 250px;
  }
  
  .team-member-content {
    padding: 1rem;
  }
  
  .team-member-content h3 {
    font-size: 1.1rem;
  }
  
  .team-member-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .team-member-image {
    height: 200px;
  }
  
  .team-swiper {
    padding: 1rem 0.5rem;
    margin: 0 -0.5rem;
  }
}

.team-member {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.team-member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.team-member:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-content {
  padding: 1.5rem;
  text-align: center;
}

.team-member-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.team-member-content p {
  font-size: 1rem;
  color: var(--muted);
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.animate-on-scroll.animated {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Scroll Animations */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform; /* Improves performance */
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for multiple elements - more specific targeting */
.scroll-fade-up.delay-1 { transition-delay: 0.1s; }
.scroll-fade-up.delay-2 { transition-delay: 0.2s; }
.scroll-fade-up.delay-3 { transition-delay: 0.3s; }
.scroll-fade-up.delay-4 { transition-delay: 0.4s; }

/* About section - more specific selectors */
.about-content .about-text h2,
.about-content .about-text p,
.services-grid .service-card,
.testimonials-container .testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.about-content .about-text h2.visible,
.about-content .about-text p.visible,
.about-content .about-image img.visible,
.services-grid .service-card.visible,
.testimonials-container .testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
.hero {
  animation: fadeIn 1s ease-out forwards;
}

.hero-content h1,
.hero-content p,
.hero-buttons {
  animation: fadeInUp 1s ease-out forwards;
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Index Services Section */
.index-services {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.index-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.index-service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.index-service-card:hover {
  transform: translateY(-5px);
}

.index-service-image {
  height: 200px;
  overflow: hidden;
}

.index-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.index-service-card:hover .index-service-img {
  transform: scale(1.1);
}

.index-service-content {
  padding: 25px;
}

.index-service-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.index-service-content p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.index-service-features li {
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.index-service-features li i {
  color: var(--primary);
  margin-right: 10px;
}

.index-service-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .index-services {
    padding: 60px 0;
  }
  
  .index-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .index-service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Animation classes */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Add delay for sequential animations */
.about-text .animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
.about-text .animate-on-scroll:nth-child(2) { transition-delay: 0.4s; }
.about-text .animate-on-scroll:nth-child(3) { transition-delay: 0.6s; }
.about-text .animate-on-scroll:nth-child(4) { transition-delay: 0.8s; }

/* Ensure images are properly sized in animated containers */
.animate-on-scroll img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1.5s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loading-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loading-logo {
  position: relative;
  width: 600px;
  height: auto;
  z-index: 1;
  animation: spin 3s linear infinite;
}

@media screen and (max-width: 768px) {
  .loading-logo {
    width: 100px;
  }
  
  .loading-bg {
    width: 150%;
    height: 150%;
  }
}

@media screen and (max-width: 480px) {
  .loading-logo {
    width: 80px;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Maintenance and Repair Page */
.about-light-maintenance {
  background-color: #41a3d4;
  padding: 4rem 0;
}

@media screen and (max-width: 768px) {
  .about-light-maintenance {
    padding: 3rem 0;
  }
  
  .about-light-maintenance .container {
    padding: 0 1.5rem;
  }
  
  .about-light-maintenance h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .about-light-maintenance p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .about-light-maintenance .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-light-maintenance .service-card {
    padding: 1.5rem;
  }
  
  .about-light-maintenance .service-card h3 {
    font-size: 1.2rem;
  }
  
  .about-light-maintenance .service-card p {
    font-size: 0.85rem;
  }
  
  .about-light-maintenance .cta-button {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .about-light-maintenance {
    padding: 2rem 0;
  }
  
  .about-light-maintenance h2 {
    font-size: 1.5rem;
  }
  
  .about-light-maintenance .service-card {
    padding: 1.25rem;
  }
}

/* Form Styles */
#success-message {
  display: none;
  padding: 0.75rem;
  margin-top: 0.75rem;
}

.terms-text span {
  color: #ffffff;
}

/* Textarea Styles */
textarea {
  width: 100%;
  padding: 8px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  resize: vertical;
  min-height: 80px;
}

textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

/* Select Styles */
select {
  width: 100%;
  padding: 8px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  appearance: none;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}
  .about-light-maintenance {
    padding: 2rem 0;
  }
  
  .about-light-maintenance h2 {
    font-size: 1.5rem;
  }
  
  .about-light-maintenance .service-card {
    padding: 1.25rem;
  }
}

/* Form Styles */
#success-message {
  display: none;
  padding: 0.75rem;
  margin-top: 0.75rem;
}

.terms-text span {
  color: #ffffff;
}

/* Textarea Styles */
textarea {
  width: 100%;
  padding: 8px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  resize: vertical;
  min-height: 80px;
}

textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

/* Select Styles */
select {
  width: 100%;
  padding: 8px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  appearance: none;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

/* Logo sizing */
.logo img {
    max-width: 120px;
    height: auto;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
}

/* Ensure logo container doesn't stretch */
.logo, .footer-logo {
    display: inline-block;
    line-height: 0;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--foreground);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

/* Footer Styles */
.footer {
    background-color: var(--background-alt);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--muted);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        max-width: 100px;
    }
    
    .footer-logo img {
        max-width: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .fa-times {
        display: none;
    }

    .menu-toggle.active .fa-bars {
        display: none;
    }

    .menu-toggle.active .fa-times {
        display: block;
    }
}

/* Waitlist Section */
.waitlist {
  background-color: #ffffff;
  padding: 5rem 0;
}

/* Footer Styles */
.footer {
  background-color: #f8fafc;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--foreground);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.footer-column ul li i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.footer-column ul li a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Form Styles */
.form {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--foreground);
}

.input-icon-wrapper {
    position: relative;
    margin-bottom: 0.25rem;
}

.container-products {
    margin: 0 auto;
    padding: 0 1rem;
}

.container-products h1 {
    margin-top: 185px;
    margin-bottom: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    text-align: left;
}

.product-details {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 150px;
}

.product-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.specs-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.specs-list li strong {
    font-weight: 500;
    color: #1a1a1a;
    margin-right: 0.5rem;
}

.product-description h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}
.header-products {
  margin-top: 200px;
}

/* Contact Details Styles */
.contact-details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-details h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-list li i {
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Maintenance Page Styles */
.maintenance-hero {
  background-image: url('images/maintenance-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.contact-info-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.services-light .section-header p {
  color: #ffffff;
}

.services-light .service-card h3,
.services-light .service-card p {
  color: #000000;
}
