/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.main-nav ul {
  position: relative;
  padding-bottom: 2px;
  padding-right: 500px;
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  padding-right: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #007bff;
}

.header-actions .btn {
  margin-left: 1rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #00b386;
  color: white;
}

.btn-primary:hover {
  background-color: #009e74;
}

/* Contact us Section */
.contact-section {
  margin-top: -30px;
  padding: 60px 20px;
  background-color: #ffffff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form h2 {
  font-size: 2rem;
  color: #03045e;
  margin-top: -10px;
  margin-bottom: 0;
}

.contact-form h2 span {
  color: #00b4d8;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #00b4d8;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form textarea {
  resize: none;
  font: 1rem Verdana;
}

.submit-btn {
  background-color: #0077b6;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #00b4d8;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #00b4d8;
  font-size: 1.1rem;
}

.contact-image {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* Call To Action Section */
.cta-section {
  background-color: #e6f1f7;
  padding: 3rem 1rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  margin-top: -2rem;
}

.cta-section p {
  color: #444;
  margin-bottom: 1.5rem;
}

.cta-buttons a {
  color: 2bb6;
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
}

.btn-primary {
  background-color: #00b386; /* Change this to your desired color */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px; /* This makes the edges fully round */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #149e76; /* Optional: darker shade on hover */
}

/* Footer */
.footer {
  background-color: #0d3c58;
  color: #fff;
  padding: 1rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-col p {
  color: #ccc;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a i {
  margin-right: 0.5rem;
}

.footer-links a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
}

.newsletter-form button {
  background-color: #1ab188;
  border: none;
  padding: 0.6rem 1rem;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #ccc;
}

.legal-links a {
  margin-right: 1rem;
  color: #ccc;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

