/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 15px 30px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 106px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
  padding-bottom: 3px;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(11, 61, 109, 0.9), rgba(11, 61, 109, 0.9)),
              url("f413003b-036d-4138-9a8d-da2bd69d5ef8.png") no-repeat center right;
  background-size: cover;
  color: #fff;
  padding: 100px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background: #007bff;
  color: #fff;
}

.btn.primary:hover {
  background: #0056b3;
}

.btn.secondary {
  border: 2px solid #007bff;
  color: #007bff;
}

.btn.secondary:hover {
  background: #007bff;
  color: #fff;
}

.hero-img img {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* for now, can add mobile menu later */
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-img img {
    margin-top: 20px;
  }
}

/* Why Choose Section */
.why-choose {
  padding: 80px 20px;
  background: #fff;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.why-text {
  flex: 1;
  min-width: 280px;
}

.why-text h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0b3d6d;
}

.feature {
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #0b3d6d;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

.why-img img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-text {
    margin-bottom: 30px;
  }

  .why-img img {
    margin: 0 auto;
  }
}


/* Testimonials */
.testimonials {
  background: #f5f9fc;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0b3d6d;
}

.testimonial {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
  color: #333;
}

.testimonial h4 {
  color: #0b3d6d;
  font-weight: bold;
}

.testimonial span {
  font-size: 0.9rem;
  color: #666;
}

.dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #007bff;
}

/* CTA */
.cta {
  background: #0b3d6d;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.cta .btn.primary {
  background: #007bff;
  color: #fff;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta .btn.primary:hover {
  background: #0056b3;
}

/* Guide Section */
.guide {
  background: #f5f9fc;
  padding: 80px 20px;
  text-align: center;
}

.guide h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0b3d6d;
}

.guide .subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #555;
}

.guide-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.guide-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.guide-text {
  max-width: 500px;
  text-align: left;
}

.guide-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #0b3d6d;
}

.guide-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #333;
}

.guide-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.guide-text .note {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #444;
}

.btn.outline {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #007bff;
  color: #007bff;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.outline:hover {
  background: #007bff;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .guide-content {
    flex-direction: column;
    text-align: center;
  }

  .guide-text {
    text-align: center;
  }

  .guide-text ul {
    padding-left: 0;
    list-style: none;
  }
}

/* Footer */
.footer {
  background: #0b3d6d;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3, 
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #fff;
}

.footer-col p, 
.footer-col ul {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #007bff;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  background: #007bff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #0056b3;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
a{
    text-decoration: none;
    color: #ccc;
}