/* styles.css */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #000;
  color: #fff;
}

.intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(145deg, #000 70%, #111);
  text-align: center;
  padding: 2rem;
}

.intro-container {
  max-width: 600px;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #f1f1f1;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .intro-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}
/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.key-sections {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
}

.key-card {
  background-color: #111;
  border: 1px solid #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background-color: #222;
  color: #fff;
  font-weight: bold;
}

.card-header:hover {
  background-color: #333;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.card-content {
  display: none;
  padding: 1rem;
  background-color: #000;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.card-content ul {
  padding-left: 1.5rem;
}

.card-content p,
.card-content li {
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .card-header {
    font-size: 1rem;
  }

  .toggle-icon {
    font-size: 1.2rem;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(5px);
}
nav img {
  width: 200px;
  margin-top: 0%;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
nav .fa-solid {
  display: none;
}
@media (max-width: 700px) {
  nav img {
    width: 125px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-solid {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
  .row {
    flex-direction: column;
  }
}
/* Footer Section */
.footer-section {
  background-color: #1e1e1e; /* Dark Background */
  color: #fff; /* Light Text */
  padding: 50px 20px;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.newsletter-container,
.social-media-container,
.contact-info {
  flex: 1;
  min-width: 250px;
  padding: 20px;
}

.newsletter-container h3,
.social-media-container h3,
.contact-info h3 {
  font-size: 24px;
  color: #ffb800; /* Royal Gold */
  margin-bottom: 10px;
}

.newsletter-container p,
.social-media-container p,
.contact-info p {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 15px;
}
.contact-info a {
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
  color: white;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 8px;
  background-color: #333;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #ffb800; /* Royal Gold */
}

.newsletter-form button {
  padding: 14px 24px;
  background-color: #ffb800; /* Royal Gold */
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e59f00; /* Darker Gold */
}

.social-media-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.social-link {
  display: block;
  color: #fff;
  font-size: 24px;
}

.social-link:hover {
  color: #ffb800; /* Royal Gold */
}

.contact-info p {
  font-size: 18px;
  color: #f0f0f0;
}

.footer-bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 16px;
  color: #888;
}
