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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #fdfbfb, #ebedee);
  color: #333;
  min-height: 100vh;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #d02715;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.5rem;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd1c1;
}

/* Sections */
section {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2rem;
  margin: 1.5rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

section h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1rem;
}

/* Hero */
#hero {
  text-align: center;
  padding: 3rem 1rem;
}

#hero h1 {
  font-size: 2.5rem;
}

#hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Brand Logos */
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.brand-logos img {
  height: 80px;
  transition: transform 0.3s ease;
}

.brand-logos img:hover {
  transform: scale(1.1);
}

/* Services */
#services ul {
  list-style: square inside;
  padding-left: 1rem;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 250px;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Contact Section */
#contact {
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  min-width: 250px;
  max-width: 300px;
  text-align: left;
}

.contact-item p {
  margin-top: 0.5rem;
  color: #555;
}

/* Back to Top */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #d02715;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #d02715;
  color: white;
  margin-top: 2rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #d02715;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  nav ul.show {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
}
