:root {
    --primary-green: #2d5f4d;
    --secondary-blue: #0ab23a;
    --accent-white: #f8f9fa;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--primary-green);
    background: var(--accent-white);
    /* position: fixed; */
    width: 100%;
    border-bottom: 2px solid var(--primary-green);
  }
  .logo-section {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
  }
  .nav-links button {
    border: none;
    padding: 0.7rem 2rem;
    cursor: pointer;
  }
  
.nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 0;
    background: var(--secondary-blue);
    transition: width 0.3s ease, left 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
    left: 0;
  }
  .nav-links a:hover {
    color: var(--secondary-blue);
  }
  

.container {
    padding: 20px;
}

.intro {
    text-align: center;
    padding: 50px;
    background:  linear-gradient(rgba(42, 128, 162, 0.668), rgba(64, 142, 8, 0.762)),
    url('imgs/freedom.jpg') center/cover ;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out;
}

.intro h2 {
    color: yellow;
    font-size: 2.5em;
    animation: slideUp 1.5s ease-out;
}

.intro p {
    color: #d1e9e0;
    font-size: 1.5em;
    animation: fadeIn 2.5s ease-in-out;
}

.form-container {
    display: flex;
    gap: 6%;
    flex-wrap:wrap ;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: slideInFromLeft 1s ease-in-out;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.form-container input:focus, .form-container textarea:focus {
    border-color: #3a8d99;
    box-shadow: 0 0 5px rgba(58, 141, 153, 0.6);
}

.form-container button {
    background-color:var(--primary-green);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.form-container button:hover {
    background-color:var(--secondary-blue);
    transform: scale(1.05);
}

footer {
    background: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
  }
  
  footer div {
    margin: 10px;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s, border-bottom 0.3s;
    position: relative;
  }
  
   footer a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
    footer a:hover {
    transform: scale(1.1);
    color: #007bff;
  }
  
  a:hover::after {
    width: 100%;
  }
  
  .social-icons img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  
  .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
    width: 100%;
  }
  

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-50%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromTop {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromBottom {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}