/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--dark-color);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button,
  .cta-button,
  .submit-btn {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
  }
  
  button:hover,
  .cta-button:hover,
  .submit-btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Header & Navigation */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .nav-links a.active {
    color: var(--primary-color);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 60px 0 0;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 16px;
    opacity: 0.8;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
  }
  
  .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
  }
  
  /* Newsletter Section */
  .newsletter {
    background-color: var(--primary-color);
    padding: 80px 20px;
    text-align: center;
  }
  
  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter h2 {
    color: var(--light-text);
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .newsletter p {
    color: var(--light-text);
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 16px;
  }
  
  .newsletter-form button {
    background-color: var(--dark-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 25px;
  }
  
  .newsletter-form button:hover {
    background-color: var(--accent-color);
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
  }
  
  .modal-content {
    background-color: #fff;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    animation: modalFadeIn 0.3s ease;
  }
  
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
  }
  
  .close-modal:hover {
    color: var(--text-color);
  }
  
  .modal h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
  }
  
  /* Form Styles */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  input,
  select,
  textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    transition: var(--transition);
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  }
  
  .error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
  }
  
  /* Radio and Checkbox Styles */
  .radio-group,
  .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .radio-label,
  .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    margin-right: 15px;
  }
  
  .radio-label input,
  .checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: auto;
  }
  
  .radio-custom,
  .checkbox-custom {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid var(--border-color);
    transition: var(--transition);
  }
  
  .radio-custom {
    border-radius: 50%;
  }
  
  .checkbox-custom {
    border-radius: 4px;
  }
  
  .radio-label:hover input ~ .radio-custom,
  .checkbox-label:hover input ~ .checkbox-custom {
    border-color: var(--primary-color);
  }
  
  .radio-label input:checked ~ .radio-custom,
  .checkbox-label input:checked ~ .checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .radio-custom:after,
  .checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .radio-label input:checked ~ .radio-custom:after,
  .checkbox-label input:checked ~ .checkbox-custom:after {
    display: block;
  }
  
  .radio-label .radio-custom:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }
  
  .checkbox-label .checkbox-custom:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  /* Success Message */
  .success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
  }
  
  .success-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    position: relative;
    animation: fadeIn 0.3s ease;
  }
  
  .close-success {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
  }
  
  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .section-header h2 {
      font-size: 32px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-links {
      justify-content: space-between;
    }
  }
  
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
  
    .nav-links {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: #fff;
      padding: 20px;
      gap: 15px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      transform: translateY(-150%);
      transition: transform 0.3s ease;
      z-index: 999;
    }
  
    .nav-links.active {
      transform: translateY(0);
    }
  
    .section-header h2 {
      font-size: 28px;
    }
  
    .form-row {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .section-header h2 {
      font-size: 24px;
    }
  
    .newsletter-form {
      flex-direction: column;
    }
  
    .newsletter-form input {
      border-radius: var(--border-radius);
      margin-bottom: 10px;
    }
  
    .newsletter-form button {
      border-radius: var(--border-radius);
      width: 100%;
    }
  }
  