/* 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;
}

/* Our Vision and Mission */
.vision-mission-wrapper {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.vision-mission-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
}

.vm-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.vm-section.reverse {
  flex-direction: row-reverse;
}

.vm-image {
  flex: 1;
  text-align: center;
}

.vm-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vm-content {
  flex: 1;
  min-width: 300px;
}

.vm-content h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.icon-text i {
  margin-top: 7px;
  color: #0077b6;
  font-size: 1.2rem;
  flex-shrink: 0; 
}

.icon-text p {
  margin: 0;
}

/* Career Section */
.career-section {
  background-color: #f0f8ff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.career-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.career-content {
  flex: 1;
}

.career-title {
  font-size: 36px;
  font-weight: bold;
  color: #03045e;
  margin-bottom: 10px;
}

.career-title span {
  color: #0077b6;
}

.career-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.career-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.career-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  color: #333;
}

.career-icon {
  font-size: 24px;
  color: #0077b6;
  margin-top: 4px;
  min-width: 30px;
}

.career-btn {
  display: inline-block;
  background-color: #0077b6;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.career-btn:hover {
  background-color: #005f91;
}

.career-image {
  flex: 1;
  text-align: center;
}

.career-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 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; 
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px; 
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #149e76; 
}

/* 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;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-section,
  .vm-section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .vm-content h2 {
    justify-content: center;
  }

  .career-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .career-point {
    justify-content: center;
    text-align: left;
  }
}