/* ===== Full Page Background ===== */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('bg.jpg.png') center/cover no-repeat fixed;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}

/* ===== Marquee ===== */
.marquee-container {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

/* ===== Transparent Strip for All Content ===== */
.overlay-strip {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 20px;
  border-radius: 10px;
  margin: 20px;
}

/* ===== Navigation Bar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: transparent;
  color: white;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding-left: 0;
}

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

.navbar nav ul li a:hover {
  color: #28a745;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3em;
}

.hero p {
  font-size: 1.2em;
}

.hero .btn {
  background: #28a745;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #1e7e34;
}

/* ===== Section Styles ===== */
.section {
  padding: 60px 0;
  text-align: center;
}

.white-box {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  line-height: 1.6;
}

/* ===== Cards Layout ===== */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: rgba(28, 27, 27, 0.1);
  padding: 20px;
  border-radius: 10px;
  width: 260px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.card a {
  color: #4b756d;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #fff;
}

/* ===== Contact Form ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

form input, form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  background: rgba(255,255,255,0.8);
  color: #000;
}

form button {
  background: #007bff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #0056b3;
}

/* ===== Footer ===== */
.footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 40px;
  color: #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 240px;
}

.footer-logo .logo-text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #888;
}

/* ===== Responsive Design (Mobile) ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-logo .logo-text {
    font-size: 28px;
  }
}
