/* Global Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f0f8ff;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: lightskyblue;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 70px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background-color: #000;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-text {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
  padding: 5px;
  color: rgb(98, 255, 0);
  
}

.hero-text h1 {
  font-size: 3.0rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 0px 0px 5px yellow,0px -5px 5px red
}

.hero-text h2 {
  font-size: 1.6rem;
  margin-top: 10px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color:#ea1f1f
}

/* Services Section */
.services {
  padding: 2rem;
  text-align: center;
  background-color: #ff8787;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-grid div {
  background-color: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Repair Process */
.process {
  padding: 2rem;
  text-align: center;
  background-color: #e6f7ff;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: auto;
}

.steps a {
  color: #0077cc;
  font-weight: bold;
}

/* About Us */
.about {
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 700px;
  margin: auto;
}

.about-content img {
  width: 100px;
  length: 200px;;
  border-radius: 10px;
}

/* Contact & Social */
.contact {
  padding: 2rem;
  text-align: center;
  background-color: #d0ecff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.social-icons i {
  font-size: 30px;
  color: #003366;
  transition: color 0.3s, transform 0.2s;
}

.social-icons i:hover {
  color: rgb(0, 210, 252);
  transform: scale(1.2);
}

form button {
  background-color: rgb(15, 179, 116);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #00aaff;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-logo {
  width: 80px;
  margin-bottom: 1rem;
}