/* General Reset and Font Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
}

/* Body Setup */
body {
  height: 100%;
  background: linear-gradient(rgb(41, 145, 156) 0%, rgba(44, 142, 157, 0.8) 27.82%, rgba(50, 138, 159, 0.31) 73.18%, rgba(51, 137, 159, 0) 100%) no-repeat;
  color: #ffffff;
  direction: ltr;
}

/* Fixed Navigation Menu */
.nav-list {
  list-style-type: none;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-item {
  margin: 0 15px;
}

.nav-item a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #0bffff;
}

/* Header Section */
.header {
  height: 100vh;
  background-image: url('head.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  /* Adjusted for fixed menu */
  text-align: center;
  position: relative;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.header h1 {
  font-size: 65px;
  margin-top: 90px;
  z-index: 1;
  position: relative;
  color: #ff4500;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.header h1 span {
  color: #ffd700;
}

.desc {
  max-width: 70%;
  margin: auto;
  line-height: 55px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  border: 1px solid white;
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
}

/* About Section */
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #ffffff;
}

.about-content {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 60px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.about h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffcc00;
}

.main-description {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.highlight {
  font-size: 24px;
  font-weight: bold;
  color: #ffcc00;
}

/* Services Section */
.services {
  padding: 100px 50px;
  background-color: #f9f9f9;
  color: #333;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #278ea5;
}

.service-desc {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}

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

.service-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card p {
  font-size: 18px;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
}

.surprise {
  text-align: center;
  font-size: 24px;
  color: #e67e22;
  margin-top: 40px;
}

/* Members Section */
.members {
  text-align: center;
  padding: 100px 30px;
  /* Adjusted for full-screen sections */
  background-color: #ffffff;
  color: #333;
}

.members h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #278ea5;
}

.member-list {
  list-style-type: none;
  padding: 0;
}

.member-list li {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Footer Section */
.footer {
  background-image: url('https://example.com/footer-background.jpg');
  /* Replace with your background image */
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  color: #ffffff;
  text-align: center;
}

.footer-content {
  background: rgba(0, 0, 0, 0.7);
  text-align: left;
  padding: 40px;
  border-radius: 15px;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.footer h2 {
  font-size: 36px;
  color: #f5a623;
  margin-bottom: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.form-group input {
  height: 40px;
}

.form-group textarea {
  resize: vertical;
}

button {
  background-color: #f5a623;
  color: #ffffff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #d49e20;
}

@media (max-width: 768px) {
  .footer h2 {
    font-size: 28px;
  }

  .footer-content {
    padding: 20px;
  }

  button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.company-info {
  font-weight: bold;
  margin-top: 20px;
}

.location {
  font-style: italic;
  margin-top: 10px;
}
