* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Topbar */
.topbar {
  background: #f0f0f0;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: #005b85;
  text-decoration: none;
  font-weight: 500;
}

/* Navbar */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  flex-wrap: wrap;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00314d;
}
.logo span {
  color: #ff4d4f;
}
.nav-menu {
  display: flex;
  gap: 25px;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-menu a:hover {
  color: #ff4d4f;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    padding: 15px;
    width: 100%;
  }
  .nav-menu.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    color: #333;
  }
}

/* Banner */
.banner {
  background: linear-gradient(to right, #00314d, #006d94);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.banner h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.banner p {
  font-size: 18px;
  margin-bottom: 30px;
}
.cta-btn {
  background: #ff4d4f;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #e6393d;
}


.features-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #00314d;
  font-weight: 700;
}

.features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  color: #ff4d4f;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  color: #00314d;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  font-size: 15px;
  color: #555;
}

.plans-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.plans-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card i {
  font-size: 40px;
  color: #ff4d4f;
  margin-bottom: 20px;
}

.plan-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #00314d;
}

.price {
  font-size: 26px;
  color: #111;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-card ul li {
  margin: 8px 0;
  color: #555;
  font-size: 15px;
}

.plan-card .btn {
  display: inline-block;
  background: #ff4d4f;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 600;
}

.plan-card .btn:hover {
  background: #e03c3f;
}

.featured {
  border: 2px solid #ff4d4f;
  background-color: #fff8f8;
}

.testimonials-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #00314d;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 24px;
  color: #ff4d4f;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 18px;
  color: #00314d;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

.faq-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  max-width: 960px;
  margin: 0 auto;
}

.faq-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #00314d;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  color: #00314d;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 18px;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 15px;
  color: #555;
}

.faq-item.open .faq-answer {
  display: block;
}


.about-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.about-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #00314d;
}

.about-section p {
  font-size: 16px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.cta-section {
  background: linear-gradient(135deg, #00314d, #005d8f);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: #ff4d4f;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e6b800;
}
.contact-section {
  background-color: #fff;
  padding: 80px 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  font-size: 28px;
  color: #00314d;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  color: #444;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.contact-form button {
  background-color: #00314d;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #00283a;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


.vision-mission-section {
  padding: 80px 20px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.vision-mission-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.vision-mission-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #00314d;
}

.vm-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.disclaimer-section {
  background-color: #000;
  color: #ccc;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.disclaimer-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.call-now-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ff4d4f;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 0;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.call-now-fixed:hover {
  background-color: #a31426;
}
