/* General Styles */
body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #1a3a6e;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  background: #1a3a6e;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #1e3a8a;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a.nav-btn {
  padding: 15px 20px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-links a.nav-btn:hover {
  background: #1e40af;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 5rem 2rem;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
}

.btn-primary {
  background: #1a3a6e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
}

/* Parallax Section */
.parallax {
  background: white;
  padding: 4rem 2rem;
  text-align: center;
}

.parallax h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.parallax p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

/* Services Section */
.services-section {
  padding: 4rem 1rem;
  background: #f4f4f9;
}

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

.service-item {
  background: white;
  padding: 1.5rem;
  border: 1px solid #dcdce0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
}

/* Slider Section */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 400px;
  margin: 4rem 0;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  min-width: 100%;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  padding: 4rem 1rem;
  background: #f0f0f5;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid #dcdce0;
  border-radius: 5px;
}

button {
  background: #1a3a6e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Footer */
.footer {
  padding: 1rem;
  background: #1a3a6e;
  color: white;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #1e3a8a;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    z-index: 10;
  }

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

  .nav-links a.nav-btn {
    padding: 20px;
    text-align: center;
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .parallax p {
    font-size: 0.9rem;
  }

  .parallax h2 {
    font-size: 2rem;
  }
}
