/* Basic reset and styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #191919;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header img {
  height: 50px;
  border-radius: 100px;
  border: 3px solid white;
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

nav li {
  margin: 0 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: #f5af5f;
}

/* Hero section styles */
#hero {
  position: relative;
  z-index: 1;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 80vh, 0 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain; /* Adjusted to make the images fit */
  background-position: center;
  filter: blur(8px);
  transition: opacity 1s ease-in-out;
  z-index: -1;
  opacity: 0;
}

.hero-background-1 {
  opacity: 1; /* Start with the first background visible */
  background-image: url('../../images/gt3rs.JPG'); /* Set the initial background image */
}


#hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
  padding: 10px;
  display: inline-block;
  -webkit-text-stroke: 1.2px black;
  -webkit-text-fill-color: white;
}
/* #hero {
  position: relative;
  z-index: 1;
  background-image: url('https://picsum.photos/id/10/1200/800');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 80vh, 0 100%);
  filter: blur(5px);
} */

/* #hero ::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Images/GT3RS.JPG');
  background-size: cover;
  background-position: center;
  filter: blur(5px);
} */


#hero h1 {
  font-size: 60px;
  margin-bottom: 10px;
  padding: 10px;
  display: inline-block;
  -webkit-text-stroke: 1.2px black;
  -webkit-text-fill-color: white;
}


#hero p {
  font-size: 30px;
  margin-bottom: 30px;
  color: white;
  -webkit-text-stroke: 0.8px black;
  -webkit-text-fill-color: white;
}

#hero button {
  background-color: #f5af5f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#hero button:hover {
  background-color: #191919;
}

/* Services section styles */
#services {
  background-color: #f5f5f5;
  padding: 50px;
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

#services h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

#services ul {
  list-style: none;
  margin-bottom: 30px;
}

#services li {
  font-size: 24px;
  margin-bottom: 10px;
}

#services button {
  background-color: #191919;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#services button:hover {
  background-color: #f5af5f;
  color: #191919;
}

/* About section styles */
#about {
  padding: 50px;
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

#about p {
  font-size: 20px;
  margin-bottom: 30px;
}

#about button {
  background-color: #191919;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#about button:hover {
  background-color: #f5af5f;
  color: #191919;
}

/*

/* Testimonials section */
#testimonials {
  background-color: #f2f2f2;
  padding: 50px;
  text-align: center;
}

#testimonials h2 {
  text-align: center;
  margin-bottom: 30px;
}

#testimonials ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#testimonials li {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

#testimonials li p:first-of-type {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 10px;
}

#testimonials li p:last-of-type {
  font-weight: bold;
}

#testimonials button {
  display: block;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #191919;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#testimonials button:hover {
  background-color: #f5af5f;
  color: #191919;
}

/* Contact Us section */
#contact {
  padding: 50px;
}

#contact h2 {
  text-align: center;
  margin-bottom: 30px;
}

#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  width: 100%;
  max-width: 400px;
}

.input-container label {
  margin-bottom: 5px;
}

input-container input,
.input-container textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.input-container input,
.input-container textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

#contact label {
  margin-bottom: 10px;
}

#contact input,
#contact textarea {
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  /* margin-right: 70px;
  margin-left: 70px; */
}



#contact button {
  align-self: center;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #191919;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#contact button:hover {
  background-color: #f5af5f;
  color: #191919;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}