/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: Arial, sans-serif;
  color: #fff;
} */

/* Header styles */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  /* Initial transparent background */
  transition: background 0.3s ease;
  /* Smooth transition for background color */
  z-index: 9999;
}

/* Change background color when scrolled */
.scrolled {
  background: black !important; /* Background color when scrolled */
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo {
  height: 80px;
}

.contact-info {
  display: flex;
  gap: 30px;
  text-align: center;
  font-size: 0.9em;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact-item a,
i {
  font-size: 20px;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #fff;
}

/* Navigation Menu */
nav {
  text-align: center;
  padding: 10px 15px;
  border: 2px solid #fff;
  border-left: 0;
  border-right: 0;
}

nav.active{
  background: #000;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: -3px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 50px;
  border: 1px solid white;
  border-radius: 3px;
  transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover,
.request-quote {
  color: #df1d14;
  background-color: white;
  border-color: #df1d14;
}

/* Hero Section */
.hero {
  position: relative;
  /* background-image: url('background.jpg');  */
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero .overlay {
  padding: 100px;
  width: 100%;
}

.hero h1 {
  font-size: 2em;
  font-weight: bold;
  color: #df1d14;
  margin-bottom: 10px;
  text-shadow: 1px 1px #000;
  text-shadow: 1px 1px #fff;
}

.hero p {
  margin-bottom: 20px;
  color: #fff;
}

.enquiry-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.enquiry-form input,
.enquiry-form button {
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 3px;
}

.enquiry-form input {
  flex: 1;
  min-width: 120px;
}

.enquiry-form button {
  background-color: #df1d14;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 20px;
}

.enquiry-form button:hover {
  background-color: #df1d14;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo {
    height: 50px;
  }

  .logo:last-child {
    display: none;
    /* height: 50px; */
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    display: none;
  }

  nav {
    border: none;
  }

  nav ul {
    /* position: relative; */
    flex-direction: column;
    display: none;
    /* Hide menu on mobile by default */
  }

  nav ul li {
    /* position: absolute; */
    /* height: 600px; */
    margin: 10px;
  }

  nav ul li a {
    border: none;
  }

  nav.active ul {
    display: flex;
    /* Show menu when .active is added to nav */
  }

  .menu-toggle {
    display: block;
  }

  .hero .overlay {
    padding: 10px;
  }

  .hero h1 {
    font-size: 1.5em;
  }

  .hero p {
    font-size: 0.9em;
  }

  .enquiry-form {
    flex-direction: column;
  }

  .enquiry-form input,
  .enquiry-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.3em;
  }

  .hero p {
    font-size: 0.8em;
  }

  .contact-info {
    font-size: 0.8em;
  }

  .enquiry-form input,
  .enquiry-form button {
    font-size: 0.9em;
    padding: 8px;
  }
}

.profile-section {
  /* background-color: #df1d14; */
}

.values-section {
  /* background-color: #e8e8e8; */
}