@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;600;700&display=swap");

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

/* ::-webkit-scrollbar{
  display: none;
} */

body {
  font-family: "Kanit", sans-serif!important;
  background-color: #ffffff;
  line-height: 1.5;
  /* overflow-x:hidden!important; */
}

.logo img {
  max-height: 50px;
}

.about-sec {
  height: fit-content;
}

.blue-btn {
  position: relative;
  font-size: 17px;
  padding: .7em 2.7em;
  font-weight: 500;
  background-color: #104686!important;
  color: #ffffff;
  border: none;
  border-radius: 0.6em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.blue-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: inherit;
}

.blue-btn:hover::before {
  opacity: 1;
}

.blue-btn .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.6em;
  background-image: linear-gradient(rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.05));
  pointer-events: none;
  z-index: 1;
}

.blue-btn .label {
  position: relative;
  z-index: 3;
}

.blue-btn .transition {
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  background-color: rgba(58, 59, 59, 0.936);
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
 background-position: cover;

}

.blue-btn:hover .transition {
  width: 15em;
  height: 15em;
}

.blue-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(105, 105, 105, 0.08), 0 4px 12px rgba(16, 70, 134, 0.6);
  background-color: #14427a;
  color: #ffffff !important;
}

.blue-btn:active {
  transform: scale(0.97);
}

.white-btn:active {
  background-color: rgb(255, 255, 255) !important;
  border-color: rgb(255, 255, 255) !important;
}

.white-btn {
  position: relative;
  background-color: #f9f9f9;
  color: #212529;
  font-weight: 500;
  padding: 0.75em 2em;
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.white-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.04);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.white-btn:hover::before {
  opacity: 1;
}

.white-btn .label {
  position: relative;
  z-index: 2;
}

.white-btn .ripple {
  background-color: #14427a;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.white-btn:hover .ripple {
  width: 14em;
  height: 14em;
}

.white-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  color: #ffffff;
}

.white-btn:active {
  transform: scale(0.97);
}


.navbar-wrapper {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 1000;
  overflow-x: visible !important;
}

.navbar-wrapper .container {
  height: 100%;
  display: flex;
  align-items: center;
  overflow-x: visible !important;
}

.navitem {
  text-decoration: none;
  font-size: 16px;
  color: #454545;
  font-weight: 600;
  transition: color 0.2s ease-in;
}

.nav-item {
  position: relative;
  color: rgba(16, 70, 134, 1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgba(16, 70, 134, 1);
  transition: width 0.4s ease;
}

.nav-item:hover {
  color: rgba(16, 70, 134, 1);
}

.nav-item:hover::after {
  width: 100%;
}

.navitem:hover {
  color: rgba(16, 70, 134, 1);
}

/* .nav-item:hover{
   color: rgba(16, 70, 134, 1);
   text-decoration: underline!important;
   transition: all 0.9s ease-in;
} */

.nav-links li {
  list-style: none;
}

.icons i {
  font-size: 23px;
}

.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
  /* overflow-x: visible !important; */
}
.hamburger i ::before{
  
}

.mobile-menu {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  transition: max-height 0.4s ease;
  overflow-x: visible !important;
}

.mobile-menu.active {
  max-height: 100vh;
  padding: 2rem;
}

.mobile-menu .mobile-nav-links,
.mobile-menu .mobile-icons {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-links,
.mobile-menu.active .mobile-icons {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-links li {
  margin-bottom: 10px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.hero-section {
  background-image: url("assets/images/slider1.png");
  background-size: cover;
  background-position: center;
  height: 80vh;
  padding: 3rem 0;

}

.text-align{
  text-align:justify;
}

/* .hero-wrapper{
   overflow-x:visible!important;
} */
/* .hero-slider{
  overflow-x:visible!important;
} */
.swiper-wrapper {
  overflow-x: visible !important;
}

/* .swiper-slide{
  overflow-x:visible!important;
} */
.slide-img {
  overflow-x: visible !important;
}

.slide-gradient {
  overflow-x: visible !important;
}


.mobile-icons img {
  height: 28px;
  width: 28px;
}

.swiper-wrapper {
  /* transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55) !important; */
  margin-top: 100px;
}

.hero-slider {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  color: white;
  z-index: 10;
  max-width: 600px;
  text-align: right;
}

.swiper-pagination.custom-outside-pagination {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}

.swiper-pagination-bullet {
  background: #999 !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 999px !important;
  opacity: 0.5 !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  width: 36px !important;
  background-color: rgba(16, 70, 134, 1) !important;
  opacity: 1 !important;
}

.slide-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(11, 36, 86, 0.877) 30%, rgba(0, 123, 255, 0) 60%);
  z-index: 2;
  pointer-events: none;
}

.products-btn {
  background-color: rgba(16, 70, 134, 1);
}

.bg-blue {
  background-color: rgba(16, 70, 134, 1)!important;
}

.text-blue{
  color: rgba(16, 70, 134, 1);
}
.border-blue{
 border:1px solid rgba(16, 70, 134, 1);
/* box-shadow: 0 8px 30px rgba(22, 93, 180, 0.332); */
}


.arrival-sec {
  background-image: url("assets/images/arrivalimg.png");
  background-size: cover;
  background-position: center;
  height: 50vh;
}

.arrivel-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 36, 86, 0.877) 30%, rgba(0, 123, 255, 0) 60%);
  z-index: 2;
  pointer-events: none;

}

.arrivel-text {
  z-index: 5;
}

.solution-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.solution-card img.bg-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.solution-card:hover img.bg-image {
  transform: scale(1.1);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(16, 69, 134, 0.795) 45%, rgba(40, 66, 93, 0.433) 85%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  transition: background-color 0.3s ease;
  object-fit: cover;
}

.solution-overlay img {
  width: 50px;
  margin-bottom: 10px;
}

/* .solutions-icon{
  transform: scale(150%);
} */

.solution-para {
  display: none;
}

.solution-card:hover .solution-para {
  display: block;
}

.Solutions-row {
  display: flex;
  width: 100%;
  height: 400px;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.solution-col1,
.solution-col2,
.solution-col3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: flex 0.4s ease;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  min-width: 0;
}

.solution-col1:hover,
.solution-col2:hover,
.solution-col3:hover {
  flex: 2;
}

.solution-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.bg-image {
  width: 100%;
  height: 190%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-col1:hover .solution-card img,
.solution-col2:hover .solution-card img,
.solution-col3:hover .solution-card img {
  transform: scale(1.05);
  object-fit: cover;
}

.solutions3 {
  transform: scale(2);
  object-fit: cover;
}

.solutions2 {
  transform: scale(2);
  object-fit: cover;
}

.solutions1 {
  transform: scale(2);
  object-fit: cover;
}

/* .solution-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 70, 134, 0.7);
  color: white;
  padding: 1rem;
  z-index: 1;
  transition: background 0.3s ease;
} */

.solution-overlay h5,
.solution-overlay p {
  margin: 0;
}

.submit-btn:active {
  background-color: #14427a !important;

}

.ftr-bg {
  background-color: rgba(243, 248, 255, 1);
}

.ftr-item a {
  text-decoration: none;
  font-size: 18px;
  color: #282828;
  font-weight: 600;
  transition: color 0.2s ease-in;
}

.ftr-links li:hover a {
  color: #0d3a6f;
}

.ftr-links li {
  list-style: none;
}

.product-sec:hover .product-img {
  transform: scale(125%);
  transition: all 0.5s ease;
}

.product-sec {
  z-index: 0;
}

.product-main-sec{
  margin-top:80px!important;
}


.quote-icon-wrapper {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 1000 !important;
}

.quote-circle {
  width: 60px;
  height: 60px;
  background-color: #0d3a6f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000 !important;
}

.quote-circle img {
  width: 14px;
  height: 14px;
  z-index: 1000 !important;
}

.testi-heading{
}

.testimonial-section {
  padding: 5px 20px;
  max-width: 1440px;
  margin: auto;
}

.testimonial-swiper .swiper-wrapper {
  padding: 20px 0;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  width: 375px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
  overflow: visible;
  margin-top: -50px;
}

.quote-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.stars img {
  width: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width:350px) and (min-width:320px) {

  .testimonial-card{
    width:215px!important;
  }

  .quote-circle{
    display: none!important;
  }

  .avatar {
  width: 50px;
  height: 50px;
}
}

@media (max-width:385px) and (min-width:375px) {
      .testimonial-card{
    width:308px!important;
  }

  .quote-circle{
    display: none!important;
  } 
  
  .testimonial-section {
    padding: 0px 0px;
}
}


@media (max-width:395px) and (min-width:388px) {
      .testimonial-card{
    width:330px!important;
  }

  .quote-circle{
    display: none!important;
  } 
  
  .testimonial-section {
    padding: 0px 0px;
}
}

@media (max-width:370px) and (min-width:355px) {
      .testimonial-card{
    width:292px!important;
  }

  .quote-circle{
    display: none!important;
  } 
  
  .testimonial-section {
    padding: 0px 0px;
}
}

@media (max-width:420px) and (min-width:400px) {
      .testimonial-card{
    width:348px!important;
  }

  .quote-circle{
    display: none!important;
  } 
  
  .testimonial-section {
    padding: 0px 0px;
}
}

@media (max-width:450px) and (min-width:421px) {
      .testimonial-card{
    width:358px!important;
  }

  .quote-circle{
    display: none!important;
  } 
  
  .testimonial-section {
    padding: 0px 0px;
}
}


@media (max-width:820px) and (min-width:700px) {

  .testimonial-card{
    width:282px!important;
  }

  /* .quote-circle{
    display: none!important;
  } */
}

@media (max-width:1024px) and (min-width:910px) {

  .testimonial-card{
    width:252px!important;
  }
}


@media (width:768px) {
  .Solutions-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 0%;
    justify-content: center;
    gap: 3px;
  }

  .solution-card:hover .solution-para {
    display: none;
  }
}

@media (max-width:700px) and (min-width:320px) {
  .Solutions-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 0%;
    justify-content: center;
    gap: 2px;
    overflow: hidden;
  }

  .border-3 {
    border: 0px !important;
  }

}