html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/S6uyw4BMUTPHjx4wXg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/S6u9w4BMUTPHh6UVSwiPGQ.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/S6u9w4BMUTPHh50XSwiPGQ.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Lato", sans-serif;
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato";
  font-weight: normal;
  color: #fff;
}

a {
  color: #fff;
}

a:hover {
  color: #cf943d;
}

.theme-btn {
  color: #fff;
  background-color: #800000;
  padding: 10px 20px;
  display: block;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.theme-btn a {
  color: #000;
}

.theme-btn span {
  font-weight: 500;
}

.theme-btn:hover {
  color: #fff;
  background-color: #0f1a3e;
  border: 1px solid #ffffff60;
}

a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

/* ------------------------------------ */
.menu-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

.menu-link:hover a {
  color: #cf943d;
}

.header-dropdown a {
  display: flex;
  gap: 5px;
  align-items: center;
}

.header-dropdown-content {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 100%;
  width: 300px;
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  z-index: 888;
  border: 1px solid #2d2d2d10;
  border-top: 0;
  border-radius: 10px;
}

.header-dropdown:hover .header-dropdown-content {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transition: 0.3s linear;
}

.btn-with-icon {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header {
  padding: 10px 60px;
  background-color: #0f1a3e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 9999;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
  border-bottom: 1px solid #ffffff30;
}

.section {
  position: relative !important;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-width: initial;
  width: auto;
  display: block;
  max-height: 80px;
  max-width: 250px;
}

.menu-link-wrapper {
  display: flex;
  align-items: center;
  gap: 0 30px;
}

.sub-menu-link {
  padding-bottom: 10px;
}

.header-dropdown .sub-menu-link a {
  color: #696969;
}

.header-dropdown .sub-menu-link a:hover {
  color: #800000;
}

.arrow-svg {
  width: 12px;
  height: 12px;
}

.theme-padding {
  padding-left: 60px;
  padding-right: 60px;
}

.header-dropdown svg path {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header-dropdown:hover svg path {
  fill: #dbf22e !important;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.with-arrow-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: unset;
  padding: unset !important;
  color: #800000;
}

.with-arrow-btn:hover {
  background-color: unset;
}

.with-arrow-btn:hover {
  color: #000;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.with-arrow-btn svg path {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.with-arrow-btn:hover svg path {
  stroke: #000 !important;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.splide__arrow {
  background-color: #800000;
  width: 40px;
  height: 40px;
  padding: 12px;
  opacity: 1;
}

.splide__arrow svg path {
  fill: #fff;
}

.splide__arrow:hover svg path {
  fill: #800000;
}

.splide__arrow:hover {
  background-color: #ffffff;
  border: 1px solid #800000;
}

.section-title {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1,
.section-title h2 {
  font-size: 30px;
  line-height: 34px;
  color: #0f1a3e;
  margin: 0;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Js Scroll Start */

.scrolled.fade-in {
  animation: 2s ease-in-out both fade-in;
}

.scrolled.fade-in-top {
  animation: 2s ease-in-out both fade-in-top;
}

.scrolled.fade-in-bottom {
  animation: 2s ease-in-out both fade-in-bottom;
}

.scrolled.fade-in-left {
  animation: 2s ease-in-out both fade-in-left;
}

.scrolled.fade-in-right {
  animation: 2s ease-in-out both fade-in-right;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoom-out {
  opacity: 0;
  transition-duration: 3s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.fade-down,
.fade-left,
.fade-right,
.fade-up {
  opacity: 0;
  transition-duration: 2s;
}

.zoom-out.scrolled {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.fade-up {
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
}

.fade-down.scrolled,
.fade-left.scrolled,
.fade-right.scrolled,
.fade-up.scrolled {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.fade-down {
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}

.fade-right {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

.fade-left {
  -webkit-transform: translate3d(-100px, 0, 0);
  transform: translate3d(-100px, 0, 0);
}

.fade-down,
.fade-left,
.fade-right,
.fade-up,
.zoom-out {
  transition-property: opacity, transform, -webkit-transform;
  transition-timing-function: ease-out;
}

.delay1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

/* Js Scroll End */
.menu-link svg {
  display: flex;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.link-arrow {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 5px;
  border-bottom: 1px solid;
}

.p-relative {
  position: relative;
}

.dark {
  color: #fff !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.p-relative-1 {
  position: relative;
  z-index: 1;
}

.gray-bg {
  background-color: transparent;
  background-image: radial-gradient(
    at center center,
    #e9e9e9f5 0%,
    rgb(233 233 233) 100%
  );
}

.splide__pagination__page,
.splide__pagination__page.is-active {
  background: #800000;
}

.footer {
  background-color: #0f1a3e;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links-inner img {
  width: auto;
  height: 18px;
}

.social-links-inner a {
  display: block;
  background-color: #800000;
  padding: 9px;
  border-radius: 50%;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.social-links-inner a:hover {
  transform: scale(1.1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-wrapper a {
  display: block;
}

.links-block p:not(:last-child),
.links-block a:not(:last-child) {
  margin-bottom: 20px;
}

.links-block-with-icons {
  display: flex;
  gap: 10px;
}

.links-block-with-icons {
  margin-bottom: 20px;
}

.links-block-with-icons:last-child {
  margin-bottom: 0;
}

.footer-logo-desc {
  max-width: 300px;
  margin-bottom: 30px;
}

.copyright-line {
  padding: 0 20px;
}

.footer-copyright {
  /* background-color: #800000; */
  border-top: 1px solid #ffffff60;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-wrapper {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.footer {
  padding: 0 !important;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .footer-copyright a {
  color: #000;
}

.footer-copyright a:hover {
  color: #fff;
} */

.menu-right {
  display: none;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.pl-20 {
  padding-left: 20px;
}

.inner-desc b {
  font-size: 17px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.title-md {
  font-size: 30px;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.justify-center {
  justify-content: center;
}

.is-capitalize {
  text-transform: capitalize !important;
}

.is-uppercase {
  text-transform: uppercase !important;
}

.contactform-block {
  position: relative;
}

.form-control {
  font-family: "Lato";
  padding: 20px;
  border: 0;
  width: 100%;
  /* border-radius: 10px; */
  height: 100%;
}

.form-col {
  margin-bottom: 10px;
}

textarea:focus,
input:focus {
  -moz-outline: none;
  outline: 0;
}

.full-width {
  width: 100%;
}

::placeholder {
  font-family: "Lato", sans-serif;
}

/* new css start  */
.theme-color {
  color: #800000;
}

.theme-bg {
  background-color: #0f1a3e;
}

.black-bg {
  background-color: #000;
}

.inner-section,
.section-banner {
  margin-top: 100px;
}

h1 {
  font-size: 50px;
  line-height: 60px;
}

.mt-5 {
  margin-top: 30px !important;
}

.section-title span {
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
  color: #800000;
  display: block;
  margin-bottom: 15px;
}

.contact-block {
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid #ffffff60;
  padding: 15px 60px;
}

/* #main-slider img{
  vertical-align: bottom;
  height: 100%;
  width: 100%;
  clip-path: polygon(85px 0, 100% 0, 100% 100%, 95px 100%, 0 67%);
  background-color: #800000;
} */
.contact-inner {
  display: flex;
  align-items: center;
}

.theme-line {
  margin: 0 10px;
  color: #ffffff60;
}

.contact-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-links img {
  width: auto;
}

.company-experiance {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #ff5e15;
  font-weight: 500;
}

.company-timeline .timeline-text {
  font-size: 200px;
  line-height: 1.25;
  font-weight: 700;
  color: #c4c4c4;
}

.company-experiance img {
  position: absolute;
}

.company-experiance-content {
  width: 100%;
  height: 100%;
  font-size: 300%;
}

.company-experiance textpath {
  fill: #fff;
}

.product-slider-block {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #d4d4d4;
  height: 100%;
}

.arrow-bottom .splide__arrows {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
}

.product-slider-desc {
  padding: 15px;
}

.link-arrow svg {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.link-arrow:hover svg {
  stroke: #cf943d;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.section-contactus {
  background-image: url(../images/home/contactus/contactus-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.black-overlay-dark,
.black-overlay,
.theme-overlay {
  position: relative;
}

.black-overlay-dark::before,
.black-overlay::before,
.theme-overlay::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #800000;
  opacity: 0.4;
}

.black-overlay::before {
  background-color: #000;
  opacity: 0.4;
  z-index: 1;
}

.black-overlay-dark::before {
  background-color: #000;
  opacity: 0.6;
}

.theme-radius {
  border-radius: 20px;
  overflow: hidden;
}

.contact-btn {
  /* border-radius: 10px; */
  color: #800000;
  background-color: #fff;
}

.banner-desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.mr-auto {
  margin-right: auto;
  margin-left: auto;
}

.listed-points li {
  color: #222222;
  margin: 10px 0;
  position: relative;
  padding-left: 25px;
  font-weight: 700;
  font-size: 14px;
}

.listed-points li:last-child {
  margin-bottom: 0;
}

.listed-points li:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 3px;
  left: 0;
  background-image: url(../images/icons/check.png);
  background-size: cover;
}

.z-index-1 {
  z-index: 1;
}

.theme-max-width {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.site-logo h1 {
  font-size: 38px;
  line-height: 38px;
  font-weight: 600;
}

.aboutus-cols {
  justify-content: center;
}

#product-slider .splide__track {
  padding-bottom: 1px;
}

.contactus-form-body {
  background-color: #0f1a3e90;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.banner-text {
  position: absolute;
  left: 60px;
  bottom: 40px;
  z-index: 1;
}

.banner-text h1 {
  color: #fff;
  font-weight: 700;
}

.contactus-block {
  border: 5px solid #800000;
  padding: 30px;
  height: 100%;
  border-radius: 20px;
}

.contactus-block img {
  width: auto;
  height: 32px;
  margin: 0 auto 30px;
}

.form-block {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  z-index: 1;
}

.contactform-block {
  position: relative;
}

.black-text {
  color: #000;
}

.title-sm {
  font-size: 16px !important;
}

.our-work-icon-wrapper {
  background-color: #fff;
  padding: 20px;
  border-radius: 100%;
  height: 90px;
  width: 90px;
  margin: 0 auto 20px;
}

.our-work-desc {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.our-work-block {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-contactus-block {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.home-contactus-block img {
  width: auto;
  height: 25px;
}

.home-contactus-wrapper {
  padding: 50px 35px 45px;
  background-color: #560001;
  height: 100%;
}

.home-contactus-desc h3,
.home-contactus-desc a {
  color: #fff;
}

.home-contactus-desc a:hover {
  color: #cf943d;
}

.theme-border-bottom {
  position: relative;
}

.theme-border-bottom::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0;
  height: 1px;
  width: 20%;
  background-color: #fff;
}

.home-contactus-desc h3 {
  font-size: 20px;
}

.theme-image-scale {
  /* filter: blur(5px); */
  overflow: hidden;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.theme-image-scale:hover {
  filter: unset;
  -webkit-transform: scale(1.075);
  transform: scale(1.025);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.product-slider-img {
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.theme-hover-effect {
  position: relative;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
/* .theme-hover-effect::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #560001;
  opacity: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.product-slider-img:hover.theme-hover-effect::before {
  opacity: 0.7;
  top: 100%;
  height: 100%;
  z-index: 1;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
} */
#our-work-slider .splide__track {
  padding-bottom: 2px;
}

#our-work-slider .splide__arrow--prev {
  left: -100px;
}

#our-work-slider .splide__arrow--next {
  right: -100px;
}

#our-work-slider {
  max-width: 1000px;
  margin: 0 auto;
}

.section-what-we-do {
  background-image: url(../images/home/banner/banner-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.listed-points.dark li {
  color: #fff;
}

.listed-points.dark li::before {
  background-image: url(../images/icons/check-white.png);
}

.element {
  position: absolute;
  right: 60px;
  bottom: 0;
  max-width: 100px;
}

.why-choose-detail {
  padding: 30px;
}

.border-bottom {
  border-bottom: 1px solid #ffffff60;
}

iframe {
  display: block;
}

.actual-image,
.stock-image {
  position: relative;
}

.actual-image::before,
.stock-image::before {
  position: absolute;
  content: "Stock Image";
  bottom: 5px;
  right: 10px;
  font-size: 9px;
  text-shadow: 2px 2px 2px black;
  z-index: 1;
  color: #fff;
}

.actual-image::before {
  content: "Actual Image";
}

.order-2 {
  order: 2;
}

.product-inner-detail .product-slider-desc {
  padding: 0;
}

.arrow-black {
  color: #555555;
}

.dark h3,
.dark h2 {
  color: #fff;
}

.services-desc {
  padding: 40px 25px;
}

.services-block {
  box-shadow: rgb(104 101 101 / 47%) 0px 5px 15px;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.services-img {
  position: relative;
}

.service-icon {
  position: absolute;
  bottom: -35px;
  left: 25px;
  background-color: #fff;
  padding: 20px;
  border-radius: 50%;
  display: flex;
}

.scroll-container {
  width: 100%;
  overflow-x: hidden;
  white-space: nowrap;
  margin: 50px auto;
  padding: 10px;
}

.scroll-container img {
  height: 100%;
  display: inline-block;
  margin-right: 10px;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
  gap: 50px;
  align-items: center;
}
.product-inner-detail .product-slider-img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.product-inner-cols {
  margin-bottom: 50px !important;
}
.product-slider-block .theme-image-scale {
  filter: unset;
}
select#country_code {
  padding: 0px;
  height: inherit;
}
select {
  outline: unset;
  color: #555555;
}
.table-container {
  display: flex;
  gap: 20px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  border: 1px solid #0f1a3e;
  padding: 8px;
  text-align: left;
}
th {
  background-color: #0f1a3e;
  color: white;
}
.whatsapp-icon {
  position: fixed;
  bottom: 60px;
  right: 20px;
  animation: bounce 1.5s infinite;
  transition: transform 0.3s ease;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animated Table Design (scoped to product detail tables) */
.product-slider-desc {
  overflow-x: auto;
}

.product-slider-desc table {
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 26, 62, 0.12);
  overflow: hidden;
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.product-slider-desc table:hover {
  box-shadow: 0 10px 28px rgba(15, 26, 62, 0.18);
}

.product-slider-desc thead th {
  background: linear-gradient(135deg, #0f1a3e 0%, #1b2d6b 50%, #0f1a3e 100%);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 12px;
  position: relative;
  background-size: 200% 200%;
  animation: tableHeaderSheen 10s linear infinite;
  text-align: center;
}

.product-slider-desc thead th:first-child {
  border-top-left-radius: 12px;
}

.product-slider-desc thead th:last-child {
  border-top-right-radius: 12px;
}

@keyframes tableHeaderSheen {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.product-slider-desc tbody tr {
  animation: tableRowIn 500ms ease both;
}

.product-slider-desc tbody tr:nth-child(1) { animation-delay: 40ms; }
.product-slider-desc tbody tr:nth-child(2) { animation-delay: 80ms; }
.product-slider-desc tbody tr:nth-child(3) { animation-delay: 120ms; }
.product-slider-desc tbody tr:nth-child(4) { animation-delay: 160ms; }
.product-slider-desc tbody tr:nth-child(5) { animation-delay: 200ms; }
.product-slider-desc tbody tr:nth-child(6) { animation-delay: 240ms; }

@keyframes tableRowIn {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.product-slider-desc tbody td {
  padding: 12px 14px;
  background-color: #ffffff;
  border-right: 1px solid #e6ebf3;
  border-bottom: 1px solid #e6ebf3;
  color: #222222;
  font-weight: 600;
  text-align: center;
}

.product-slider-desc tbody td:last-child {
  border-right: none;
}

.product-slider-desc tbody tr:nth-child(even) td {
  background-color: #f7f9fd;
}

.product-slider-desc tbody tr:hover td {
  background-color: #eef3ff;
}

.product-slider-desc tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.product-slider-desc tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

/* Subtle highlight underline on hover */
.product-slider-desc tbody td {
  position: relative;
}

.product-slider-desc tbody td::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #800000, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.product-slider-desc tbody tr:hover td::after {
  transform: scaleX(1);
}

/* Compact on small screens */
@media (max-width: 768px) {
  .product-slider-desc table {
    min-width: 520px;
  }
  .product-slider-desc thead th {
    font-size: 12px;
    padding: 12px 10px;
  }
  .product-slider-desc tbody td {
    font-size: 14px;
    padding: 10px 12px;
  }
}
