* {
  margin: 0;
  padding: 5px;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #6E6457;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  background: tomato;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

/* NAVIGATION */
.navbar {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    z-index: 99;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 15px;
  }
}



.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;     /* Optional: limits max width */
  margin: 0 auto;
  overflow: hidden;
  height: auto;
}

.slides {
  display: flex;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.slider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 3 / 1;
}

@media (max-width: 768px) {
  .slider {
    aspect-ratio: 2 / 1;
  }
}


@keyframes slide {
  0%   { transform: translateX(0); }
  33%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* Services */
.services {
  padding: 50px 30px;
  background: #fff;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #eef2f3;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #003366;
}

/* About Section */
.about {
  padding: 50px 30px;
  background: #e0f7fa;
  text-align: center;
}

.about h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
  background: #fff;
}

.contact-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-section p {
  text-align: center;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.contact-form button {
  background-color: #003366;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #005599;
}

.contact-info {
  flex: 1 1 300px;
  background-color: #f0f4f8;
  padding: 20px;
  border-radius: 6px;
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #003366;
}

.contact-info p {
  margin-bottom: 10px;
}


/* About Section */
.about-section {
  padding: 60px 20px;
  background: #fff;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-container h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: #003366;
}

.about-container .intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #444;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  color: #003366;
  margin-bottom: 10px;
}

.about-text p,
.about-text ul {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text ul li {
  margin-bottom: 8px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
