html {
    scroll-behavior: smooth;
}
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
header {
    background-color: rgba(34, 34, 34, 1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s, opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
.header-scrolled {
    background-color: rgba(34, 34, 34, 0.8);
}
.logo img {
    width: 180px;
}
nav {
    margin-top: 10px;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    background: #d9534f;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}
nav a:hover {
    background: #b52b27;
    transform: scale(1.1);
}
.hero, .section {
    padding: 120px 50px;
    background: #333;
    min-height: 100vh;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.btn {
    display: inline-block;
    background: #d9534f;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}
.btn:hover {
    background: #b52b27;
    transform: scale(1.1);
}
.dot-navigation {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1100;
}
.dot-navigation a {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    display: block;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.2s;
}
.dot-navigation a:hover, .dot-navigation a.active {
    opacity: 1;
    transform: scale(1.2);
    background: #d9534f;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    transition: transform 0.2s;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.whatsapp-button i {
    font-size: 24px;
    color: white;
}
.footer {
    background: #111;
    padding: 20px;
    margin-top: 20px;
}
.quote-section {
    background: #222;
    padding: 50px;
    margin: 50px auto;
    width: 80%;
    max-width: 600px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
.quote-section h2 {
    text-align: center;
    margin-bottom: 20px;
}
.quote-form {
    display: flex;
    flex-direction: column;
}
.quote-form label {
    font-size: 16px;
    margin-bottom: 5px;
}
.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}
.quote-form button {
    background: #d9534f;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
}
.quote-form button:hover {
    background: #b52b27;
}

/* Default styles for larger screens */
.container {
  width: 960px;
  margin: 0 auto;
  padding: 20px;
}

/* Adjust styles for mobile devices */
@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
  
  h1 {
    font-size: 1.5rem; /* Reduce heading size */
  }
  
  p {
    font-size: 1rem; /* Adjust paragraph text */
  }
  
  img {
    max-width: 100%; /* Ensure images scale down */
    height: auto;
  }
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  nav ul {
    display: flex;
    flex-direction: column; /* Stacks the menu items vertically */
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    font-size: 0.9rem; /* Adjust font size if necessary */
    padding: 10px; /* Reduce or adjust padding */
  }
}

