/* ==========================
   Global Styles
========================== */
/* Root Variables */
:root {
  --primary-color: #06231d;
  --secondary-color: #0c342c;
  --accent-color: #076653;
  --highlight-color: #33bfa6;
  --light-color: #ffffff;
  --dark-color: #34495e;
  --gray-color: #f5f5f5;
  --border-radius: 12px;
  --font-family: 'Inter', sans-serif;
  --transition: 0.3s ease;
}

/* General Styles */
body {
  font-family: var(--font-family);
  margin: 0;
  background-color: #076653;
  color: var(--dark-color);
  line-height: 1.6;
}

h1, h2, h3 {
  margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}
/* ==========================
 Header & Navbar
========================== */
/* General Header Styles */
header {
  background: linear-gradient(90deg, #0c342c, #076653); /* Gradient background */
  color: #e3ef26; /* Text color */
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Container for Alignment */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation Links */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--secondary-color);
}

.nav-logo img.logo-img {
  height: 60px; /* Adjust logo size */
  width: auto;  /* Maintain aspect ratio */
  transition: transform 0.3s ease;
}

.nav-logo img.logo-img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

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

.nav-links li a {
  text-decoration: none;
  color: var(--light-color);
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #cfb53b ; /* Highlight color */
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #cfb53b ;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Call-to-Action Button */
.cta-btn {
  background: #cfb53b;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #e3ef26;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #076653, #0c342c, #06231d; /* Solid background for mobile menu */
      gap: 1.5rem;
      padding: 2rem 0;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

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

  .menu-toggle {
      display: block;
  }

  .cta-btn {
      margin-top: 1rem;
      width: 80%;
      text-align: center;
  }
}

/* ==========================
 form Section
========================== */
/* Form Container */
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

/* Form Card */
.form-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 100%;
}

.form-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-description {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Form Elements */
form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  background-color: #fff;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

textarea {
  resize: vertical;
}

/* Button */
button {
  background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
  color: var(--light-color);
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

button:hover {
  background: linear-gradient(90deg, var(--highlight-color), var(--accent-color));
  transform: translateY(-2px);
}

/* Accessibility Enhancements */
.required {
  color: red;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-card {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .form-description {
    font-size: 0.9rem;
  }

  button {
    font-size: 0.9rem;
  }
}

/* ==========================
 Footer
========================== */
footer {
  background: linear-gradient(to right ,#06231d, #076653);
  color: #cfb53b;
  padding: 40px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 10%;
  text-align: left;
}

.footer-container h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #cfb53b;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-about p {
  font-size: 14px;
  color: #cccccc;
}

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

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-contact ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: #ffffff;
}

.footer-social .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social .social-icons a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #cfb53b;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  background-color: #0f0f0f;
  font-size: 12px;
  border-top: 1px solid #333333;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
      padding: 0 5%;
  }
  .footer-container div {
      text-align: center;
  }
  .footer-social .social-icons {
      justify-content: center;
  }
}