/*
Theme Name:   Meezan Packaging Solutions
Theme URI:    https://meezanpackagingsolutions.com/
Author:       M.Bilal Zaheer
Description:  Carrogated Box Manufacturing Company.
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  meezan-packaging-solutions
*/

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

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter.ttf") format("truetype");
}

:root {
  --grid-columns: 12;
  --grid-margin: 106px;
  --grid-gutter: 20px;
  --font-18: clamp(16px, 1.1vw, 18px);
  --font-36px: clamp(26px, 2.2vw, 36px);
  --font-64px: clamp(30px, 4.4vw, 64px);
  --font-22px: clamp(14px, 1.8vw, 22px);
  --font-28px: clamp(18px, 2.2vw, 28px);

  --color-primary: #46331d;
  --color-secondary: white;
}
html {
  margin-top: 0 !important;
	scroll-behavior: smooth;
}
body {
  font-family: "Inter";
  overflow-x: hidden;
}
ul {
  /*   list-style: none; */
}
a {
  color: inherit;
  text-decoration: none;
}
footer ul {
  list-style: none;
}
.grid-col-12 {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  column-gap: var(--grid-gutter);
  padding: 0 var(--grid-margin);
}
header {
  position: absolute;
  top: 0;
  z-index: 9999;
  left: 0;
  width: 100%;
  padding-top: 1rem;
}
header .grid-col-12 {
  align-items: center;
}
.logo__section__header {
  grid-column: 1/4;
}
.logo__section__header img {
  width: 100%;
}
#menu-header-menu-1 {
  list-style: none;
}
nav {
  grid-column: 7/-1;
  justify-self: end;
	display:flex;
	align-items:center;
	column-gap:1rem;
}
nav ul {
	flex-shrink:0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
	list-style:none !important;
}

.contact__info__header{
	display:flex;
	align-items:center;
	justify-content:end;
	column-gap:1rem;
}

.contact__info__header a{
	width:1.5rem;
}

.contact__info__header img{
	width:100%;
}
.animator__container {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  z-index: 9999999;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}
.animator__container__top {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  height: 100%;
}
.animator__container__bottom {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  height: 100%;
}
.block_top {
  background-color: var(--color-primary);
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  grid-column: span 1;
}
.block_bottom {
  background-color: var(--color-primary);
  width: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  grid-column: span 1;
}
nav ul li a {
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
  position: relative;
  transition: color 0.3s ease;
}
nav ul li a::after {
  content: "";
  transition: 0.3s ease;
  position: absolute;
  bottom: -0.3rem;
  width: 0%;
  height: 2px;
  right: 0;
  background: #8e581a;
}
nav ul li a:hover {
  color: var(--color-secondary);
}
nav ul li a:hover::after {
  left: 0;
  width: 100%;
}
.call__to__action__button__header {
  grid-column: 10/-1;
}
.call__to__action__button__header a {
  font-size: var(--font-18);
  font-weight: 600;
  color: black;
  background: white;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.call__to__action__button__header a:hover {
  background: #195a6a;
  color: white;
}
.hero__section__home {
  height: 100vh;
  background: var(--background, url("./assets/Images/hero.png"));
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.background__video__hero__home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.black__overlay__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(3px);
}
.background__video__hero__home video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__section__home .grid-col-12 {
  height: 100%;
  position: relative;
  z-index: 999;
}
.hero__info__part__home {
  grid-column: 1/12;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.hero__line__subtitle,
.hero__line__second,
.hero__button__container {
  position: relative;
  opacity: 0;
  transform: translateX(-100%);
}
.hero__line__first p {
  text-align: center;
  text-transform: uppercase;
  font-size: var(--font-36px);
  color: white;
  font-weight: 400;
  letter-spacing: 16px;
}
.hero__line__second p {
  text-align: left;
  font-size: var(--font-64px);
  color: white;
  font-weight: 600;
}
.hero__line__subtitle {
  margin-top: 1rem;
  max-width: 70%;
}
.hero__line__subtitle p {
  font-size: var(--font-22px);
  text-align: left;
  margin: 0 auto;
  font-weight: 400;
  color: white;
}
.hero__button__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  column-gap: 1.5rem;
}
.hero__button__container a {
  color: white;
  background: var(--color-primary);
  padding: 0.8rem 1rem;
  border-radius: 5px;
  font-size: var(--font-18);
  font-weight: 600;
}
.hero__button__container a:hover {
  background: #382916;
}
.we__are__with__you__section__home {
  background: #195a6a;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section__we__are__title__subtitle {
  grid-column: 1/-1;
}
.section__we__are__title p {
  color: white;
  font-size: var(--font-36px);
  font-weight: 600;
}
.section__we__are__subtitle {
  max-width: 50%;
  margin-top: 1rem;
}
.section__we__are__subtitle p {
  color: white;
  font-weight: 400;
  font-size: var(--font-18);
}
.three__blocks__section__we__are__with__container {
  grid-column: 1/-1;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.we__are__with__you__section__home {
  position: relative;
}
.left__side__poliycon__we__ar {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.left__side__poliycon__we__ar img {
  width: 100%;
}
.single__block__section__we__are__with {
  grid-column: span 1;
  border: 1px solid #195a6a;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(50.79999923706055px);
  border-radius: 8px;
}
.icon__block__single__we__are__with img {
  width: 18%;
  object-fit: contain;
}
.title__block__single__we__are__with {
  margin-top: 1rem;
}
.title__block__single__we__are__with p {
  font-size: var(--font-22px);
  color: white;
  font-weight: 600;
}
.subtitle__block__single__we__are__with {
  margin-top: 1rem;
}
.subtitle__block__single__we__are__with p {
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
}

.top__team__carrier__section__home {
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.left__side__top__team__car {
  grid-column: 1/6;
}
.right__side__top__team__car {
  grid-column: 6/-1;
  overflow: hidden;
  display: flex;
  border-radius: 12px;
}
.right__side__top__team__car img {
  width: 100%;
  object-fit: cover;
}
.about__text__top__team__section p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.top__team__text__sectino p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: black;
}
.top__team__text__section__subtitl {
  margin-top: 1rem;
}
.top__team__text__section__subtitl p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  line-height: 1.5;
}

.top__team__label__bottom {
  background-color: rgba(209, 183, 70, 0.2);
  padding: 0.8rem;
  margin-top: 1.5rem;
  border-radius: 5px;
}
.top__team__label__bottom p {
  font-size: var(--font-22px);
  color: black;
  font-weight: 600;
}
.hambergur__menu__mobile {
  display: none;
}
.mobile__menu__container {
  display: none;
}
.preloader__home__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background-color: black;
}
.the__best__logistic__section {
  padding-top: 2rem;
  padding-bottom: 5rem;
  margin-top: -10%;
}
.left__side__the__best__log {
  grid-column: 1/7;
  position: relative;
}
.left__side__the__best__log img {
  width: 100%;
  max-width: 80%;
  height: 100%;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
}
.block__info__the__best__log__section {
  position: absolute;
  top: 2rem;
  left: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.single__block__info__the__best__log {
  display: flex;
  column-gap: 1rem;
  padding: 0.8rem 1rem;
  padding-right: 5rem;
  border-radius: 8px;
  align-items: center;
  border: 1px solid rgba(172, 136, 41, 1);
  background: rgba(255, 255, 255, 0.61);
  backdrop-filter: blur(50.79999923706055px);
}
.single__block__info__the__best__log img {
  width: 20%;
  border-radius: none;
  overflow: visible;
  object-fit: contain;
}
.info__single__block__info__the__best__log p:first-child {
  font-size: var(--font-28px);
  font-weight: 600;
  color: black;
}
.info__single__block__info__the__best__log p:last-child {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
}
.right__side__the__best__log__section {
  grid-column: 7/-1;
}
.the__best__info__tile p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: black;
}
.the__best__info__log__subtitle p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  margin-top: 1rem;
  line-height: 1.5;
}
.the__best__action__button__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  column-gap: 1.5rem;
}
.the__best__action__button__container a {
  color: black;
  background: rgba(209, 183, 70, 1);
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  font-size: var(--font-18);
  font-weight: 600;
}
.the__best__action__button__container a:last-child {
  background: black;
  color: white;
}
.our__service__area__section__home {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: #195a6a;
}
.our__service__area__section__home .grid-col-12 {
  position: relative;
}
.map__image__area__service {
  grid-column: 3/11;
}
.map__image__area__service img {
  width: 100%;
  mix-blend-mode: overlay;
}
.title__subtitle__box__with__two__button__container {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  text-align: center;
  grid-column: 4/10;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.title__our__service__area p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: white;
}
.subtitle__our__service__area p {
  margin-top: 1rem;
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
  text-align: center;
}

.two__button__our__service__area {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
}
.two__button__our__service__area a {
  color: black;
  background: rgba(209, 183, 70, 1);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: var(--font-18);
  font-weight: 600;
}
.two__button__our__service__area a:last-child {
  background: black;
  color: white;
}

footer {
  overflow: hidden;
  position: relative;
  background: #46331d;
  padding-top: 4rem;
  color: white;
}
.background__map__image__footer {
  position: absolute;
  top: 0;
  right: -2%;
  width: 40%;
  z-index: 1;
}
.background__map__image__footer img {
  width: 100%;
}
.left__info__block__footer {
  grid-column: 1/5;
  position: relative;
  z-index: 999;
}

.good__carrer__btn__footer a {
  font-size: var(--font-22px);
  color: black;
  font-weight: 600;
  background: white;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  width: max-content;
  display: block;
}
.info__text__left__footer {
  margin-top: 1rem;
}
.info__text__left__footer p:first-child {
  font-size: var(--font-18);
  font-weight: 600;
  color: white;
}
.info__text__left__footer p:last-child {
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
  margin-top: 0.5rem;
}
.footer__social__icon__container {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.single__footer__social__icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.terms__block__footer {
  grid-column: 6/8;
  position: relative;
  z-index: 999;
}
.terms__block__footer p {
  font-size: calc(var(--font-28px) - 4px);
  font-weight: 600;
  color: white;
}
.terms__block__footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.terms__block__footer ul li a {
  font-weight: 400;
  font-size: calc(var(--font-22px) - 4px);
  color: white;
}
.links__block__footer {
  grid-column: 9/11;
  position: relative;
  z-index: 999;
}

.links__block__footer p {
  font-size: calc(var(--font-28px) - 4px);
  font-weight: 600;
  color: white;
}
.links__block__footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.links__block__footer ul li a {
  font-weight: 400;
  font-size: calc(var(--font-22px) - 4px);
  color: white;
}

.contact__block__footer {
  grid-column: 11/-1;
  position: relative;
  z-index: 999;
}

.contact__block__footer p {
  font-size: calc(var(--font-28px) - 4px);
  font-weight: 600;
  color: white;
}
.contact__block__footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.contact__block__footer ul li a {
  font-weight: 400;
  font-size: calc(var(--font-22px) - 4px);
  color: white;
}
.bottom__center__text__footer {
  grid-column: 1/-1;
  position: relative;
  z-index: 999;
  margin-top: 5rem;
  text-align: center;
  border-top: 1px solid #ffffff42;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.bottom__center__text__footer p {
  font-size: calc(var(--font-18) - 2px);
  font-weight: 400;
  color: #ffffff94;
}
.preplaining__bus__section__home {
  padding: var(--grid-margin) 0;
}
.right__side__landscape__image__plaining img {
  width: 100%;
}
.single__block__plaing__section__icon img {
  width: 100%;
}
.left__image__plaing__section img {
  width: 100%;
}
img {
  display: flex;
}
.top__section__preloiang {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}
.left__plaining__info__text__block {
  grid-column: 1/7;
  background-color: #f2f0e6;
  padding: 2.5rem;
}

.footer__disclamer__home {
  width: 100%;
  background: #195a6a;
}
.footer__disclamer__home .block {
  grid-column: 1/-1;
  color: white;
  padding: 4rem 0;
  font-size: var(--font-22px);
}

.right__side__landscape__image__plaining {
  grid-column: 7/-1;
}
.left__plaining__info__text__title p {
  font-size: var(--font-36px);
  color: black;
  font-weight: 600;
}
.left__plaining__info__text__sutitle {
  margin-top: 1rem;
}
.left__plaining__info__text__sutitle p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.four__blocks__plaining__section__container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}
.single__block__plainig__secetion {
  grid-column: span 3;
  display: flex;
  padding: 1.5rem 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.single__block__plainig__secetion:nth-child(1) {
  background: #d1b746;
}
.single__block__plainig__secetion:nth-child(2) {
  background: #d1b746bf;
}
.single__block__plainig__secetion:nth-child(3) {
  background: #d1b7468c;
}
.single__block__plainig__secetion:nth-child(4) {
  background: #d1b74659;
}

.single__block__plainig__secetion p {
  font-size: var(--font-28px);
  font-weight: 600;
  color: black;
}
.single__block__plaing__section__icon {
  width: 20%;
}

.left__image__plaing__section {
  grid-column: 1/7;
}
.right__content__block__plaingin__section {
  grid-column: 7/-1;
  padding: 2.5rem;
}
.right__content__block__plaingin__title p {
  font-size: var(--font-36px);
  color: black;
  font-weight: 600;
}
.right__content__block__plaingin__subtitle {
  margin-top: 1rem;
}
.right__content__block__plaingin__subtitle p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.fixed__background__section__home {
  padding: 10rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fixedbackground, url("./assets/Images/Truck-Image-10.jpg"));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.overlay__fixed__background__section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10;
}
.fixed__background__section__home .grid-col-12 {
  align-items: center;
  position: relative;
  z-index: 11;
}
.left__side__fixed__background__section {
  grid-column: 1/-1;
  text-align: center;
}
.left__side__fixed__background__section .title {
  font-size: calc(var(--font-36px) + 12px);
  color: white;
  font-weight: 600;
}
.left__side__fixed__background__section .subtitle {
  margin-top: 0.6rem;
  font-size: var(--font-22px);
  color: white;
  font-weight: 400;
}
.right__side__fixed__background__section {
  grid-column: 9/-1;
}
.right__side__fixed__background__section a {
  font-size: var(--font-18);
  font-weight: 600;
  color: white;
  background: black;
  display: block;
  width: max-content;
  padding: 1rem;
  border-radius: 3px;
}
.ctd__qualification__section__home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* max-height: 100%; */
  /* height: 100vh; */
}
.ctd__qualification__section__home .grid-col-12 {
  align-items: center;
  height: 100%;
}
.left__side__image__ctd__qual {
  position: absolute;
  top: 0;
  left: 0;
}
.left__side__image__ctd__qual img {
  width: 100%;
}
.left__side__ctd__qual {
  grid-column: 1/7;
  position: relative;
  z-index: 990;
  /* top: 35%; */
}
.ctd__qual__right {
  grid-column: 7/-1;
  padding: 5rem 0;
  /* position: relative; */
  /* top: 35%; */
}
.apply__box__ctd__qual {
  background: #ffffffb5;
  backdrop-filter: blur(35.5px);
  border-radius: 6px;
  padding: 3rem;
}
.apply__box__ctd__title p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: black;
}
.apply__box__ctd__info {
  margin-top: 2rem;
}
.apply__box__ctd__info p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
}
.apply__box__ctd__book__btn a {
  color: white;
  font-size: var(--font-18);
  font-weight: 600;
  background: black;
  border-radius: 5px;
  padding: 1rem 8rem;
  display: block;
  margin-top: 2rem;
  width: max-content;
}
.single__accordigion__application {
  border: 1px solid #989898;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.single__accordigion__application.active .body__single__accordion__application {
  margin-top: 2rem;
}
.header__single__accordioin__application p {
  font-size: calc(var(--font-22px) + 2px);
  font-weight: 500;
  color: black;
}
.body__single__accordion__application {
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease;
}

.body__single__accordion__application p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.accordion__application__criteria__container {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.request__trial__week__section__home .grid-col-12 {
  padding-right: 0;
}
.request__trial__week__section__home {
  background: #f7f6f2;
}
.left__side__form__of__trail__week {
  grid-column: 1/6;
  align-self: center;
  padding: 5rem 0;
}
.title__left__side__form__trail__week p:first-child {
  font-size: var(--font-36px);
  color: #195a6a;
  font-weight: 300;
}
.title__left__side__form__trail__week p:last-child {
  font-size: var(--font-64px);
  color: black;
  font-weight: 600;
}
.subtitle__left__side__form__trail__week {
  margin-top: 2rem;
}
.subtitle__left__side__form__trail__week p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.form__container__week__trail {
  margin-top: 2rem;
}
.form__container__week__trail input {
  padding: 0.8rem 1rem;
  outline: none;
  border: 1px solid #195a6a3b;
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  width: 100%;
  font-weight: 400;
  border-radius: 8px;
  margin-top: 0rem;
}
.form__container__week__trail textarea {
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  border: 1px solid #195a6a3b;
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  font-weight: 400;
  border-radius: 8px;
  margin-top: 1rem;
}
.form__container__week__trail select {
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  border: 1px solid #195a6a3b;
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  font-weight: 400;
  border-radius: 8px;
  /*   margin-top: 1rem; */
}
.form__container__week__trail input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.form__container__week__trail select option {
  color: grey;
}
.name__email__field__box__week__trail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form__container__week__trail button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: #01172fa0;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.form__container__week__trail button:hover {
  background: #01172f;
}
.phone__type__field__box__week__trail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.temp {
  margin-top: 2rem;
}
.temp h3 {
  color: grey;
  user-select: none;
  font-weight: 600;
}
.temp p {
  margin-top: 1rem;
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  user-select: none;
  font-weight: 300;
}
.agree__form__week__trail {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-top: 1rem;
}

.agree__form__week__trail label {
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  user-select: none;
  font-weight: 300;
}
.right__side__week__trail {
  grid-column: 7/-1;
  overflow: hidden;
}
.right__side__week__trail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonals__section__home {
  padding: 5rem 0;
}
.testimonals__section__home .grid-col-12 {
  align-items: center;
}
.title__testimonal__part {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
}
.title__testimonal__part p:first-child {
  font-size: calc(var(--font-18) - 2px);
  color: #195a6a;
  font-weight: 400;
}
.title__testimonal__part p:last-child {
  font-size: calc(var(--font-64px) - 12px);
  color: black;
  font-weight: 600;
}
.slider__testimonial__container {
  grid-column: 2/12;
  margin-top: 2rem;
  overflow: hidden;
  max-width: 100%;
}
.slider__wrapper__testinmoa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.swiper {
  width: 100%;
  max-width: 100%;
}
.swiper-wrapper {
  max-width: 100%;
}
.single__testinonal__slide {
  background: #f7f6f2;
  padding: 2rem;
  border-radius: 12px;
  width: calc(50% - 2rem) !important;
  flex-shrink: 0;
  position: relative;
}
.quote__testimonal {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.single__slide__testimon__info__text p {
  font-size: calc(var(--font-18));
  color: gray;
  font-weight: 400;
  line-height: 1.4;
}
.profile__image__name__single__testimon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.profile__image__test__container {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
}
.profile__image__test__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.name__testimonnal__single__profile p:first-child {
  font-size: calc(var(--font-18));
  color: black;
  font-weight: 400;
}
.name__testimonnal__single__profile p:last-child {
  font-size: calc(var(--font-18) - 5px);
  color: gray;
  font-weight: 300;
}
.our__partners__section__home {
  padding: 5rem 0;
}
.our__partners__title {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/-1;
}
.our__partners__title p {
  font-size: calc(var(--font-64px) - 12px);
  font-weight: 600;
  color: black;
}
.our__partner__slider__1__wrapper {
  grid-column: 3/11;
  margin-top: 3rem;
  overflow: hidden;
}
.our__partner__slider__1__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.our__partner__slider__2__wrapper {
  grid-column: 3/11;
  margin-top: 3rem;
  overflow: hidden;
}
.our__partner__slider__2__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.single__our__partner__company__logo {
  flex-shrink: 0;
  width: 20%;
}
.single__our__partner__company__logo img {
  width: 100%;
  object-fit: contain;
}

.services__section__sesrvice__page {
  padding: 5rem 0;
  /* background: #195a6a; */
}

.services__title__servie__page {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.services__title__servie__page p:first-child {
  font-size: calc(var(--font-18) - 2px);
  font-weight: 400;
  color: black;
}

.services__title__servie__page p:last-child {
  font-size: calc(var(--font-64px) - 16px);
  font-weight: 600;
  color: black;
}
.services__truck__type__container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
.services__truck__type__single {
  grid-column: span 1;
	height:100%;
}

.services__truck__type__single__imagebox {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
	height:100%;
  /* height: 23rem; */
}
.info__single__product__in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #87551b88;
	text-align:center;
  display: flex;
  transform-origin: bottom;
  justify-content: center;
  align-items: center;
  font-size: var(--font-22px);
  color: white;
  font-weight: 600;
  transform: scaleY(0);
  transition: transform 0.4s ease-in-out;
}

.services__truck__type__single:hover .info__single__product__in {
  transform: scaleY(1);
}
.services__truck__type__single__imagebox:hover img {
  transform: scale(1.2);
}
.services__truck__type__single__imagebox img {
  transition: 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__truck__type__single__title {
  margin-top: 1rem;
}
.services__truck__type__single__info {
  margin-top: 0.5rem;
}
.services__truck__type__single__title p {
  font-size: var(--font-22px);
  font-weight: 600;
  color: black;
  font-style: italic;
}
.services__truck__type__single__info p {
  font-size: calc(var(--font-18) - 1px);
  font-weight: 400;
  color: black;
  line-height: 1.4;
  font-style: italic;
}
.services__truck__type__single__info .text-block {
  font-size: calc(var(--font-18) - 1px);
  font-weight: 400;
  color: black;
  line-height: 1.4;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 👈 number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form__didicated__dispatcher {
  padding: var(--grid-margin) 0;
  padding-top: 10rem;
}
.title__form__didicated__dispacter {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title__form__didicated__dispacter p {
  font-size: var(--font-64px);
  color: black;
  font-weight: 600;
}
.form__didicated__dispatcher {
  background: #f7f6f2;
}
.form__dedicated__disp__container {
  grid-column: 3/11;
  margin-top: 5rem;
}
.form__dedicated__disp__container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form__dedicated__disp__container label {
  font-size: calc(var(--font-18) - 3px);
  color: gray;
  font-weight: 400;
}
.form__dedicated__disp__container input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  font-size: calc(var(--font-18) - 4px);
  color: gray;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
}
.form__dedicated__disp__container select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  font-size: calc(var(--font-18) - 4px);
  color: gray;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
}
.single__field__input__ded__dis {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}
.name__field__ded__dis__container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.radio__btn__input__ded__dis {
  display: flex;
  /*   flex-direction: column; */
  gap: 1rem;
}
.single__field__input__ded__dis p {
  font-size: calc(var(--font-18) - 3px);
  color: gray;
  font-weight: 400;
}
.radio__btn__input__ded__dis label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  cursor: pointer;
}
.radio__btn__input__ded__dis input[type="radio"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.single__field__input__name__dis__ded {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.disclaimer__ded__dis {
  margin-top: 1rem;
  align-self: start;
}
.sms-privacy {
  margin-top: 1rem;
  align-self: start;
  font-size: calc(var(--font-18) - 2px);
  font-weight: 400;
  color: gray;
}
.sms-privacy a {
  text-decoration: underline;
  font-weight: 700;
}
.disclaimer__ded__dis p {
  font-size: calc(var(--font-18) - 2px);
  font-weight: 400;
  color: gray;
}
.form__dedicated__disp__container button {
  padding: 0.8rem 2rem;
  margin-top: 2rem;
  border: none;
  outline: none;
  background: #d1b746;
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.form__dedicated__disp__container button:hover {
  background: #195a6a;
  color: white;
}
.go__back__home__btn {
  position: absolute;
  top: 2rem;
  cursor: pointer;
  left: 2rem;
}
.content__terms__page {
  grid-column: 2/12;
  margin-top: 5rem;
}
#smsConsent {
  width: 1rem;
  height: 1rem;
}
.content__terms__page ul li {
  /*   margin-top: 2rem; */
  /*   display: flex; */
  flex-direction: column;
  gap: 1rem;
}
/* .content__terms__page p{
  color: white;
}
.content__terms__page h3{
  color: white;
}
.content__terms__page li{
  color: white;
} */
.contact__section__contact .grid-col-12 {
  padding-left: 0;
}
.left__side__map__location__container {
  grid-column: 1/7;
}
.left__side__map__location__container iframe {
  width: 100%;
  height: 100%;
}
.right__side__contact__form__contact__page {
  grid-column: 8/-1;
  padding: 10rem 0;
}
.contact__form__title__contact__page p {
  font-size: calc(var(--font-36px) + 4px);
  color: black;
  font-weight: 600;
}
.right__side__contact__form__contact__page form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.right__side__contact__form__contact__page input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #989898;
  color: gray;
  outline: none;
  font-size: calc(var(--font-18) - 4px);
  font-weight: 400;
  border-radius: 6px;
}
.right__side__contact__form__contact__page textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #989898;
  color: gray;
  outline: none;
  font-size: calc(var(--font-18) - 4px);
  font-weight: 400;
  border-radius: 6px;
}
.right__side__contact__form__contact__page
  .input__field__name__phone__first__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.check__box__contact__form__contact__page {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
.check__box__contact__form__contact__page input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.check__box__contact__form__contact__page p {
  font-size: calc(var(--font-18) - 4px);
  color: gray;
  font-weight: 400;
}
.right__side__contact__form__contact__page button {
  width: max-content;
  padding: 1rem 2rem;
  border: none;
  outline: none;
  background: #46331d;
  color: white;
  font-size: calc(var(--font-18) - 3px);
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
}
.right__side__contact__form__contact__page button:hover {
  background: #01172f;
}

.single__service__section__truck {
  padding-top: 3rem;
  /* background-color: #01172f; */
  padding-bottom: 5rem;
}
.single__service__section__truck p {
  /* color: white; */
  /* font-weight: 400; */
  /* font-size: calc(var(--font-22px)); */
}
.single__service__section__truck h1 {
  /* color: white; */
  font-weight: 400;
  font-size: calc(var(--font-36px));
}

.single__image__service {
  grid-column: 1/-1;
}
.single__image__service img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.single__title__truck {
  grid-column: 1/-1;
  margin-top: 1rem;
}
.single__content__service {
  grid-column: 1/-1;
  margin-top: 2rem;
}
@media (max-width: 1224px) {
  .contact__section__contact .grid-col-12 {
    padding-left: 1.5rem;
  }
  .left__side__map__location__container iframe {
    width: 100%;
    height: 65vh;
    padding-bottom: 2rem;
  }
  .left__side__map__location__container {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .right__side__contact__form__contact__page {
    grid-column: 1/-1;
  }
  .content__terms__page {
    grid-column: 1/-1;
  }
  .form__dedicated__disp__container {
    grid-column: 1/-1;
  }
  .services__truck__type__single {
    grid-column: span 3;
  }
  .our__partner__slider__1__wrapper {
    grid-column: 1/-1;
  }
  .our__partner__slider__2__wrapper {
    grid-column: 1/-1;
  }
  .request__trial__week__section__home .grid-col-12 {
    padding-right: 1.5rem;
  }
  .slider__testimonial__container {
    grid-column: 1/-1;
  }
  .single__testinonal__slide {
    width: calc(100% - 2rem) !important;
  }
  .right__side__week__trail {
    display: none;
  }
  .left__side__form__of__trail__week {
    grid-column: 1/-1;
  }
  .left__side__ctd__qual {
    grid-column: 1/-1;
  }
  .ctd__qual__right {
    grid-column: 1/-1;
  }
  .apply__box__ctd__qual {
    padding: 1rem;
    margin-top: 2rem;
  }
  .left__side__image__ctd__qual {
    display: none;
  }
  .left__side__fixed__background__section {
    grid-column: 1/-1;
  }
  .right__side__fixed__background__section {
    grid-column: 1/-1;
    margin-top: 2rem;
  }
  .left__plaining__info__text__block {
    grid-column: 1/-1;
    padding: 0;
    margin-bottom: 2rem;
    background-color: white;
  }
  .right__side__landscape__image__plaining {
    grid-column: 1/-1;
  }
  .single__block__plainig__secetion {
    grid-column: span 6;
  }
  .left__image__plaing__section {
    grid-column: 1/-1;
  }
  .right__content__block__plaingin__section {
    grid-column: 1/-1;
    padding: 0;
    margin-top: 2rem;
  }
  .left__side__the__best__log {
    grid-column: 1/-1;
    margin-top: 2rem;
    grid-row: 2;
  }
  .left__info__block__footer {
    grid-column: 1/-1;
    margin-bottom: 2rem;
  }
  .terms__block__footer {
    grid-column: 1/3;
  }
  .links__block__footer {
    grid-column: 3/5;
  }
  .contact__block__footer {
    grid-column: 6/-1;
  }
  .background__map__image__footer {
    width: 100%;
  }
  .our__service__area__section__home .grid-col-12 {
    height: 40vh;
  }
  .map__image__area__service {
    grid-column: 1/-1;
  }
  .title__subtitle__box__with__two__button__container {
    grid-column: 1/-1;
  }
  .two__button__our__service__area {
    flex-direction: column;
    gap: 1rem;
  }
  .block__info__the__best__log__section {
    display: none;
  }
  .left__side__the__best__log img {
    max-width: 100%;
  }
  .right__side__the__best__log__section {
    grid-column: 1/-1;
  }
  .hambergur__menu__mobile {
    display: block;
    grid-column: 6/-1;
    justify-self: end;
    cursor: pointer;
  }
  .mobile__menu__container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.5s ease;
    overflow: hidden;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
  }
  .close__mobile__menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
  .mobile__menu__container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    list-style: none !important;
  }
  .mobile__menu__container ul li a {
    color: white;
    font-size: 30px;
  }
  .grid-col-12 {
    grid-template-columns: repeat(6, 1fr);
    padding: 0 20px;
  }
  .logo__section__header {
    grid-column: 1/6;
    width: 100%;
    grid-row: 1;
  }
  .the__best__action__button__container {
    gap: 1rem;
  }
  .hero__button__container {
    flex-direction: column;
    gap: 1rem;
  }
  .hero__info__part__home {
    grid-column: 1/-1;
    gap: 0.5rem;
  }
  .hero__line__subtitle {
    max-width: 100%;
  }
  .hero__info__part__home p {
    /* font-size: 10px !important; */
  }
  nav {
    display: none;
  }
  .call__to__action__button__header {
    display: none;
  }
  .section__we__are__subtitle {
    max-width: 100%;
  }
  .three__blocks__section__we__are__with__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .left__side__top__team__car {
    grid-column: 1/-1;
  }
  .right__side__top__team__car {
    grid-column: 1/-1;
    margin-top: 2rem;
  }
}
@media (min-width: 1600px) {
  .block__info__the__best__log__section {
    left: 55%;
  }
}

#wpadminbar {
  display: none !important;
}

.our__process__cards__container {
  grid-column: 1/-1;
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(10, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .our__process__cards__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.our__process__single__card__wrapper {
  grid-column: span 2;
  position: relative;
  box-shadow: 0px 0 3px rgba(0, 0, 0, 0.5);
  padding: 2.5rem 1rem;
  display: flex;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.our__process__single__card__wrapper:hover {
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
  transform: scale(1.01);
}
.single__card__icon__our__process {
  overflow: hidden;
  border-radius: 50%;
  border: 2px dashed black;
  width: 8rem;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single__card__number__our__process {
  position: absolute;
  top: -10%;
  font-size: var(--font-22px);
  left: -20%;
  color: #46331d;
  background: rgb(114, 78, 10);
  width: 100%;
  color: white;
  transform: rotate(-45deg);
  padding-left: 20%;
  font-weight: bold;
}
.single__card__icon__our__process img {
  object-fit: contain;
  width: 70%;
  height: 100%;
}
.our__process__delivery__section__home {
  width: 100%;
  padding-top: 5rem;
}
.title__section__our__process {
  grid-column: 1/-1;
  position: relative;
  text-align: center;
}
.title__section__our__process p {
  font-size: calc(var(--font-64px) - 12px);
  font-weight: 600;
  color: black;
}

.single__card__title__our__process p {
  text-align: center;
  font-size: calc(var(--font-18) + 2px);
  margin-top: 1rem;
  font-weight: 600;
}
.single__card__subtitle__our__process p {
  text-align: center;
  margin-top: 0.3rem;
  opacity: 0.5;
  font-size: calc(var(--font-18) - 3px);
}

.board__of__director__section__home {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.section__directors__title {
  grid-column: 1/-1;
  text-align: center;
  position: relative;
}
.section__directors__title p {
  font-size: calc(var(--font-64px) - 12px);
  font-weight: 600;
  color: black;
}
.container__board__of__director {
  margin-top: 3rem;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .container__board__of__director {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.single__director__wrapper__container__home {
  grid-column: span 2;
}
.left__side__imgbox__director__home {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  height: 45rem;
}

@media (max-width: 1600px) {
  .left__side__imgbox__director__home {
    height: 35rem;
  }
}
.left__side__imgbox__director__home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}
.left__side__imgbox__director__home .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.left__side__imgbox__director__home:hover .ori-image {
  opacity: 0;
}
.position__director {
  font-size: var(--font-22px);
  font-weight: 400;
  margin-top: 0.2rem;
  opacity: 0.5;
}
.title__name__director p {
  font-size: var(--font-22px);
  font-weight: 600;
  margin-top: 1rem;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #8e581a;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  z-index: 9999999999999;
  padding: 0rem 10rem;
}

.wave-wrapper {
  position: absolute;
  top: 0;
  pointer-events: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.logo__preloader {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.lottie__left__preloader lottie-player {
  width: 100%;
  height: 100%;
}
.site__title__preloader {
  font-size: var(--font-36px);
  color: var(--color-secondary);
  font-weight: 800;
}

.subtitle__preloader {
  text-align: center;
  color: var(--color-secondary);
  font-size: var(--font-18);
  font-weight: 400;
  max-width: 50%;
  margin: 0 auto;
  margin-top: 1rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .subtitle__preloader {
    max-width: 100%;
  }
  .preloader {
    padding: 0rem 2rem;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 8rem;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }

  25% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(-50%);
  }

  75% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(1);
  }
}
.hero__section__home__single {
  height: 50vh;
  background-position: center;
  background-attachment: fixed;
}

.single__container__content {
  grid-column: 1/-1;
}

/* Base list styles for content */
.single__container__content ul,
.single__container__content ol {
  padding-left: 1.5rem; /* or 24px */
  margin-bottom: 1rem;
}

/* List style */
.single__container__content ul {
  list-style: disc;
}

.single__container__content ol {
  list-style: decimal;
}

/* Nested lists */
.single__container__content ul ul,
.single__container__content ol ol,
.single__container__content ul ol,
.single__container__content ol ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  list-style-type: circle; /* optional */
}

/* Accordion Styles */

/* Container */
.testimonials-section-home {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background: #f9f9f9;
}

.testimonials-section-home .container {
  max-width: 1200px;
  margin: 0 auto;
  height: 35rem;
  overflow: hidden;
  position: relative;
}

.title-testimonial-part {
  text-align: center;
  margin-bottom: 60px;
}

.title-testimonial-part .sub-heading {
  font-size: 16px;
  color: gray;
  margin-bottom: 10px;
}

.title-testimonial-part .main-title {
  font-size: 36px;
  font-weight: bold;
  color: #111;
}

.testimonial-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

/* Each Column */
.testimonial-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Cards */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card .quote-icon {
  margin-bottom: 15px;
}

.testimonial-card .profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.profile-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.profile-name .name {
  font-weight: bold;
}

.profile-name .type {
  color: gray;
  font-size: 14px;
}

.message {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Gradients */
.gradient-top,
.gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.gradient-top {
  top: 0;
  background: linear-gradient(to bottom, #f9f9f9, transparent);
}

.gradient-bottom {
  bottom: 0;
  background: linear-gradient(to top, #f9f9f9, transparent);
}

/* Animations */
@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.testimonial-column.slide-up {
  animation: slide-up 20s linear infinite;
}

.testimonial-column.slide-down {
  animation: slide-down 20s linear infinite;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-columns {
    flex-direction: column;
    gap: 40px;
  }

  .testimonial-column {
    animation: none; /* stop infinite scroll on small screens */
  }
}

@media (max-width: 1024px) {
  .title__section__our__process p {
    font-size: calc(var(--font-64px));
    font-weight: 600;
    color: black;
  }
  .our__partners__title p {
    font-size: calc(var(--font-64px));
    font-weight: 600;
    color: black;
  }
  .section__directors__title p {
    font-size: calc(var(--font-64px));
    font-weight: 600;
    color: black;
  }
  .services__title__servie__page p:first-child {
    font-size: calc(var(--font-18));
    font-weight: 400;
    color: black;
  }
  .services__title__servie__page p:last-child {
    font-size: calc(var(--font-64px));
    font-weight: 600;
    color: black;
  }
}

.model__container__contact__header__wrapper{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100dvh;
	background:rgba(0,0,0,0.5);
	display:flex;
	justify-content:center;
	align-items:center;
	z-index:999999999;
	display:none;
}
.model__container__contact__header{
	width:30%;
	height:auto;
	background:white;
	border-radius:12px;
	padding:2rem;
	padding-top:5rem;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	column-gap:0.5rem;
	position:relative;
}
.close__btn__model{
	position:absolute;
	top:2%;
	right:2%;
	cursor:pointer;
}
.single__contact__info__header{
	grid-column:span 1;
/* 	text-align:center; */
	display:flex;
	flex-direction:column;
	border:0.5px solid gray;
	border-radius:8px;
	padding:0.5rem;
}
.single__contact__info__header .name{
	font-size:var(--font-18);
	font-weight:500;
}

.single__contact__info__header .position{
	font-size:var(--font-18);
	color:gray;
}
.single__contact__info__header .number{
	font-size:var(--font-18);
	text-decoration:underline;
}
.title__model__header{
	    font-size: var(--font-22px);
    font-weight: 600;
	position:absolute;
	top:2%;
	left:0%;
	display:flex;
	text-align:center;
	justify-content:center;
	align-items:center;
	width:100%;
}

.info__section__home__new{
	padding-top:5rem;
	padding-bottom:3rem;
}

.info__section__new__content{
	grid-column:1/-1;
}



/* Base list styles for content */
.info__section__new__content ul,
.info__section__new__content ol {
  padding-left: 1.5rem; /* or 24px */
  margin-bottom: 1rem;
}

/* List style */
.info__section__new__content ul {
  list-style: disc;
}

.info__section__new__content ol {
  list-style: decimal;
}

/* Nested lists */
.info__section__new__content ul ul,
.info__section__new__content ol ol,
.info__section__new__content ul ol,
.info__section__new__content ol ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  list-style-type: circle; /* optional */
}
.info__section__new__content p{
	font-size:var(--font-18);
}



/* Accordion Styles */




@media (max-width:1024px){
	.mobile__menu__container{
		flex-direction: column;
    align-items: center;
    justify-content: center;
	}
	.contact__info__header{
		display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
	}
	.contact__info__header a {
    width: 12%;
}
	.model__container__contact__header{
		    width: 60%;
    height: auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    padding-top: 5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    position: relative;
	}
}

.show__four__director_container  {
	    grid-template-columns: repeat(8, 1fr);
}

.show__four__director_container .left__side__imgbox__director__home{
	height:30rem;
}