@font-face {
  font-family: "PlayfairDisplay-Bold";
  src: url(../fonts/PlayfairDisplay-Bold.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PlayfairDisplay-Regular";
  src: url(../fonts/PlayfairDisplay-Regular.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.woff2) format("woff2");
  font-display: swap;
}

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

:root {
  --primary-color: #035183;
  --secondary-color: #545557;
  --white-color: #fff;
  --black-color: #000;
  --para-text-color: #545557;
  --transition: 0.3s ease-in;
  --PlayfairDisplay-Bold: "PlayfairDisplay-Bold";
  --PlayfairDisplay-Regular: "PlayfairDisplay-Regular";
  --Poppins-Regular: "Poppins-Regular";
}

html {
  scroll-behavior: smooth;
}

body {
  transition: var(--transition);
  color: var(--para-text-color);
  font-family: var(--Poppins-Regular);
}

img {
  max-width: 100%;
  height: auto;
  transition: var(--transition);
}

svg {
  width: 30px;
  transition: var(--transition);
}

a,
button {
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  color: #1d424b;
  font-family: var(--Poppins-Regular);
}

p {
  color: var(--para-text-color);
  transition: var(--transition);
  font-family: var(--Poppins-Regular);
  line-height: 1.6;
}

h1,
h2,
h3 {
  transition: var(--transition);
  font-family: var(--PlayfairDisplay-Bold);
}

h4,
h5,
h6 {
  transition: var(--transition);
  font-family: var(--PlayfairDisplay-Regular);
}

h1 {
  font-size: 2.5rem;
  text-transform: capitalize;
}

h2 {
  font-size: 2rem;
  text-transform: capitalize;
}

h3 {
  font-size: 1.75rem;
  text-transform: capitalize;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

ul {
  list-style: none;
  margin: 1em 0;
  padding-left: 0;
}

li {
  margin-bottom: 0.5rem;
  font-family: var(--PlayfairDisplay-Regular);
  transition: var(--transition);
}

i {
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: unset;
}

.input-wrapper {
  margin-bottom: 20px;
}

.container {
  max-width: 1280px;
}

.swiper-container {
  overflow: hidden;
}

.button-style1 {
  display: inline-block;
  background-color: #1d424b;
  color: var(--white-color);
  padding: 8px 22px;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.button-style1:hover {
  background-color: #f2b658;
  color: var(--white-color);
  border: 1px solid var(--black-color);
  transform: scale(1.03) translateY(-1px);
}

.button-style2 {
  border: 1px solid #1d424b;
  border-radius: 50px;
  padding: 10px 20px;
  text-align: center;
  transition: var(--transition);
}

.button-style2:hover {
  color: var(--white-color);
  border-color: #1d424b;
  background-color: #1d424b;
  transform: translateY(-3px);
}

ul.dropdown-menu {
  padding: 0;
  border-radius: 0;
  border: 0;
  display: none;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.section-padding {
  padding: 5rem 0;
}

.section-heading .title {
  font-size: 2.3rem;
  color: #f2b658;
  text-transform: capitalize;
}

.primary-text {
  color: var(--primary-color);
}

.header.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  animation: slidetop 0.5s linear;
  box-shadow: 1px 2px 3px #0000001c;
  background-color: #1d424b;
}

@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

.toggle-icon {
  display: none;
}

nav.breadcrum-area {
  padding: 30px 70px;
  height: 400px;
  position: relative;
  align-content: center;
  color: var(--white-color);
}

nav.breadcrum-area:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(45deg, #000000, transparent);
  height: 100%;
  z-index: 0;
}

nav.breadcrum-area h2 {
  font-size: 3rem;
  color: var(--white-color);
  position: relative;
  font-weight: 600;
  max-width: 90%;
  z-index: 2;
}

nav.breadcrum-area ul {
  position: relative;
  z-index: 1;
  background-color: rgb(242 242 242 / 62%);
  padding: 7px 26px;
  width: max-content;
  border: 1px solid #e8e8e80a;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.breadcrumb-item.active {
  color: rgb(0 0 0 / 75%);
}

nav.breadcrum-area ul li {
  margin-bottom: 0;
}

#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  background-color: #1d424b;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 16px;
  z-index: 9999;
}

#goToTopBtn:hover {
  background-color: var(--secondary-color);
}

/* ----- Header --------- */

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

.header .logo-area img {
  /* width: 100%; */
  height: auto;
}

header.header {
  padding: 6px 0;
  background: #1d424b;
}

.header .wrapper .navigation nav ul {
  display: flex;
  gap: 0 20px;
  align-items: center;
  margin: 0;
}

.header .wrapper .navigation nav ul li {
  margin-bottom: 0;
  position: relative;
}

.header .wrapper .navigation nav ul li a {
  text-transform: capitalize;
  font-family: var(--PlayfairDisplay-Regular);
  font-weight: 600;
  color: #ffffff;
  padding: 10px;
}

.header .wrapper .navigation nav ul li.active a,
.header .wrapper .navigation nav ul li:hover a {
  color: #febd59;
}

/* -------- Hero Section ----------- */

.hero-slider .swiper-slide {
  height: 500px;
  background-color: #0000009c;
  background-blend-mode: color;
}

.hero-slider .swiper-slide .container {
  height: 100%;
}

.hero-slider .swiper-slide .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 0;
}

.hero-slider .swiper-slide .content .title {
  color: var(--white-color);
  font-size: 3rem;
  font-family: var(--PlayfairDisplay-Bold);
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.hero-slider .swiper-slide .hero-categories ul {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 10px 0;
}

.hero-slider .swiper-slide .hero-categories ul li a {
  background-color: #1d424b;
  color: var(--white-color);
  font-size: 1.6rem;
  padding: 10px 30px;
  font-family: var(--PlayfairDisplay-Regular);
  width: 100%;
}

.hero-slider .swiper-slide .hero-categories ul li:hover {
  transform: translateY(-4px);
}

.hero-slider .swiper-slide .hero-categories ul li a:hover {
  background-color: #febd59;
  color: #1d424b;
}

.hero-slider .swiper-slide .hero-categories ul li {
  margin-bottom: 0;
}

/* ------ Mision Vision ------ */

.mision-vision {
  background-image: url(../images/mission-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.mision-vision::before {
  background-color: #e6e6e6eb;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.service-includes .wrapper ul li ul li {
  width: 100%;
  margin-bottom: 0;
  padding: 5px;
  list-style: disc;
  margin-left: 22px;
}

.mision-vision .inner {
  background-color: #1d424b;
  padding: 40px 20px;
  border-bottom: 4px solid #1d424b;
  text-align: center;
  height: auto;
  transition: var(--transition);
  border-radius: 24px;
  margin: 0 0 25px;
}

.mision-vision .inner:hover {
  border-bottom: 4px solid #1d424b;
  background-color: #febd55;
  filter: brightness(1);
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.mision-vision .inner:hover img {
  filter: brightness(5);
  transform: rotateY(180deg);
  transition: 0.4s ease-in-out
}

.mision-vision .inner img {
  margin-bottom: 20px;
  width: 60px;
}

.mision-vision .inner p {
  color: var(--white-color);
}

.mision-vision .container {
  position: relative;
}

.about-section .image-wrapper {
  position: sticky;
  top: 18%;
}

.brans-slider .swiper-slide {
  text-align: center;
}

.brand-slider .swiper-slide {
  text-align: center;
}


.who-we-work ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: white;
}

.who-we-work ul li img {
  width: 35px;
}

.who-we-work ul li:hover img {
  filter: brightness(2);
  transform: rotateY(180deg);
}

.who-we-work ul li {
  font-size: 1.1rem;
  font-family: var(--PlayfairDisplay-Regular);
}

.who-we-work .image-area img {
/*   max-height: 370px; */
  width: 90%;
  object-fit: cover;
}

.who-we-work .image-area {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.who-we-work .image-area::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.5s linear;
  z-index: 1;
}

.who-we-work .image-area:hover:after {
  height: 250%;
  background: transparent;
}

.who-we-work .image-area:hover img {
  transform: scale(1.02);
}

.brand-slider .swiper-slide img:hover {
  transform: scale(1.03);
}

/* ---------- Member --------- */

.members {
  background-image: url(../images/brands-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.members .container {
  position: relative;
}

.members::before {
  background-color: #ffffffe0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.members .wrapper .item {
  padding: 10px;
}

/* -------- Footer ---------- */

.footer {
  background-color: #1d424b;
  color: var(--white-color);
  padding: 3rem 0 0;
}

.footer h4 {
  font-size: 1.8rem;
  font-weight: 600;
}

.footer-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.footer-link ul li a {
  color: var(--white-color);
}

.footer-link ul li {
  width: 28%;
}

.footer-link {
  text-align: center;
}

.footer-link .social-media ul {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.footer .copyright {
  padding-bottom: 12px;
  padding-top: 20px;
  border-top: 2px solid #7aa3bd;
  margin-top: 20px;
}

.footer-link .social-media ul li {
  background-color: var(--white-color);
  width: auto;
  border-radius: 50%;
  margin-bottom: 0;
  line-height: 35px;
  transition: var(--transition);
}

.footer-link .social-media ul li:hover {
  transform: translateY(-4px);
}

.footer-link .social-media ul li i {
  color: #1d424b;
}

.footer-link .social-media ul li:hover {
  background-color: var(--secondary-color);
}

.footer-link .social-media ul li:hover i {
  color: var(--white-color);
}

.footer-link .social-media ul li a {
  width: 35px;
  height: 35px;
  text-align: center;
}

.footer-logo {
  text-align: center;
  color: var(--white-color);
}

.footer-logo p {
  color: var(--white-color);
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-contact h4 {
  font-size: 1.8rem;
  font-weight: 600;
}

.footer-contact {
  padding-left: 10px;
}

.footer-contact ul li span {
  text-align: center;
}

.footer-contact ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-contact {
  padding-left: 0;
}

.footer-contact ul li a {
  color: var(--white-color);
}

.footer-contact ul li span i {
  background-color: var(--white-color);
  color: var(--secondary-color);
  padding: 5px 5px;
  border-radius: 50%;
  min-width: 26px;
}

/* ---------- About Us ----------- */

.about-section .image-area {
  position: relative;
}

.about-section .image-area .verticle-heading {
  position: absolute;
  right: 0;
  top: 0;
  width: 170px;
  height: 250px;
  background-color: #1d424b;
}

.about-section .image-area .verticle-heading h2 {
  padding: 40px;
  color: var(--white-color);
  font-size: 3rem;
}

.approach-content {
  background: #1d424b;
}

.approach-content .content-area .item {
  border-bottom: 1px solid #eab258;
  transition: var(--transition);
  position: relative;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.approach-content .content-area .item p {
  margin-bottom: 0;
}

.approach-content .content-area .item:after {
  content: "";
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  position: absolute;
  z-index: -1;
  transition: var(--transition);
}

.approach-content .content-area .item:hover {
  box-shadow: 1px 2px 3px #00000033;
  transform: translateY(-6px);
}

.approach-content .content-area .item h5 {
  color: #f2b658;
  font-size: 1.3rem;
}

.approach-content .content-area .item p {
  color: var(--white-color);
}

.what-we-do ul li {
  position: relative;
  margin-left: 1.5rem;
  margin-bottom: 12px;
}

.what-we-do ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -28px;
  top: 10%;
  background-color: #1d424b;
  color: var(--white-color);
  border-radius: 50%;
  width: 21px;
  aspect-ratio: 1 / 1;
  text-align: center;
  font-size: 0.6rem;
  line-height: 21px;
}

.what-we-do ul li h4 {
  color: #1d424b;
  font-size: 1.2rem;
  font-weight: 600;
}

.services-listing-wrapper.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px 13px;
  background-color: unset;
  background-image: url();
}

.services-listing-wrapper.services-section .item.image-area {
  width: 49%;
}

.services-section .image-area .image-wrapper {
  position: relative;
}

.services-section-page .image-area .image-wrapper .text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 5px;
  width: 90%;
}

.link-button {
  color: var(--primary-color);
  text-decoration: underline;
  text-transform: capitalize;
}

.services-section .image-area .image-wrapper img {
  border-radius: 4px;
  max-height: 390px;
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.services-section .image-area .image-wrapper img:hover {
  transform: scale(1.03);
}

.service-detail-content .wrapper {
  display: flex;
  flex-wrap: wrap;
}

.service-detail-content .wrapper .inner {
  text-align: center;
  box-shadow: rgb(0 0 0 / 4%) 0px 20px 25px -5px,
    rgb(149 149 149 / 44%) 0px 10px 10px -5px, -10px -8px #eeeeee26;
  border-radius: 5px;
  padding: 30px 20px;
  margin-top: 20px;
  transition: var(--transition);
  background-color: var(--white-color);
}

.service-detail-content .wrapper .inner img {
  border-radius: 50%;
  background-color: var(--white-color);
  margin-bottom: 16px;
  padding: 10px;
  width: 90px;
}

.flip-container {
  perspective: 1000px;
  width: 300px;
  height: 300px;
  position: relative;
}

.flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.flip-container-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.flip-container:hover .flipper {
  transform: rotateY(180deg);
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.front img {
  width: 80px;
}

.front h4 {
  color: #ffffff;
}

.front {
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 4%) 0px 20px 25px -5px,
    rgb(149 149 149 / 44%) 0px 10px 10px -5px, -10px -8px #eeeeee26;
  border-radius: 2px;
  background-color: #1d424b;
  border-radius: 20px;
}

.back {
  background: #f2b658;
  transform: rotateY(180deg);
  box-shadow: rgb(0 0 0 / 4%) 0px 20px 25px -5px,
    rgb(149 149 149 / 44%) 0px 10px 10px -5px, -10px -8px #eeeeee26;
  border-radius: 20px;
}

.back h4,
.back p {
  color: var(--white-color);
}

.connect-section {
  overflow: hidden;
  box-shadow: -1px 0px 3px #00000045;
}

.connect-section .image-area {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 50%;
}

.contact-info .single-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  max-width: 450px;
}

.contact-section .form-area {
  padding: 60px 50px;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: rgb(0 0 0 / 4%) 0px 20px 25px -5px,
    rgb(149 149 149 / 44%) 0px 10px 10px -5px, -10px -8px #eeeeee26;
}

.brand-slider .swiper-slide img {
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 5px;
  aspect-ratio: 16/9;
}

.contact-section .form-area .input-wrapper svg {
  position: absolute;
  left: 12px;
  top: 11px;
  width: 25px;
  display: none;
}

.form-control {
  padding: 12px 25px;
  padding-left: 40px;
  border-radius: 28px;
  background-color: var(--white-color);
  outline: none;
  border: 1px solid #eee;
  transition: border-color 0.3s ease;
}

.contact-section ul li:after {
  width: 0;
  height: 0;
  display: none;
}

.contact-section .social-icons li a {
  box-shadow: 1px 2px 3px #eee, -1px -1px 3px #eee;
  width: 50px;
}

.single-info:hover svg {
  animation: wobble_vertical 1s forwards ease-in-out 0s;
}

.social-icons li:hover {
  transform: translateY(-6px);
}

.single-info svg {
  background-color: #1d424b;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  transition: 0.4s ease-in;
  margin-right: 10px;
}

.social-icons li a {
  background-color: var(--white-color);
  padding-left: unset;
  padding: 10px;
  width: 37px;
  border-radius: 50%;
  display: inline-flex;
}

@keyframes wobble_vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.service-detail-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.service-detail-section ul li {
  margin-bottom: 0;
  position: relative;
  padding-left: 16px;
}

.news .content .item {
  box-shadow: 1px 2px 3px #eee;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  background-color: #eeeeee54;
  align-items: center;
}

.news .content .item .info {
  padding: 10px 0;
  width: calc(100% - 300px);
}

.news .content .item .info p {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news .content .item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news .content .item .image-area {
  width: 300px;
  overflow: hidden;
}

.news .content .item:hover .image-area img {
  transform: scale(1.03);
}

.news .content .item .date {
  font-size: 0.9rem;
}

.news .content .item .info a {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.verticle-heading {
  background-color: #1d424b;
  text-align: center;
  position: sticky;
  top: 17%;
}

.verticle-heading h3 {
  color: var(--white-color);
  padding: 10px;
  font-size: 3rem;
}

.about-section .content-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.about-section .content-area ul li {
  position: relative;
  margin-left: 1.5rem;
  margin-bottom: 12px;
}

.about-section .content-area ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -28px;
  top: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 21px;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  text-align: center;
  font-size: 0.6rem;
  line-height: 21px;
}

.about-section.single-service .image-area .verticle-heading h2 {
  font-size: 2rem;
  padding: 20px;
}

.service-includes {
  background-image: url(../images/glob-map.webp);
  background-color: var(--primary-color);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.service-includes .wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-includes .wrapper ul li {
  width: 49%;
  margin-top: 20px;
  background-color: var(--white-color);
  padding: 20px;
}

.service-includes .wrapper ul li h4 {
  color: #1d424b;
  font-weight: 600;
}

.service-includes .wrapper ul li p {
  margin-bottom: 0;
}


.news-detail-section .service-sidebar {
  position: sticky;
  top: 18%;
}

.service-sidebar .item {
  box-shadow: 1px 2px 3px #00000036, -1px -1px 3px #0000003d;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 2px;
}

.service-sidebar .item h4 {
  margin-bottom: 20px;
}

.service-sidebar h4 span {
  color: #1d424b;
}

.service-sidebar ul li.active a {
  background-color: #1d424b;
  color: var(--white-color);
}

.service-sidebar ul li a {
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 5px 14px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  border-radius: 5px;
}

.service-sidebar ul li a i {
  margin-right: 10px;
}

.service-sidebar ul {
  margin: 20px 0;
}

.news-detail-section .content-area ul li {
  position: relative;
  margin-left: 1.5rem;
  margin-bottom: 12px;
}

.news-detail-section .content-area ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -28px;
  top: 10%;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 21px;
  aspect-ratio: 1 / 1;
  text-align: center;
  font-size: 0.6rem;
  line-height: 21px;
}

.news-detail-section h1,
.news-detail-section h2,
.news-detail-section h3,
.news-detail-section h4 {
  color: #1d424b;
}

.header-translator select {
  width: auto;
  margin-left: 10px;
}

.form-select:focus {
  box-shadow: unset;
}

.map-section {
  display: flex;
  gap: 10px;
}

.map-section .wrapper {
  flex: 1;
  text-align: center;
}

.map-section .wrapper h3 {
  color: var(--white-color);
  font-size: 2rem;
  background-color: #1d424b;
  padding: 17px 0;
}

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


/* 01.09.2025 */
section.who-we-work.section-padding {
  background-color: #1d424b;
}

.about-section {
  padding: 60px 0;
  background-color: white;
}

.about-heading {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 500;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1d424b;
  line-height: 1.2;
  margin-bottom: 20px;
}

.content-text {
  /* font-size: 1.1rem; */
  /* color: #555; */
  /* margin-bottom: 25px; */
}

.content-text strong {
  color: #1d424b;
  font-weight: 600;
}

.ship-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  padding: 30px;
  color: white;
}

.overlay-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}


/* Swiper Custom Styling */
.swiper {
  padding: 20px 0 50px 0;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  width: 36px;
  height: 36px;
  background-color: #1d424b;
  border-radius: 50%;
  color: white;
  margin-top: -46px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #2a5a6b;
}

.swiper-pagination-bullet {
  background-color: #1d424b;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #1d424b;
}

section.Impor-Japan-sec.py-5 {
  background: #1d424b17;
}

.car-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.car-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgb(29 66 75);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 18px;
  color: white;
}

.image-count-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgb(29 66 75);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stock-badge {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
}

.thumbnail-gallery {
  margin-top: 15px;
}

.thumbnail-img {
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.thumbnail-img:hover {
  transform: scale(1.05);
  border-color: #1d424b;
}

.thumbnail-img.active {
  border-color: #1d424b;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.car-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f8f9fa;
  padding: 10px 15px;
  border-radius: 8px;
  margin: 5px;
  font-size: 1rem;
  color: #333;
}

.spec-icon {
  color: #1d424b;
  font-size: 1.1rem;
}

.price-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 10px;
}

.starting-price {
  background-color: #d4edda;
  color: #155724;
}

.average-price {
  background-color: #e9ecef;
  color: #495057;
}

.landed-costs-btn {
  background: #d2a657;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  width: 100%;
  transition: transform 0.3s ease;
}

.landed-costs-btn:hover {
  transform: translateY(-2px);
  background: #d2a657;
}

.auction-info {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.auction-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.auction-icon {
  color: #1d424b;
  font-size: 1.2rem;
  width: 20px;
}

.services-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: white;
  border-radius: 8px;
  transition: transform 0.3s ease;
  border: 1px solid #1d424b;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  color: #ffbe00;
  font-size: 1.8rem;
  margin-top: 5px;
}

.service-content h5 {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.service-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.contact-card {
  background-color: #1d424b21;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.phone-btn {
  background: #ffbe00;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.phone-btn:hover {
  transform: translateY(-2px);
  background: #1d424b;
}

.contact-form {
  background-color: #e2e7e8;
  border-radius: 10px;
  padding: 25px;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #1d424b;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.send-message-btn {
  background: #1d424b;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  width: 100%;
  transition: transform 0.3s ease;
}

.send-message-btn:hover {
  transform: translateY(-2px);
  background: #ffbe00;
}

.section-title {
  color: #1d424b;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.working-hours {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #666;
}

.hours-icon {
  color: #999;
  width: 16px;
}

button.btntext-white:hover {
  background: #febd59 !important;
}

button.btn.btn-dark.flex-fill {
  background: #fdbd59 !important;
}

button.btn.btn-dark:hover {
  background: #fdbd59 !important;
}

button.btn.btn-dark {
  background: #fdbd59 !important;
  border: 0px;
}

button.btn.flex-fill.text-white:hover {
  background: #fdbd59 !important;
}

a.btn-my {
  background: #1d424b;
  color: white;
  padding: 7px 20px;
  border-radius: 6px;
  margin: 0 0 15px;
}

a.btn-my:hover {
  background: #fdbd59 !important;
}

button.btn.px-4.py-3.text-white {
  background: #1d424b !important;
  padding: 8px 20px !important;
}

.view-btn {
  padding: 7px 28px !important;
  flex: none !important;
}

button.btn.btn-dark:hover {
  background: #dfac57 !important;
}

@media (max-width: 768px) {
  .car-title {
    font-size: 1.8rem;
  }

  .car-image {
    height: 300px;
  }

  .spec-badge {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}


.button-group a.view-btn {
  background: #1d424b !important;
  border-radius: 6px !important;
  color: white !important;
  border-radius: 9px;
  color: white;
}

.button-group a.view-btn:hover {
  background: #ffc107 !important
}

button.btn.btn-dark:hover {
  background: #1d424b !important;
}

button.btn.btn-two {
  background: #1d424b !important;
  color: white;
}

button.btn.btn-two:hover {
  background: #ffc107 !important
}

button.btn.btn-warning:hover {
  background: #1d424b;
  border: 1px solid #1d424b;
  color: white;
}


/* ========== Media Queries ========== */

@media screen and (max-width: 1200px) {
  .section-padding {
    padding: 3rem 0;
  }
}

@media screen and (max-width: 1150px) {
  .verticle-heading h3 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 1100px) {
  .footer-link ul li {
    width: 47%;
  }

  .hero-slider .swiper-slide .content .title {
    font-size: 2.85rem;
  }
}


@media screen and (max-width: 1080px) {
  .footer-link ul li {
    width: 100%;
  }
}


@media screen and (max-width: 1050px) {
  .hero-slider .swiper-slide .content .title {
    width: 80%;
  }
}


@media screen and (max-width: 991px) {
  .toggle-icon {
    display: inline-block;
    color: white;
  }

  .about-section .image-area img {
    width: 100%;
  }

  .news-detail-section .service-sidebar {
    position: unset;
    margin-top: 20px;
  }

  .service-sidebar .item {
    margin-bottom: 0;
  }

  .contact-section .form-area {
    padding: 40px;
    margin-top: 30px;
  }

  nav.breadcrum-area ul {
    max-width: 90%;
    flex-wrap: wrap;
    display: none;
  }

  .connect-section .image-area {
    display: none;
  }

  .service-includes .wrapper ul li {
    width: 100%;
  }

  .verticle-heading img {
    width: 100%;
  }

  .what-we-do img {
    display: none;
  }

  .approach-content .image {
    display: none;
  }

  .navbar-wrapper {
    order: 3;
  }

  .hero-slider .swiper-slide .content .title {
    font-size: 2.4rem;
  }

  .footer-link ul li {
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .header .wrapper .navigation nav {
    display: none;
  }

  .header-translator {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 , .main-title {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 , .footer-contact h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: 0.875rem;
  }

  .offcanvas nav ul li {
    border-bottom: 1px solid #cfcfcf;
  }

  .offcanvas nav ul li a {
    width: 100%;
    padding: 8px 10px;
  }

  button.btn-close {
    border: 2px solid #b3b3b3;
    border-radius: 50%;
    padding: 14px;
  }

  .hero-slider .swiper-slide .hero-categories ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-slider .swiper-slide .hero-categories ul li {
    width: 40%;
  }
	
.toggle-icon svg {
    fill: white;
    /* width: 40px; */
    /* height: 40px; */
}

.offcanvas-header {
    padding: 0;
}

.logo-area img {
    width: 160px;
}
	
	
.footer-link {
    text-align: left;
}

.footer-link .social-media ul {
    justify-content: flex-start;
}

.footer-logo {
    text-align: left;
}

.footer-logo p {
    margin: 0 0 10px !important;
}	
	
	
	
	
	
	
}

@media screen and (max-width: 768px) {
  .hero-slider .swiper-slide .hero-categories ul li a {
    font-size: 1.2rem;
  }

  .hero-slider .swiper-slide .content .title {
    width: 90%;
    font-size: 2rem;
  }

  .map-section {
    flex-direction: column;
  }

  .who-we-work ul {
    display: flex;
    flex-wrap: wrap;
  }

  .who-we-work ul li {
    width: 46%;
    min-width: max-content;
  }
	
.ship-image {
    height: auto;
}	
	
	
	
	
	
}


@media screen and (max-width: 730px) {
  .footer-link ul li {
    width: 100%;
    text-align: left;
  }

  .verticle-heading h3 {
    font-size: 2rem;
  }

  .services-listing-wrapper.services-section .item.image-area {
    width: 48%;
  }

  .footer-link {
    text-align: left;
  }

  .footer-link .social-media ul {
    justify-content: left;
  }

  nav.breadcrum-area h2 {
    font-size: 2.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

}

@media screen and (max-width: 600px) {
  .services-section-page .image-area .image-wrapper .text {
    left: 10px;
  }

  nav.breadcrum-area {
    padding: 30px;
    height: 225px;
  }

  .about-section .image-area .verticle-heading {
    top: 71%;
    width: 100%;
    height: 100px;
  }

  .news .content .item img {
    height: auto;
  }

  .news .content .item {
    flex-direction: column;
  }

  .news .content .item .image-area {
    width: 100%;
  }

  .news .content .item .info {
    width: 100%;
    padding: 20px;
  }
}


@media screen and (max-width: 576px) {
  .footer-logo {
    text-align: left;
  }

  .hero-slider .swiper-slide .content .title {
    font-size: 1.5rem;
  }

  .about-section .image-area .verticle-heading h2 {
    padding: 20px;
    font-size: 2rem;
  }

  .services-listing-wrapper.services-section .item.image-area {
    width: 100%;
  }

  .approach-content .content-area .item {
    padding: 10px;
  }

  .section-heading .title {
    font-size: 1.75rem;
  }

  nav.breadcrum-area h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 450px) {
  .header .logo-area img {
    width: 120px;
  }

  .contact-section .form-area {
    padding: 20px;
  }

  .hero-slider .swiper-slide .content .title {
    width: 98%;
  }

  .hero-slider .swiper-slide .hero-categories ul li a {
    padding: 10px 20px;
  }

  .hero-slider .swiper-slide .hero-categories ul {
    gap: 20px;
  }
	

	
	
	
	
	
	
}



@media screen and (max-width: 380px) {
  .header .logo-area img {
    width: 100px;
  }

  .hero-slider .swiper-slide .hero-categories ul li {
    width: 48%;
  }

  .hero-slider .swiper-slide .hero-categories ul {
    gap: 10px;
    justify-content: center;
  }

  .hero-slider .swiper-slide .content .title {
    font-size: 1.8rem;
  }
}

/* ======ALl Css above responsive =================== */

/* ==================07/10/2025===================== */
.image-area.wow.zoomIn {
    position: sticky;
    top: 40px;
}

/* -----------------------------08.10.2025----------------------- */
.japanese-car-lists-text ul{
	padding-left: 50px;
}

.japanese-car-lists-text ul li {
    list-style: none;
    position: relative;
	font-size: 18px;
}

.japanese-car-lists-text ul li::before{
    content: url('https://webtestinglink.com/beta/ssimport-services/wp-content/uploads/2025/10/list-dot.png');
    position: absolute;
    left: -26px;
}

.japanese-car-lists-text {
    background: white;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 16px;
}

.japanese-car-lists-text h2 {
    border-bottom: 1px solid #1d424b;
    padding-bottom: 10px;
}

a#contact-us-btn {
    background: #fdbd58;
}
ul.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 280px !important;
    display : none !important;
    background: #1d424b;
}
.header .wrapper .navigation nav ul li:hover ul.dropdown-menu{
	display : block !important;	
}

.sidebar {
    position: sticky;
    top: 100px;
}
.footer-contact ul li span i {
    background-color: var(--white-color);
    color: var(--secondary-color);
    padding: 7px 5px !important;
    border-radius: 50%;
    min-width: 30px;
}
.footer-contact ul li span i:hover {
    background-color: #f5b858;
    color: #000000;  
}