@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Parkinsans:wght@300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", serif;
}

body {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 30px 0;
  min-height: calc(100vh - 100px);
}

main {
  flex-grow: 1;
}

section {
  margin-top: 20px;
  margin-bottom: 20px;
}

ul {
  list-style-position: inside;
  margin: 5px;
}

p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.policy-header h2 {
  margin-top: 15px;
}


/* Navbar styles */
.navbar-container {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    margin: 0 auto;
    padding: 10px 20px;
    max-width: 1200px;
    background-color: rgba(244, 244, 244, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.navbar-logo img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.navbar-logo .logo-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: #007bff;
    font-family: 'Parkinsans', sans-serif;
}

.navbar-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar-links a {
    text-decoration: none;
    color: #555555;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s, transform 0.3s;
}

.navbar-links a:hover {
    color: #007bff;
    transform: scale(1.05);
}

#navbar-cta {
    background-color: #007bff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

#navbar-cta:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

@media (max-width: 780px) {
    .navbar-logo {
        margin-right: auto;
    }

    .navbar-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }

    .navbar-toggle span {
        width: 30px;
        height: 4px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .navbar-toggle.close span {
        background-color: #007bff;
        transition: all 0.3s;
    }
    
    .navbar-toggle.close span:nth-child(1) {
        transform-origin: center;
        transform: rotate(45deg) translateY(5px);
    }
    
    .navbar-toggle.close span:nth-child(2) {
        transform-origin: center;
        transform: rotate(-45deg) translateY(-5px);
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        background-color: rgba(232, 232, 232, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 40px 20px;
        border-radius: 20px;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        z-index: 1000;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .navbar-links.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 781px) {
    .navbar-links {
        display: flex !important;
        opacity: 1;
        transform: none;
        position: static;
        backdrop-filter: none;
        background-color: transparent;
        padding: 0;
        gap: 40px;
    }
}

/* Footer styles */
.footer {
  position: relative;
  bottom: 0;
  margin: 50px -10px 0;
  background-color: #212529;
  color: #ddd;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  padding: 40px 30px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 10%;
  row-gap: 20px;
  padding: 0 20px;
}

.footer-left,
.footer-right {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
  gap: 10px;
}

.footer-logo img {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
}

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

.footer-contact-item {
  color: #ddd;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease-in-out;
}

.footer-contact-item i {
  margin-right: 10px;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.footer-contact-item:hover {
  color: #aaa;
}

.footer-contact-item:hover i {
  color: #aaa;
}

.footer-right {
  text-align: left;
  display: flex;
  gap: 20%;
  margin-top: 0.5rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section strong {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer-links,
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li,
.footer-legal li {
  margin: 0;
}

.footer-links a,
.footer-legal a {
  text-decoration: none;
  color: #ddd;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #aaa;
  text-decoration: underline;
}

.footer-credits {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-credits p {
  margin: 0;
}

footer {
  margin-top: auto;
}

@media (max-width: 900px) {
  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-right {
    flex: unset;
    width: 100%;
    justify-content: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
}


/* > Home page
/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  font-weight: bold;
}

.btn:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #f8f9fa;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn-secondary:hover {
  background-color: #e9ecef;
  color: #005bb5;
}

/* Hero Section */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

#hero .hero-content {
  z-index: 2;
}

#hero h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

#hero .hero-buttons {
  display: inline-flex;
  gap: 20px;
  margin-top: 20px;
}

#hero .hero-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  font-size: 1rem;
  white-space: nowrap;
}

#hero .hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #345475;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

#hero .hero-contact a:hover {
  color: #345475b0;
}

#hero .hero-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

#hero .hero-bg img {
  width: 100%;
  object-fit: contain;
  opacity: 0.3;
}

/* Mission Section */
#mission {
  text-align: center;
  background: linear-gradient(145deg, #fefefe, #f9f9fb);
  padding: 40px 20px;
  border-radius: 20px;
  margin: 40px auto;
}

#mission h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

#mission p {
  color: #555;
  margin-bottom: 20px;
}

/* Services Section */
#services {
  text-align: center;
  padding: 60px 20px;
}

#services h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-item {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* CTA Section */
#cta {
  background: linear-gradient(145deg, #007bff, #005bb5);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 40px auto;
}

#cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

#cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#cta .cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}



/* > Contact page */
/* Contact Page Title */
#contact-header {
  text-align: center;
  margin: 40px auto;
  font-family: "Inter", serif;
}

#contact-header h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}

#contact-header p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}

/* Contact Options */
#contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto 40px;
  flex-wrap: wrap;
}

.contact-option {
  text-align: center;
  padding: 20px;
  width: 200px;
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.contact-option i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}

.contact-option h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.contact-option p {
  font-size: 0.9rem;
  color: #666;
}

/* Contact form styles */
#contact-form-container {
  font-family: "Inter", serif;
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

#form-header h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 10px;
}

#form-header p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.form-group span {
  color: red;
}

.form-group input,
.form-group textarea {
  resize: vertical;
  min-height: 2.8rem;
  max-height: 300px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.form-group small.error {
  color: red;
  font-size: 0.9rem;
  position: relative;
}

.submit-btn {
  background-color: #007bff;
  right: 0;
  margin-left: auto;
  display: block;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}

.submit-btn-disabled {
  background-color: #007bff!important;
  transition: none!important;
  transform: none!important;
  cursor: not-allowed!important;
}

#response {
  text-align: center;
  margin-top: 20px;
  display: none;
}

.response-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

.response-icon.success {
  background: #28a745;
  color: white;
}

.response-icon.error {
  background: #dc3545;
  color: white;
}

.response-message {
  font-size: 1rem;
  margin-bottom: 10px;
}

#captcha-container {
  margin-bottom: 15px;
}
