html,
body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Lato", sans-serif;
  background: #f7f7f7;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.main-header {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.header-top {
  width: 100%;
  background: #14183e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-flex {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-contact a {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.top-contact a i {
  margin-right: 6px;  
  color: #fff;
  font-size: 14px;
}

.top-contact a:hover {
  opacity: 0.65;
}

.top-location {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.top-location i {
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
}

.top-location:hover {
  opacity: 0.65;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-social a {
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s ease;
}

.top-social a i {
  margin-right: 0;
  color: #fff;
  font-size: 14px;
}

.top-social a:hover {
  opacity: 0.65;
}
.co_name {
  color: #14183e;
  font-size: 28px;
  font-weight: 700;
}

.header-upper {
  width: 100%;
  background: #ffffff;
  padding: 18px 0;
}

.upper-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: auto;
}

.header-info {
  display: flex;
  align-items: center;
}

.navbar {
  flex: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: flex;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #14183e;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.nav-menu li a,
.nav-menu li a.active {
  color: #14183e;
  transition: 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active:hover {
  color: #3450a3;
}

.nav-menu li.dropdown {
  position: relative;
}

.nav-menu > li.dropdown > a i {
  margin-left: 8px;
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 360px;
  background: #3450a3;
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.4s ease;
  color: #fff;
}

.nav-menu li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a,
.sub-menu li a {
  display: flex !important;
  align-items: center;
  justify-content: space-between !important;
  width: 100%;
  color: #fff;
  font-size: 12px !important;
}
.view-all-category {
  padding: 14px 18px;
}

.view-all-category a {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  width: 100%;
  background: #fff;
  color: #14183e !important;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.view-all-category a i {
  color: #14183e !important;
  transition: 0.3s ease;
}

.view-all-category a:hover {
  background: #fff !important;
  color: #3450a3 !important;
}

.view-all-category a:hover i {
  color: #3450a3 !important;
}
.nav-menu li.dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dropdown-menu li a:hover {
  background: #1e3690;
  color: #fff;
}

.has-submenu {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  background: #3450a3;
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: 0.3s ease;
}

.has-submenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-menu li a {
  color: #fff;
}

.sub-menu li a:hover {
  background: #162c75;
}

.menu-toggle {
  display: none;
}

.scroll-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease;
}

.scroll-sticky-nav.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-nav-wrap {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-logo .co_name {
  color: #14183e;
  font-size: 28px;
  font-weight: 700;
}

.sticky-menu {
  display: flex;
  align-items: center;
}

.sticky-menu li {
  position: relative;
  list-style: none;
}

.sticky-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #14183e;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.nav-menu > li > a,
.sticky-menu > .nav-wrap .nav-menu > li > a {
  position: relative;
}

.nav-menu > li > a::after,
.sticky-menu > .nav-wrap .nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 10px;
  height: 2px;
  background: #14183e;
  border-radius: 50px;
  transform: scaleX(0);
  transition: 0.35s ease;
}

.nav-menu > li > a.active::after,
.sticky-menu > .nav-wrap .nav-menu > li > a.active::after {
  transform: scaleX(1);
}
.sticky-menu li a:hover,
.sticky-menu li a.active:hover {
  color: #3450a3;
}

.sticky-menu li a.active {
  color: #14183e;
}
.sticky-menu li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-menu > li.dropdown > a i {
  margin-left: 8px;
  font-size: 12px;
}

.scroll-sticky-nav .dropdown-menu li:not(.view-all-category) a,
.scroll-sticky-nav .dropdown-menu li:not(.view-all-category) a i,
.scroll-sticky-nav .sub-menu li a,
.scroll-sticky-nav .sub-menu li a i {
  color: #fff !important;
}

.scroll-sticky-nav .dropdown-menu li:not(.view-all-category) a:hover,
.scroll-sticky-nav .sub-menu li a:hover {
  color: #fff !important;
}

.scroll-sticky-nav .view-all-category a,
.scroll-sticky-nav .view-all-category a i {
  color: #14183e !important;
}

.scroll-sticky-nav .view-all-category a:hover,
.scroll-sticky-nav .view-all-category a:hover i {
  color: #3450a3 !important;
}

.hero-slider {
  background: #f4f7fd;
  padding: 35px 0;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  /* height: 560px; */
  position: relative;
}

.slide {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto;
}

.slick-slide > div {
  height: 100%;
}

.card-slider {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 80px;
}

.product-card {
  width: 32%;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}

.product-card:hover img {
  transform: scale(1.08);
}

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  color: #fff;
}

.card-content h3 {
  margin-bottom: 12px;
}

.card-content a {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  display: inline-block;
  padding: 12px 22px;
  background: #14183e;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.product-card:hover a {
  opacity: 1;
  transform: translateY(0);
}

.slider-arrows {
  position: absolute;
  top: 42%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 99;
}

.arrow {
  position: absolute;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #2c58a5;
}
.about-grid-section {
  max-width: 1280px;
  margin: auto;
  padding: 60px 20px;
}

.about-grid-head {
  text-align: center;
}

.about-grid-title {
  font-size: 36px;
  color: #14183e;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-grid-description {
  max-width: 950px;
  margin: auto;
}

.about-grid-description p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  color: #666;
  margin-bottom: 20px;
}

.about-grid-description p:last-child {
  margin-bottom: 0;
}

.projects-section {
  background: url("https://blocks.astratic.com/img/general-img-landscape.png")
    center/cover no-repeat;
  padding: 60px 5%;
  position: relative;
  color: #fff;
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.project-card .overlay span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 3px;
}

.product-desc {
  margin: 10px auto 30px;
  text-align: center;
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.89;
  margin-top: 50px;
}
.projects-section .container {
  position: relative;
  z-index: 2;
}

.project-header {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}
.project-header .left {
  text-align: center;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.project-header .left h2 {
  font-size: 42px;
  line-height: 1.3;
}

.project-header .right {
  max-width: 450px;
}

.project-header .right p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ccc;
}

.btn-project {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff, #f4c430);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
}

.project-card {
  position: relative;
  overflow: hidden;
  height: 650px;
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s ease;
  z-index: 1;
}

.project-card:hover::before {
  transform: scaleY(1);
}

.project-slider {
  margin-top: 40px;
  width: 70%;
  margin-left: auto;
}

.project-slider .slick-track {
  display: flex !important;
}

.project-slider .slick-slide {
  height: auto;
  display: flex !important;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s ease;
}
.project-card:hover img {
  filter: blur(4px) brightness(0.6);
  transform: scale(1.1);
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.5s ease;
  z-index: 1;
}
.project-card:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 20px;
  z-index: 2;
  transition: all 0.4s ease;
}
.project-card:hover .overlay {
  transform: translateY(-10px);
}

.project-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

.project-card span {
  font-size: 14px;
  color: #fff;
  font-weight: 800;
}
.inquiry-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #14183e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.project-card:hover .inquiry-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-btn {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.35s ease;
  background: transparent;
  opacity: 0.89;
}

.product-btn:hover {
  background: #14183e;
  color: #fff;
  border: 0;
}

.contact-section-wrapper {
  background-color: #14183e;
  color: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-main-box {
  width: 100%;
  max-width: 1140px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}
.quick-links-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 50px;
}

.quick-link-text {
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  width: fit-content;
}

.quick-link-text:hover {
  transform: translateX(8px);
  text-decoration: underline;
}

.contact-info-block {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  text-decoration: none;
}
.contact-info-block :hover {
  text-decoration: underline;
}

.contact-info-block i {
  color: #fff;
  font-size: 18px;
  margin-top: 4px;
}

.contact-info-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}

.contact-social-grid {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.contact-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
}

.fb-color {
  background: #fff;
  border-radius: 50%;
  color: #000;
}
.tw-color {
  background: #fff;
  border-radius: 50%;
  color: #000;
}
.insta-color {
  background: #fff;
  border-radius: 50%;
  color: #000;
}
.ln-color {
  background: #fff;
  border-radius: 50%;
  color: #000;
}

.footer-bottom-line {
  width: 100%;
  border-top: 1px solid #5f6062;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f2ea;
  font-size: 14px;
  color: #333;
  background-color: #14183e;
}

.footer-left {
  color: #fff;
}

.company-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: 0.3s ease;
}

.company-link:hover {
  color: #5f6062;
}
.footer-right {
  color: #fff;
}
.trade-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: 0.3s ease;
}

.trade-link:hover {
  color: #5f6062;
}
.map-box {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.map-box a {
  position: absolute;
  inset: 0;
  z-index: 5;
}

@media (max-width: 768px) {
  .topbar-flex {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .top-location,
  .top-social {
    display: none;
  }

  .top-contact {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .top-contact a {
    font-size: 12px;
  }

  .scroll-sticky-nav {
    display: none !important;
  }

  .header-upper {
    padding: 14px 0;
  }

  .upper-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .co_name {
    font-size: 24px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 24px;
    color: #14183e;
    cursor: pointer;
  }

  .nav-wrap {
    position: relative;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 100001;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 55px;
    left: auto;
    right: -20px;
    width: 100vw;
    background: #3450a3;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    position: relative;
  }

  .nav-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 18px;
    color: #fff !important;
    border-bottom: 0px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu > li > a {
    width: fit-content;
    position: relative;
  }

  .nav-menu > li > a::after {
    content: "";
    position: absolute;
    left: 18px !important;
    right: 18px !important;
    bottom: 8px;
    height: 2px;
    background: #fff !important;
    border-radius: 50px;
    transform: scaleX(0);
    transition: 0.35s ease;
  }

  .dropdown-menu,
  .sub-menu {
    display: none;
    position: static;
    width: 100%;
    background: #28479b;
  }

  .dropdown.active > .dropdown-menu,
  .has-submenu.active > .sub-menu {
    display: block;
  }

  .view-all-category {
    padding: 12px;
  }

  .view-all-category a {
    background: #fff;
    color: #14183e !important;
    border-radius: 8px;
  }

  .view-all-category a i {
    color: #14183e !important;
  }

  .slider-wrapper {
    height: auto !important;
  }

  .card-slider {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 15px !important;
    -webkit-overflow-scrolling: touch;
  }

  .card-slider::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-width: 100% !important;
    width: 100% !important;
    height: 420px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .slider-arrows,
  .slider-dots {
    display: none !important;
  }
  .card-content a {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: inline-block;
  }

  .about-grid-section {
    padding: 60px 15px;
  }

  .about-grid-title {
    font-size: 28px;
  }

  .about-grid-description p {
    font-size: 15px;
    line-height: 28px;
  }
  .project-header .left h2 {
    font-size: 25px;
    margin-top: 10px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    height: 400px;
  }

  .quick-links-box {
    gap: 18px;
    margin-top: 25px;
  }

  .quick-link-text {
    font-size: 15px;
  }
  .contact-main-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-section-wrapper {
    padding: 60px 20px;
  }
  .contact-section-title {
    font-size: 25px;
  }
  .contact-info-block i {
    font-size: 16px;
  }
  .contact-social-link {
    width: 32px;
    height: 32px;
  }
  .footer-left {
    font-size: 13px;
  }
  .footer-right {
    font-size: 13px;
  }
  .footer-bottom-line {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
