* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
      font-family: 'Segoe UI', sans-serif;
    }

/* Custom Alert Styling */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #444;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideIn 0.5s ease, fadeOut 0.5s ease 2.5s;
}

.custom-alert.success {
    background-color: #28a745; /* Green for success */
}

.custom-alert.error {
    background-color: #dc3545; /* Red for error */
}

.custom-alert.hide {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: black;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 80px;
    }

    .navbar .logo {
      display: flex;
      align-items: center;
    }
    
    .navbar .logo img {
      padding: 20px; 
      height: 150px;
      width: auto;
      display: block;
      transition: transform 0.3s;
    }
      
    

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .navbar ul li a:hover {
      color: #4ade80;
    }

    .quote-btn {
      background-color: #4ade80;
      color: #1e3a3a;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
    }

    .quote-btn:hover {
      background-color: #22c55e;
    }

    .menu-icon {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        background-color: #1e3a3a;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem 2rem;
      }

      .navbar ul.active {
        display: flex;
      }

      .menu-icon {
        display: block;
        color: #4ade80;
      }

      .quote-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
    }

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #fefefe, #f0f0f0);
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  color: #222;
}

.section-header h2 span {
  color: #14532d;
}

.section-header p {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form, .contact-info {
  flex: 1 1 48%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #14532d;
}

/* Radio Button Wrapper */
.form-group .radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.form-group .radio-group label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Optional: style the actual radio */
.form-group input[type="radio"] {
  accent-color: #4ade80; /* Stylish green tick for supported browsers */
  transform: scale(1.2); /* Slightly larger radio buttons */
  cursor: pointer;
}

.btn-submit {
  background: #4ade80;
  color: black;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.btn-submit:hover {
  background: #22c55e;
}

.contact-info .info-box {
  margin-bottom: 20px;
}

.contact-info h4 {
  color: #14532d;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info p {
  color: #444;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}
    

    /* Footer */
.footer {
    background-color: black;
    color: #fff;
    padding: 3rem 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }

  .footer-col h3 {
    margin-bottom: 1rem;
    color: #4ade80;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
  }

  .footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #4ade80;
  }

  .footer-col.brand img {
    height: 100px;
  }

  .footer-col.brand p {
    font-size: 0.95rem;
    color: #ccc;
  }

  .social-icons a {
    margin-right: 10px;
    color: #4ade80;
    font-size: 1.2rem;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #22c55e;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #334d4d;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #aaa;
  }

  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .social-icons {
      justify-content: center;
    }
  }
