body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  background-color: #fff9f9;
  line-height: 1.6;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.hero .cta-button {
  display: inline-block;
  background-color: #FF6C2F;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero .cta-button:hover {
  background-color: #e08c1c;
  transform: scale(1.05);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero .btn-wrapper {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.hero .learn-more-btn {
  display: inline-block;
  background-color: #0056b3;
  color: #ffffff;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: bold;
  text-align: center;
}
.hero .learn-more-btn:hover {
  background-color: #e08c1c;
  transform: scale(1.05);
}

section {
  padding: 80px 0;
  max-width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
section h2 {
  margin-bottom: 25px;
  font-size: 28px;
}
section .container > p {
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 150%;
}

#why-choose-us {
  --section-bg-color: #e6f7ff;
  --section-border-color: #b3d7ff;
  --section-text-color: #333;
  background-color: var(--section-bg-color);
  border: 1px solid var(--section-border-color);
  color: var(--section-text-color);
  box-sizing: border-box;
  text-align: center;
}

.card-wrapper {
  list-style: none;
  padding: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 35px;
}
.card-wrapper .card {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
}
.card-wrapper .card strong {
  display: block;
  margin-bottom: 10px;
}
.card-wrapper .card p {
  font-size: 16px;
  line-height: 1.5;
}

#expect-section {
  background-color: var(--section-bg-color);
  border: 1px solid var(--section-border-color);
  color: var(--section-text-color);
  box-sizing: border-box;
  text-align: center;
}
#expect-section .container > p {
  max-width: 900px;
  text-wrap: balance;
  color: #000000;
}
#expect-section .card-wrapper {
  list-style: none;
  padding: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 926px;
  margin: 0 auto 35px;
}
#expect-section .card-wrapper .card {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
}
#expect-section .card-wrapper .card:last-child {
  grid-column: span 2;
  text-align: center;
  max-width: 50%;
  width: 100%;
  margin: 0 auto;
}
#expect-section .card-wrapper .card strong {
  display: block;
  margin-bottom: 10px;
  color: #d63384;
}
#expect-section .card-wrapper .card p {
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

#company-overview {
  --section-bg-color: #fff0f6;
  --section-border-color: #cec14d;
  --section-text-color: #333;
  background-color: var(--section-bg-color);
  border: 1px solid var(--section-border-color);
  color: var(--section-text-color);
  text-align: center;
}
#company-overview .card-wrapper {
  grid-template-columns: repeat(2, 1fr);
}
#company-overview .card-wrapper .card strong {
  color: #d63384;
  font-size: 18px;
}
#company-overview .card-wrapper .card p {
  font-size: 18px;
}
#company-overview .learn-more-btn {
  display: inline-block;
  background-color: #0056b3;
  color: #ffffff;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  text-align: center;
}
#company-overview .learn-more-btn:hover {
  background-color: #004494;
  color: #ffffff;
}

#team {
  --section-bg-color: #f9f0ff;
  --section-border-color: #5d1e97;
  --section-text-color: #333;
  background-color: var(--section-bg-color);
  color: var(--section-text-color);
  text-align: center;
}
#team h2 {
  color: #5d1e97;
  margin-bottom: 35px;
}
#team .team-members {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
}
#team .team-members .card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
#team .team-members .card img {
  width: 100%;
  height: 100%;
}
#team .team-members .card:hover {
  scale: 1.1;
}

#services {
  --section-bg-color: #e6fffb;
  --section-border-color: #87e8de;
  --section-text-color: #333;
  background-color: var(--section-bg-color);
  border: 1px solid var(--section-border-color);
  color: var(--section-text-color);
  text-align: center;
}
#services h2 {
  color: #005657;
  margin-bottom: 35px;
}
#services .services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
#services .services-wrapper .service-detail {
  text-align: left;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 25px;
}
#services .services-wrapper .service-detail i {
  font-size: 20px;
  margin-right: 10px;
}
#services .services-wrapper .service-detail p {
  font-size: 16px;
  line-height: 1.6;
}

#testimonials {
  --section-bg-color: #ffffe6;
  --section-border-color: #fffb8f;
  --section-text-color: #333;
  background-color: var(--section-bg-color);
  text-align: center;
}
#testimonials .testimonial {
  padding: 25px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: calc(100% - 40px);
  margin: 0 25px;
}
#testimonials .testimonial p {
  max-width: 100%;
}
#testimonials .testimonial .testimonial-text {
  font-style: italic;
  margin-bottom: 10px;
}
#testimonials .testimonial .testimonial-author {
  font-weight: bold;
  margin-bottom: 5px;
}
#testimonials .testimonial .testimonial-stars {
  color: #e67e22;
  /* Or any color that matches the star rating visual */
}
#testimonials .testimonial .testimonial_box-icon {
  padding: 10px 0;
}
#testimonials .testimonial .testimonial_box-icon i {
  font-size: 25px;
  color: #14213d;
}
#testimonials .testimonials-wrapper {
  margin-bottom: 60px !important;
}
#testimonials .testimonials-wrapper .slick-dots {
  bottom: -50px;
}
#testimonials .testimonials-wrapper .slick-dots li {
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6392156863);
}
#testimonials .testimonials-wrapper .slick-dots li:hover {
  transform: none;
}
#testimonials .testimonials-wrapper .slick-dots li.slick-active {
  background-color: #000000;
}
#testimonials .testimonials-wrapper .slick-dots li button {
  display: none;
}
#testimonials .testimonials-wrapper .slick-dots li button:before {
  display: none;
}
#testimonials .testimonials-wrapper .slick-arrow {
  color: #000000;
}
#testimonials .testimonials-wrapper .slick-arrow::before {
  color: #000000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
#testimonials .testimonials-wrapper .slick-arrow.slick-next::before {
  content: "\f105";
}
#testimonials .testimonials-wrapper .slick-arrow.slick-prev::before {
  content: "\f104";
}
#testimonials .see-all-reviews-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #004494;
  /* Adjust to match your site's theme */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}
#testimonials .see-all-reviews-btn:hover {
  background-color: #003366;
}

#contact {
  --section-bg-color: #f0f5ff;
  --section-border-color: #adc6ff;
  --section-text-color: #333;
  background-color: var(--section-bg-color);
  border: 1px solid var(--section-border-color);
  color: var(--section-text-color);
  text-align: center;
}
#contact h2 {
  color: #0057b8;
  /* A darker shade of blue for better contrast */
  margin-bottom: 20px;
}
#contact a {
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
}
#contact .form-label {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
  margin-bottom: 14px;
  display: block;
}
#contact .cta-button {
  display: block;
  background-color: #FF6C2F;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  width: 150px;
  height: 42px;
}
#contact .cta-button:hover {
  background-color: #e08c1c;
  transform: scale(1.05);
}

#why-choose-us,
#company-overview,
#team,
#services,
#testimonials,
#contact {
  background-color: var(--section-bg-color);
  border: 1px solid var(--section-border-color);
  color: var(--section-text-color);
}

h2 {
  color: #0056b3;
}

.footer {
  background-color: #ecc8af;
  padding: 50px 0 0;
}
.footer h3 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer ul li {
  font-size: 16px;
  line-height: 22px;
}
.footer ul li a {
  color: #0057b8;
  border: none;
  text-decoration: unset;
}
.footer ul li i {
  margin-right: 10px;
  min-width: 20px;
  color: #333;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer .copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #fff;
  margin-top: 35px;
}

@media (max-width: 768px) {
  .hero h1,
  .hero-content {
    font-size: 18px;
    padding: 10px;
  }
  .cta-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  section {
    padding: 40px 15px;
  }
}
a:hover {
  color: #000000;
  text-decoration: underline;
}

.carousel {
  display: flex;
  overflow-x: auto;
  padding: 20px 0;
}

.info-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0;
  display: block;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
}
.info-box .chat-head {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
}
.info-box .chat-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.info-box .chat-head .close-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  /* Makes the button larger and more noticeable */
}

.info-box-content {
  padding: 15px 10px 10px;
  border-top: 1px solid #ddd;
}

.info-box-content p,
.info-box-content .options button {
  background-color: #f1f1f1;
  padding: 8px 12px;
  border-radius: 18px;
  /* More pronounced rounding for a bubble look */
  line-height: 1.4;
  margin-bottom: 10px;
  display: inline-block;
  /* Aligns text to resemble messaging */
  max-width: 90%;
  font-size: 14px;
  /* Ensures bubbles don't stretch too wide */
}

.info-box-content .options button {
  background-color: #e67e22;
  /* Orange color for clickable options */
  color: white;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  text-align: left;
  /* Adds spacing between options if needed */
}

.info-box-content .options {
  display: flex;
  flex-direction: column;
  /* Stacks options vertically */
}

.reopen-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e67e22;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  z-index: 1001;
  display: none;
  /* Initially hidden */
}

/*# sourceMappingURL=index.css.map */
