:root {
  --header-bg-color: #f8f9fa;
  --header-text-color: #000;
  /* --hero-bg-color: #EEEDED; */
  --contact-bg-color: #006d8f;
  --mission-bg-color: #006d8f;
  --about-bg-color: #f8f9fa;
  --get-started-bg-color: #f8f9fa;
  --footer-bg-color: #333;
  --footer-text-color: #fff;
  --btn-bg-color: #006d8f;
  --btn-text-color: #fff;
}
html {
   scroll-behavior: smooth;

}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
header {
  background-color: var(--header-bg-color);
  color: var(--header-text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  text-align: center;
}
header a {
  text-decoration: none;
  color:black;
}
h1 {
  margin: 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: var(--header-text-color);
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #929292;
}


/* Hero Section */
#hero {
  background-color: var(--header-bg-color);
  color: black;
  text-align: center;
  padding: 150px 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#hero h2 {
  font-size: 3em;
  margin: 0;
}

#hero p {
  font-size: 1.5em;
  margin: 0;
}

#hero .btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--btn-bg-color);
  color: var(--btn-text-color);
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

#hero .btn:hover {
  background-color: black;
}

section {
  padding: 100px 20px;
  color: white;
  text-align: center;
  opacity: 1;
  transform: none;
}

/* Contact Section */
#contact {
  background-color: var(--contact-bg-color);
}
/* Mission Section */
#mission {
    background-color: var(--mission-bg-color);
    color: white;
    padding: 100px 20px;
}

.mission-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}

.mission-text h2 {
    margin-bottom: 20px;
}

.mission-text p {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.5em;
}

.mission-image {
    flex: 1;
    max-width: 500px;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* About Us Section */
#about {
    background-color: var(--about-bg-color);
    color: black;
    padding: 100px 20px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    flex: 1;
    padding-left: 40px;
    text-align: right;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.5em;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .mission-container,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-text,
    .about-text {
        padding: 0;
    }

    .mission-text,
    .about-text {
        text-align: center;
    }

    .mission-image,
    .about-image {
        margin-top: 20px;
    }
}



/* Get Started Section */
#get-started {
  background-color: var(--get-started-bg-color);
  color:black;
}
#get-started button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #006d8f ;
  color: var(--btn-text-color);
  text-decoration: none;
  font-size: 1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#get-started button:hover {
  background-color: black;
}

/* Footer Styling */
footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 60px 20px;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid #444;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.05em;
}

footer p {
    margin: 0;
    padding-bottom: 15px;
    font-size: 1em;
    font-weight: 300;
    color: #bbb;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer ul li {
    display: inline;
}

footer ul li a {
    text-decoration: none;
    color: var(--footer-text-color);
    font-weight: 400;
    font-size: 1em;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

footer ul li a:hover {
    color: #e67e22;
    border-bottom: 2px solid #e67e22;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

footer .social-icons a {
    text-decoration: none;
    color: var(--footer-text-color);
    font-size: 1.5em;
    transition: color 0.3s, transform 0.3s;
}

footer .social-icons a:hover {
    color: #e67e22;
    transform: translateY(-3px);
}

/* Responsive Footer */
@media screen and (max-width: 400px) {
    footer ul {
        flex-direction: column;
        gap: 15px;
    }

    footer .social-icons {
        gap: 15px;
    }
}

@media screen and (max-width: 400px) {
  nav ul {
      flex-direction: column;
  }

  section {
      padding: 50px 20px;
  }

  #hero {
      padding: 100px 20px;
  }

  #hero h2 {
      font-size: 2em;
  }

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

  #hero .btn {
      font-size: 1em;
      padding: 10px 20px;
  }
}
/* Form Styling */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

#contact-form .form-group {
    margin-bottom: 15px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form .btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--btn-bg-color);
    color: var(--btn-text-color);
    text-decoration: none;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form .btn:hover {
    background-color: darken(var(--btn-bg-color), 10%);
}

/* Contact Section Styling */
#contact {
    background-color: var(--contact-bg-color);
    color: white;
    padding: 100px 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-text {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}

.contact-text h2 {
    margin-bottom: 20px;
}

.contact-text p {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.5em;
}

/* Form Styling */
#contact-form {
    flex: 1;
    max-width: 500px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

#contact-form .form-group {
    margin-bottom: 15px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form .btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--btn-bg-color);
    color: var(--btn-text-color);
    text-decoration: none;
    font-size: 1em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form .btn:hover {
    background-color: black;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    #contact-form {
        max-width: 100%;
    }
}
