* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  font-weight: 400;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.site-header {
  background-color: #75b9fd;
  padding: 15px 0;
  color: #fff;
}
.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo-link {
  display: inline-block;
}
.site-header .logo-link img.logo-image {
  height: 50px;
  width: auto;
  display: block;
}
.site-header .main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.site-header .main-nav .nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.site-header .main-nav .nav-list li a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background: url("/assets/img/hero.png") center center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}
.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.4;
}
.hero .hero-content .btn-primary {
  background-color: #0066cc;
  padding: 15px 40px;
  font-weight: 600;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}
.hero .hero-content .btn-primary:hover {
  background-color: #004d99;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  .hero .hero-content p {
    font-size: 1rem;
  }
  .hero .hero-content .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
.about-us {
  position: relative;
  background-color: #fff;
  padding: 80px 0;
}
.about-us .about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 15px;
}
.about-us .about-container .about-text {
  flex: 1;
}
.about-us .about-container .about-text h2 {
  font-size: 3rem;
  color: #75b9fd;
  margin-bottom: 25px;
  font-weight: 700;
}
.about-us .about-container .about-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
.about-us .about-container .about-image {
  flex: 1;
}
.about-us .about-container .about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 64, 128, 0.15);
}
.about-us .decorative-shape {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(0, 102, 204, 0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 0;
}

@media (max-width: 900px) {
  .about-us {
    padding: 60px 0;
  }
  .about-us .about-container {
    flex-direction: column;
  }
  .about-us .about-container .about-image {
    margin-top: 30px;
    max-width: 300px;
  }
}
.services-overview {
  background-color: #f5f8fb;
  padding: 70px 0;
}
.services-overview h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #75b9fd;
  margin-bottom: 50px;
  font-weight: 700;
}
.services-overview .services-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.services-overview .services-list .service-item {
  background: white;
  flex: 1 1 300px;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 64, 128, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-overview .services-list .service-item h3 {
  color: #0066cc;
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.services-overview .services-list .service-item p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}
.services-overview .services-list .service-item .service-icon {
  font-size: 3rem;
  color: #0066cc;
  margin-bottom: 20px;
}
.services-overview .services-list .service-item .btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  border: 2px solid #0066cc;
  color: #0066cc;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.services-overview .services-list .service-item .btn-secondary:hover {
  background: #0066cc;
  color: white;
}
.services-overview .services-list .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 64, 128, 0.15);
}

@media (max-width: 768px) {
  .services-overview {
    padding: 50px 0;
  }
  .services-overview .services-list {
    flex-direction: column;
    gap: 30px;
  }
  .services-overview .services-list .service-item {
    flex: 1 1 100%;
  }
}
.reviews {
  background-color: #fff;
  padding: 70px 0;
}
.reviews h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #75b9fd;
  margin-bottom: 50px;
  font-weight: 700;
}
.reviews .reviews-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.reviews .reviews-list .review-item {
  background: #f5f8fb;
  flex: 1 1 320px;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 64, 128, 0.05);
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews .reviews-list .review-item p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}
.reviews .reviews-list .review-item h4 {
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 5px;
}
.reviews .reviews-list .review-item span {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .reviews-list {
    flex-direction: column;
    gap: 30px;
  }
  .reviews-list .review-item {
    flex: 1 1 100%;
  }
}
.site-footer {
  background-color: #75b9fd;
  color: #fff;
  padding: 40px 0 20px 0;
}
.site-footer .footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  gap: 40px;
}
.site-footer .footer-container .footer-column {
  flex: 1;
}
.site-footer .footer-container .footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid #0066cc;
  padding-bottom: 8px;
}
.site-footer .footer-container .footer-column ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-container .footer-column ul li {
  margin-bottom: 15px;
}
.site-footer .footer-container .footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-footer .footer-container .footer-column ul li a:hover {
  color: #0066cc;
}
.site-footer .footer-bottom {
  text-align: center;
  padding: 15px 15px 0 15px;
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .site-footer .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  .site-footer .footer-container .footer-column ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .site-footer .footer-container .footer-column ul li {
    margin-bottom: 0;
  }
}
.contact-us {
  background-color: #fff;
  padding: 70px 0;
}
.contact-us .contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-us .contact-container h2 {
  font-size: 2.8rem;
  color: #75b9fd;
  margin-bottom: 40px;
  font-weight: 700;
}
.contact-us .contact-container form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-us .contact-container form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact-us .contact-container form .form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}
.contact-us .contact-container form .form-group input,
.contact-us .contact-container form .form-group textarea {
  padding: 12px 15px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}
.contact-us .contact-container form .form-group input:focus,
.contact-us .contact-container form .form-group textarea:focus {
  border-color: #0066cc;
  outline: none;
}
.contact-us .contact-container form .form-group textarea {
  resize: vertical;
}
.contact-us .contact-container form .btn-primary {
  align-self: center;
  background-color: #0066cc;
  color: white;
  padding: 15px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-us .contact-container form .btn-primary:hover {
  background-color: #004d99;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay.hidden {
  display: none;
}
.popup-overlay .popup-content {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  color: #222;
}
.popup-overlay .popup-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 600;
}
.popup-overlay .popup-content button {
  background-color: #75b9fd;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}
.popup-overlay .popup-content button:hover {
  background-color: #43a0fc;
}

.about-page-hero {
  background-color: #f5f8fb;
  padding: 80px 0 60px;
}
.about-page-hero .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-page-hero .container h1 {
  font-size: 3rem;
  color: #75b9fd;
  margin-bottom: 20px;
  font-weight: 700;
}
.about-page-hero .container p {
  font-size: 1.3rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.service-detail-hero {
  background-color: #f5f8fb;
  padding: 80px 0 60px;
}
.service-detail-hero .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.service-detail-hero .container h1 {
  font-size: 3rem;
  color: #75b9fd;
  margin-bottom: 15px;
  font-weight: 700;
}
.service-detail-hero .container p {
  font-size: 1.3rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.service-detail-content {
  background-color: #fff;
  padding: 60px 0;
}
.service-detail-content .service-content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.service-detail-content .service-content-container .service-image-top {
  margin-bottom: 40px;
}
.service-detail-content .service-content-container .service-image-top img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 64, 128, 0.12);
}
.service-detail-content .service-content-container .service-text {
  text-align: left;
}
.service-detail-content .service-content-container .service-text h2 {
  color: #75b9fd;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.service-detail-content .service-content-container .service-text p,
.service-detail-content .service-content-container .service-text ul {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}
.service-detail-content .service-content-container .service-text ul {
  padding-left: 20px;
}
.service-detail-content .service-content-container .service-text ul li {
  margin-bottom: 12px;
  list-style-type: disc;
}
.service-detail-content .service-content-container .service-text .btn-primary {
  background-color: #0066cc;
  padding: 15px 50px;
  color: white;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.service-detail-content .service-content-container .service-text .btn-primary:hover {
  background-color: #004d99;
}

.reviews-page {
  background-color: #f5f8fb;
  padding: 80px 0;
}
.reviews-page h1 {
  text-align: center;
  font-size: 3rem;
  color: #75b9fd;
  margin-bottom: 50px;
  font-weight: 700;
}
.reviews-page .reviews-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.reviews-page .reviews-list .review-item {
  background: white;
  flex: 1 1 300px;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 64, 128, 0.1);
  text-align: center;
}
.reviews-page .reviews-list .review-item p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}
.reviews-page .reviews-list .review-item h4 {
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 5px;
}
.reviews-page .reviews-list .review-item span {
  font-size: 0.9rem;
  color: #666;
}
.reviews-page .reviews-cta {
  text-align: center;
  margin-top: 50px;
}
.reviews-page .reviews-cta .btn-primary {
  background-color: #0066cc;
  padding: 15px 40px;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.reviews-page .reviews-cta .btn-primary:hover {
  background-color: #004d99;
}

@media (max-width: 768px) {
  .reviews-list {
    flex-direction: column;
    gap: 30px;
  }
  .reviews-list .review-item {
    flex: 1 1 100%;
  }
}
.policy-page {
  background-color: #f9f9f9;
  padding: 80px 0;
}
.policy-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
}
.policy-page .container h1 {
  font-size: 2.8rem;
  color: #75b9fd;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}
.policy-page .container h2 {
  font-size: 1.8rem;
  color: #0066cc;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}
.policy-page .container p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}
.policy-page .container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.policy-page .container ul li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  list-style-type: disc;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 50px 0;
  }
  .policy-page .container {
    padding: 30px 20px;
  }
  .policy-page .container h1 {
    font-size: 2rem;
  }
  .policy-page .container h2 {
    font-size: 1.4rem;
  }
  .policy-page .container p,
  .policy-page .container ul li {
    font-size: 1rem;
  }
}
.verify-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.verify-popup.hidden {
  display: none;
}
.verify-popup .verify-popup-content {
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.verify-popup .verify-popup-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}
.verify-popup .verify-popup-content .btn-primary {
  background-color: #0066cc;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.verify-popup .verify-popup-content .btn-primary:hover {
  background-color: #004d99;
}/*# sourceMappingURL=style.css.map */