@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.container {
  overflow: auto;
  scrollbar-width: none;
}

.container::-webkit-scrollbar {
  display: none;
}

.hidden-content {
  display: none;
}

.hidden {
  display: none;
  /* Hide content by default */
}

.show-more-btn-container {
  text-align: center;
  margin-top: 20px;
}

.show-more-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.show-more-btn:hover {
  background-color: #0056b3;
}

/* Full-page overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Pop-up message box */
.popup-message {
  background-color: #ffffff;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  border: 2px solid #4a4a4a;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

/* Center-align the header */
.popup-message h2 {
  color: #333;
  font-size: 1.8em;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

/* Message styling */
.popup-message p {
  color: #444;
  font-size: 1em;
  line-height: 1.5em;
  margin: 12px 0;
}

/* Signature styling */
.popup-message .signature {
  color: #333;
  font-weight: bold;
  margin-top: 10px;
}

.popup-message button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#translate-btn {
  background-color: #4a90e2;
  color: #ffffff;
}

#translate-btn:hover {
  background-color: #357ab8;
}

/* Close button positioning */
.close-btn {
  background-color: #4a4a4a;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.close-btn:hover {
  background-color: #666;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.language-selector {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.language-selector button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  margin: 0 0.5rem;
}

.language-selector button:hover {
  background-color: #555;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  padding-top: 30px;
  margin-bottom: 10px;
}

.heading_container h1 {
  position: relative;
  font-weight: bold;
  padding-top: 30px;
  margin-bottom: 10px;
}

.heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 10px auto 0;
  line-height: 1.6;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;
}

.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(130deg, #231a6f, #0f054c);
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #b0bd92;
  /* Example header background */
  z-index: 999;
  transition: transform 0.3s ease-in-out;
  /* Smooth show/hide */
  transform: translateY(0);
  /* Initially visible */
  height: 60px;
  /* Set height of the header */
}


.header_section.hide {
  transform: translateY(-100%);
  /* Hide the header */
}

.header_section.show {
  transform: translateY(0);
  /* Show the header */
}

/* Align logo and text horizontally */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img {
  margin-right: 10px;
  /* Space between the logo and the text */
}

.brand-text {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  /* Adjust the color as needed */
  margin: 0;
  /* Ensure no additional margin */
}

.navbar-brand span {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 10px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #00bbf0;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 400;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #00bbf0;
}

.navbar-collapse {
  background-color: #b0bd92;
  /* Change this to your desired color */
  opacity: 95%;
}

.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 37px;
  height: 42px;
  border: none;
  cursor: pointer;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

/* Styling for the bars (span) */
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Add the before and after pseudo-elements for the bars */
.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Position the before and after pseudo-elements */
.custom_nav-container .navbar-toggler span::before {
  top: -10px;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

/* On expanded state: rotate the bars and move them to make an "X" */
.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(90deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(90deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
  /* Rotate the entire button for animation */
}

/*end header section*/

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 60px;
  padding: 45px 0 145px 0;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}



.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background: #b0bd92;
}

.service_section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.service_section .detail-box h5 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
}

.service_section .detail-box .short-text {
  display: block;
}

.service_section .full-text {
  display: none;
}

.service_section .detail-box .read-more:hover {
  color: #00bbf0;
}

.service_section.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #007fa4;
  cursor: pointer;
}

.slider_section .img-box {
  margin: 45px 0;
}

.slider_section .img-box img {
  width: 100%;
  -webkit-animation: upDown 5s infinite;
  animation: upDown 5s infinite;
}

.img-box-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Two equal-width columns */
  gap: 10px;
  /* Space between images, optional */
}

.img-box-4 img {
  width: 100%;
  /* Ensures each image fills its cell horizontally */
  height: 200px;
  /* Set a uniform height for all images */
  object-fit: cover;
  /* Keeps images cropped uniformly within their set size */
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.heading_container .box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heading_container .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.heading_container .detail-box h5 {
  font-size: 22px;
  color: #333;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.heading_container .detail-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.heading_container .detail-box a {
  display: inline-block;
  font-size: 15px;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.heading_container .detail-box a:hover {
  color: #0056b3;
  border-bottom: 2px solid #0056b3;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #00bbf0;
}

.service_section {
  position: relative;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.service_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 45px;
  background-color: #f8f8f9;
  padding: 20px 20px 10px 20px;
  border-radius: 10px 10px 5px 5px;
  /* Rounded top corners */
  overflow: hidden;
}

.service_section .box .img-box {
  aspect-ratio: 16/9;
  /* Consistent aspect ratio */
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.service_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 5px;
}

.service_section .box .detail-box a {
  color: #00204a;
  font-weight: 600;
  text-decoration: none;
}

.service_section .box .detail-box a:hover {
  color: #00bbf0;
}

.service_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 12px 50px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: #007fa4;
}

/*what service*/
.what_service_section {
  background: #f9f9f9;
  padding: 50px 0;
  color: #333;
  font-family: Arial, sans-serif;
}

.heading_container {
  text-align: center;
  margin-bottom: 50px;
}

.heading_container h2 {
  font-size: 2rem;
  color: #002b64;

}

/* General Styling */
.service_section {
  padding: 80px 0;
  background-color: #f5f5f5;
  font-family: 'Arial', sans-serif;
}

.heading_container {
  margin-bottom: 50px;
}

.heading_container h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heading_container h2 span {
  color: #007bff;
}

.heading_container span {
  color: #29ab87;
}

.content_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.text_content {
  flex: 1;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.text_content .highlight {
  color: #29ab87;
  font-weight: bold;
}

.image_container {
  flex: 1;
  text-align: center;
}

.image_container img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.subsection,
.benefits_section {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.subsection h3,
.benefits_section h3 {
  font-size: 1.5rem;
  color: #29ab87;
  margin-bottom: 15px;
}

.benefits_section ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.8;
}

.benefits_section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.benefits_section ul li strong {
  color: #002b64;
}

/*end what service*/
/* Q&A */
.QA {
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.faq-item h2 {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 10px;
}

.faq-item p,
.faq-item ul {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.faq-item ul {
  padding-left: 20px;
  list-style: disc;
}

.layout_padding {
  padding: 40px 0;
}

/*end Q&A */
/*about section*/
.about_section {
  background: linear-gradient(130deg, #b0bd92, #29ab87);
  color: #ffffff;
}

.about_section .heading_container {
  margin-bottom: 45px;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img-box img {
  max-width: 100%;
}

.about_section .detail-box h3 {
  font-weight: bold;
  padding-top: 10px;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #007fa4;
}

/* */
.why_section .box {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.why_section .box .img-box {
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid #00204a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.why_section .box .img-box img {
  width: 55px;
  height: auto;
  fill: #00204a;
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.why_section .box p {
  margin-bottom: 0;
}

.why_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.why_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.why_section .btn-box a:hover {
  background-color: #007fa4;
}

/* team section */
.team_section {
  text-align: center;
  background: linear-gradient(130deg, #b0bd92, #29ab87);
  padding: 50px 0;
  color: #ffffff;
}

.team_section .heading_container h2 {
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #ffffff;
}

.team_section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team_section h5:hover {
  color: #ffcc00;
}

/* Box Styling */
.team_section .box {
  background: linear-gradient(to bottom, #002759, #002b64);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Align content from the top */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.team_section .col-lg-3,
.team_section .col-md-6,
.team_section .col-sm-12 {
  flex: 1 1 calc(33.333% - 20px);
  max-width: 300px;
  display: flex;
  justify-content: center;
}

.team_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Image Styling */
.team_section .img-box {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.team_section .img-box img {
  width: 200px;
  height: 200px;
  border-radius: 10%;
  border: 5px solid #ffffff;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Detail Box Styling */
.team_section .detail-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 40px;
  /* Make space for the heading */
}

.team_section .detail-box h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00bbf0;
  margin-bottom: 10px;
  text-align: center;
  position: absolute;
  bottom: 0;
  /* Fix it at the bottom */
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  /* Optional: to make the heading more readable */
  padding: 5px 10px;
}

/* Content Hidden Initially */
.team_section .detail-box .details {
  display: none;
}

.team_section .detail-box.expanded .details {
  display: block;
}

/* Adjusting spacing for the paragraph and other details */
.team_section .detail-box p {
  font-size: 0.9rem;
  color: #e6e6e6;
  margin: 10px 0;
  text-align: center;
}

/*team section end*/


/*team section end*/
.benefits_section .details {
  display: none;
}

.benefits_section.expanded .details {
  display: block;
}

.box.expanded .details {
  display: block;
}

.benefits_section h3 {
  cursor: pointer;
}

/* General client section layout */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  margin: 15px;
  padding: 75px 25px 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.client_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Image styling */
.client_section .box .img-box {
  position: relative;
  width: 100px;
  height: 100px;
}

.client_section .box .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
}

/* Title and subtitle styling */
.client_section .box .client_id {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.client_section .box .client_id .client_info h6 {
  font-weight: bold;
  font-size: 1.2rem;
  color: #00204a;
  margin-bottom: 5px;
}

.client_section .box .client_id .client_info p {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 10px;
}

/* Quote icon */
.client_section .box .detail-box i {
  color: #00204a;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Description paragraph */
.client_section .box .detail-box p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
  margin-top: 15px;
}

/* Carousel navigation */
.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: #000;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s, color 0.3s;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background: #00204a;
  color: #ffffff;
}


/*comingsoon*/
.coming_soon_section {
  position: relative;
  /* Keep it in document flow */
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  background-color: white;
  /* Background color */
  display: flex;
  /* Flexbox to center the text */
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  color: black;
  /* White text for visibility */
  font-size: 3rem;
  /* Adjust text size */
}

/*comingsoon end*/
/*story*/
.stories {
  padding: 40px 20px;
  background-color: #eef4f7;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.story-container h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.story-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.story-item h2 {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 10px;
}

.story-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/*end story*/
/* client section end */
.info_section {
  background-color: #b0bd92;
  color: #ffffff;
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #00bbf0;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #00bbf0;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.info_section .info_links .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links .nav-link:hover {
  color: #00bbf0;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: #007fa4;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
}

.footer_section p {
  color: #00204a;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

/*map*/
.address-section {
  font-family: Arial, sans-serif;
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f8f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.address-section h5 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
}

.address-section p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  text-align: center;
}

iframe {
  max-width: 100%;
  border-radius: 10px;
}

/*end map*/
/* Slideshow */
.slideshow img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-top: 60px;
}

.owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.picture-display {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 60px;
  margin: 30px 0;
}

.picture-display .img-1x2 {
  aspect-ratio: 1 / 2;
  width: 30%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.picture-display .img-1x2:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Single square image - center & style */
.single-square {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.single-square img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-square img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/*End Slideshow */
/*dealerlist*/
.dealerlist_section {
  font-family: 'Noto Sans TC', sans-serif;
  background-color: #f8f8f8;
  padding: 20px;
  color: #333;
}

.dealerlist_section h1 {
  color: #2c3e50;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 10px;
  font-size: 2rem;
  text-align: center;
  margin-top: 60px;
}

.dealerlist_section h2 {
  margin-top: 30px;
  color: #34495e;
  font-size: 1.5rem;
}

.dealerlist_section ol {
  margin-top: 10px;
  line-height: 1.8;
  padding-left: 1.2rem;
}

.dealerlist_table_wrapper {
  width: 100%;
  overflow-x: auto;
}

.dealerlist_section table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
}

.dealerlist_section th,
.dealerlist_section td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 12px;
  font-size: 1rem;
}

.dealerlist_section th {
  background-color: #2c3e50;
  color: #fff;
}

.dealerlist_section a {
  color: #2980b9;
  text-decoration: none;
}

.dealerlist_section a:hover {
  text-decoration: underline;
}

#dealerlisttable {
  width: 95%;
  border-collapse: collapse;
  min-width: 0px;
  margin: 0 auto;
  margin-bottom: 10px;

  /* 保持結構清晰 */
}

.dealerlist_section table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

.table-container {
  overflow-x: auto;
  max-width: 100%;
}

#dealerlisttable th,
#dealerlisttable td {
  padding: 12px;
  border: 1px solid #ccc;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}



#dealerlisttable tbody tr:nth-child(2) {
  background-color: #f0f0f0;
}

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