/* 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;
}

/* About Us */
.about-section {
    position: relative;
  background-image: linear-gradient(87deg,#ffffff,transparent), url('aboutbg.webp');
  background-size: cover;
  background-position: center;
  height: 87.65vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 500px;
}

.about-text .title {
  font-size: 2rem;
  font-weight: bold;
  color: #0077b6;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.about-list i {
  color: #000000;
  margin-right: 10px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us*/
.why-choose-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #0077b6;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #f8f9fa;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #03045e;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* 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;
}
