:root {
  --font-default: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-lt-bukra: "29LT Bukra", sans-serif;
  --font-gotham: "Gotham", sans-serif;
  --font-inter-display: "Inter Display", sans-serif;
  --font-alexandria: "Alexandria", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #f48020;
  --color-secondary: #0d0d0d;
  --color-light: #fbfcfc;
  --color-light-2: #f1f1f1;
  --color-white: #fff;
}

/* Smooth scroll behavior */
/* :root {
  scroll-behavior: smooth;
} */

/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/
@font-face {
  font-family: '29LT Bukra';
  src: url('../fonts/29LTBukra-Regular.woff2') format('woff2'),
    url('../fonts/29LTBukra-Regular.woff') format('woff'),
    url('../fonts/29LTBukra-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: '29LT Bukra';
  src: url('../fonts/29LTBukra-Medium.woff2') format('woff2'),
    url('../fonts/29LTBukra-Medium.woff') format('woff'),
    url('../fonts/29LTBukra-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: '29LT Bukra';
  src: url('../fonts/29LTBukra-Bold.woff2') format('woff2'),
    url('../fonts/29LTBukra-Bold.woff') format('woff'),
    url('../fonts/29LTBukra-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Social Media Circled';
  src: url('../fonts/SocialMediaCircled.woff2') format('woff2'),
    url('../fonts/SocialMediaCircled.woff') format('woff'),
    url('../fonts/SocialMediaCircled.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplayLight-Light.woff2') format('woff2'),
    url('../fonts/InterDisplayLight-Light.woff') format('woff'),
    url('../fonts/InterDisplayLight-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
    url('../fonts/Inter-Bold.woff') format('woff'),
    url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
    url('../fonts/Inter-Light.woff') format('woff'),
    url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
    url('../fonts/Inter-Medium.woff') format('woff'),
    url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.woff') format('woff'),
    url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
    url('../fonts/Inter-SemiBold.woff') format('woff'),
    url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
    url('../fonts/Gotham-Bold.woff') format('woff'),
    url('../fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplaySemiBold-SemiBold.woff2') format('woff2'),
    url('../fonts/InterDisplaySemiBold-SemiBold.woff') format('woff'),
    url('../fonts/InterDisplaySemiBold-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Alexandria';
  src: url('../fonts/Alexandria-Regular.woff2') format('woff2'),
    url('../fonts/Alexandria-Regular.woff') format('woff'),
    url('../fonts/Alexandria-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}





/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  font-size: 18px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.container-xl {
  max-width: 1680px;
  padding: 0 40px;
}

.dir-ltr {
  direction: ltr !important;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader img {
  animation: animate-preloader 1.5s infinite ease-in-out;
  width: 180px;
}

@keyframes animate-preloader {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

/* #preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

.header {
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding-top: 30px;

}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 15px 0;
  animation: slideDown 0.4s ease-in-out;
  background-color: var(--color-white);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 0 20px 0px #0000002e;
}

.header.sticked .search-wrapper {
  background: var(--color-white);
}

@keyframes slideDown {
  0% {
    top: -100px;
  }

  100% {
    top: 0;
  }
}

.header .logo {
  width: 180px;
}

.header .logo img {
  margin-right: 6px;
  width: 180px;
  transition: all 0.5s;
}

.header.sticked .logo img {
  width: 160px;
}

.sticked-header-offset {
  margin-top: 0px;
}

section,
#our-values {
  scroll-margin-top: 120px;
}

.get-touch .get-touch-btn {
  height: 77px;
  border-radius: 15px;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  font-size: 17px;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

.multi-language-btn {
  background: transparent;
  border: none;
  outline: none;
  font-size: 25px;
  padding: 10px 20px 5px;
  position: relative;
  border-radius: 20px 20px 0 0;
  transition: 0s;
}

.multi-language:hover .multi-language-btn {
  background: var(--color-primary);
}

.multi-language-btn::before {
  content: "";
  background: url(../img/shapes.svg);
  width: 37px;
  height: 46px;
  background-size: 100%;
  background-position: bottom left;
  position: absolute;
  background-repeat: no-repeat;
  right: -40px;
  bottom: -5px;
  transform: rotate(90deg);
  transition: 0s;
  opacity: 0;
}

.multi-language:hover .multi-language-btn::before {
  opacity: 1;
}

.navbar .multi-language.dropdown ul {
  background: var(--color-primary);
  border-radius: 0px 20px 20px 20px;
  border: 0;
  box-shadow: none;
  padding: 10px;
}

.navbar .multi-language.dropdown ul li .dropdown-item {
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
  background-color: var(--color-white);
}

.navbar .multi-language.dropdown ul li .dropdown-item.active {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.navbar-search {
  font-size: 25px;
}

.navbar .multi-language.dropdown ul {
  left: 0;
  right: auto;
  top: 100%;
  transition: 0s;
}

/* Hide by default */
.search-wrapper {
  display: none;
  position: fixed;
  /* fixed so it stays in viewport */
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  background: #fcfcfc;
  border: 1px solid var(--color-default);
  border-radius: 12px;
  padding: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  width: 100%;
  max-width: 900px;
}

.search-input {
  border: none;
  outline: none;
  padding: 13px 14px;
  background: transparent;
  font-size: 16px;
  width: 90%;
}

.search-btn {
  background: #f07c25;
  border: none;
  padding: 0 px;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  float: right;
  width: 50px;
  height: 50px;
  font-size: 18px;
}

.search-toggle {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.navbar-search {
  color: var(--color-primary);
}

.mobile-toggle-icon {
  width: 30px;
}

.navbar .nav-link a,
.navbar .nav-link a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-default);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

@media (min-width: 992px) {
  .mb-language-btn {
    display: none;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .navbar {
    padding: 0 0px 0 50px;
    flex: 1;
  }

  .navbar .navbar-div {
    background-color: var(--color-secondary);
    flex: 1;
    display: flex;
    padding: 20px 40px;
    border-radius: 20px;
    margin-right: 10px;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    flex: 1;

  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar .nav-link a i,
  .navbar .nav-link a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar .nav-link a:hover:before,
  .navbar li.nav-link:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar .nav-link a:hover,
  .navbar .nav-link .active,
  .navbar .nav-link .active:focus,
  .navbar li.nav-link:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 100px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-default);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1167px) and (min-width: 992px) {

  .navbar .nav-link a,
  .navbar .nav-link a:focus {
    font-size: 16px;
  }

  .get-touch .get-touch-btn {
    font-size: 16px;
    padding: 10px 15px;
    height: 62px
  }

  .header .logo img,
  .header.sticked .logo img {
    width: 120px;
  }

  .header .logo {
    width: 120px;
  }

  .navbar {
    padding-left: 15px;
  }

  .navbar .navbar-div {
    padding: 15px 20px;
  }

}

@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 10px;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: auto;
    transition: 0.3s;
    z-index: 9997;
    background-color: var(--color-secondary);
    border-radius: 20px;
  }

  .multi-language {
    display: none;
  }

  .navbar-search {
    display: none;
  }

  .navbar-div {
    padding: 80px 65px 40px 80px;
    width: 100%;
  }

  .navbar-div ul {
    padding-left: 0;
    margin-bottom: 0;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 8px 0px;
    font-family: var(--font-inter-display);
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar-div .nav-link a::before {
    content: "";
    background: url(../img/menu-link-active.webp);
    width: 25px;
    height: 25px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
  }

  .navbar-div .nav-link.active a::before {
    opacity: 1;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 55px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .main-menu .get-touch {
    display: none;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 10px;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.027);
    z-index: 9996;
    display: none;
  }

  .navbar-div .nav-link.active a {
    border-bottom: 1px solid var(--color-primary);
  }

  .mb-language-btn {
    color: var(--color-white);
    position: absolute;
    top: 22px;
    left: 40px;
    font-size: 26px;
  }

  .mb-language-btn i {
    padding: 0px;
    display: inline-block;
    background-color: var(--color-primary);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    line-height: 43px;
    text-align: center;
  }
}


/**hero section**/
.hero {
  padding: 10px 5px 0 5px;
}

.hero-container {
  border-radius: 30px 30px 15px 15px;
  background-image: url(../img/hero-bg-blank.webp);
  height: 100vh;
  max-height: 1400px;
  min-height: 680px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  padding-top: 150px;
  position: relative;
  overflow: hidden;
  will-change: background-position;
}

.hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/hero-img.webp);
  background-size: cover;
  background-position: 50% 55%;
  background-repeat: no-repeat;
}


.hero-clouds {
  position: absolute;
  bottom: 0%;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  will-change: transform;

}

.hero-clouds img {
  width: 140%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  max-width: 1000px;
  padding-bottom: 60px;
}

.hero-content h1 {
  font-size: 65px;
  text-transform: uppercase;
  color: #000000;
  font-family: var(--font-lt-bukra);
  text-align: left;
  font-weight: 500;
}

.hero-bottom {
  display: flex;
  width: 100%;
  padding: 0 10px;
  z-index: 2;
}

.hero-bottom .hero-bottom-left {
  background-color: #000;
  flex: 1;
  border-radius: 40px 0 0 0;
}

.hero-bottom-btn {
  padding: 20px 30px 140px 100px;
  background: url(../img/hero-bottom.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 436px;
  text-align: center;
}

.hero-bottom-btn a {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  text-align: left;
  display: inline-flex;
  max-width: 200px;
}

.hero-bottom-btn a i {
  color: var(--color-primary);
  font-size: 40px;
  margin-right: 20px;
}

.explore {
  padding: 0 15px;
  z-index: 4;
  position: relative;
}

.explore-container {

  background-color: #000;
  padding-bottom: 200px;
  border-radius: 0 0 20px 20px;
}

.explore-link a {
  display: inline-flex;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-light-2);
  color: var(--color-white);
  font-size: 20px;
  font-family: var(--font-lt-bukra);
}

.explore-link a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.explore-link a img {
  width: 18px;
  margin-left: 50px;
  transition: all 0.5s;
}

.explore-link a:hover img {
  transform: rotate(45deg);
}

.explore-link {
  display: inline-block;
}

.explore-link-col-2 {
  padding-top: 100px;
}

.explore-link-col-3 {
  padding-top: 200px;
}

.explore-link-col-4 {
  padding-top: 300px;
}

.explore-counter {
  position: absolute;
  z-index: 2;
  top: 0;

}

.explore-counter span {
  color: var(--color-white);
  font-family: var(--font-lt-bukra);
  font-size: 16px;
}

.explore-counter .explore-counter-title span {
  color: var(--color-primary);
  font-family: var(--font-lt-bukra);
  font-size: 25px;

}

.explore-counter-1 {
  top: 16%;
  left: 15%;
}


.explore-counter-2 {
  top: 0%;
  left: 26%;
}

.explore-counter-3 {
  top: 6%;
  left: 46%;
}

.explore-counter-4 {
  top: 8%;
  left: 66%;
}

.explore-details {
  position: absolute;
  bottom: -0%;
  left: 0;
  width: 100%;
  padding-left: 10%;
}

.explore-title h2 {
  color: var(--color-white);
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  font-size: 80px;
  text-transform: uppercase;
}

.explore-title img {
  margin-bottom: 30px;
}

.explore-info {
  padding-top: 40px;
}

.explore-info p {
  font-size: 20px;
  font-family: var(--font-lt-bukra);
  color: var(--color-white);
}

.explore-our-journey {
  padding-bottom: 80px;
}

.explore-our-img img {
  display: block;
  margin: 0 auto;
}

.employee-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #000;
  /* black border for separation */
  object-fit: cover;
}

.employee-avatars img:not(:first-child) {
  margin-left: -15px;
  /* overlap effect */
}

.explore-info p.employee-avatars-text {
  font-size: 16px;
  padding-right: 10px;
  font-family: var(--font-lt-bukra);
  color: var(--color-white);
  margin: 0;
}

.clients {
  padding: 80px 0;
}

.clients-slider {
  text-align: center;
}

.clients-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.clients-slider img {
  filter: grayscale(100%);
}

.clients-slider img:hover {
  filter: grayscale(0);
}


.sec-lg-title img {
  margin-bottom: 30px;
}

.sec-lg-title h2 {
  font-size: 65px;
  font-family: var(--font-lt-bukra);
  font-weight: bold;
}

.sec-lg-subtitle p {
  font-size: 18px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.recent-posts {
  overflow: hidden;
}

.recent-posts-slider {
  padding-bottom: 100px;
}

.recent-posts .sec-lg-subtitle {
  max-width: 500px;
}

.post-item {
  padding: 10px;
  border-radius: 14px;
  background-color: #edf1f2;
}

.post-slide-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-date {
  font-size: 16px;
  color: #f48020;
  font-weight: bold;
  font-family: var(--font-default);
  text-align: left;
  margin-bottom: 10px;
}

.post-date::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: var(--color-primary);
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.post-slide-img img {
  border-radius: 14px;
  width: 100%;
  /* height: 260px; */
  object-fit: cover;
  object-position: top center;

}

.post-title {
  flex: 1;
}

.post-title h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-default);
  font-family: var(--font-lt-bukra);
}

.swiper-arrow-div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px;
  margin-top: 40px;
}

.swiper-prev {
  margin-right: 5px;
}

.swiper-prev,
.swiper-next {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.swiper-prev:hover,
.swiper-next:hover {
  background-color: transparent;
  color: var(--color-primary);
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: #ffffff;
  border: none;
  font-family: var(--font-inter-display);
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 5px 5px 20px;
  transition: all 0.5s;
}

.read-more i {
  margin-left: 15px;
  color: var(--color-primary);
  font-size: 40px;
  line-height: 40px;
  transition: all 0.5s;
}

.read-more:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  /* Slight darken on hover */
}

.read-more:hover i {
  color: var(--color-secondary);
  transform: rotate(45deg);
}


/* .post-slider {
  overflow: visible;
} */

.recent-posts .recent-posts-slider {
  clip-path: inset(-100vw -100vw -100vw 0);
}

.loc-acr-heading h2 {
  font-size: 65px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  color: var(--color-primary);
}

.loc-acr-heading img {
  margin-left: 15px;
}

.loc-acr-heading h3 {
  font-size: 40px;
  max-width: 450px;
  font-family: var(--font-lt-bukra);
}

.loc-acr-heading p {
  font-family: var(--font-lt-bukra);
  font-size: 18px;
  font-weight: 500;
}

.locations-across {
  padding-bottom: 40px;
  overflow: hidden;
}

.locations-across-right {
  padding-top: 50px;
}

.supplier-networ {
  padding: 0 10px 120px 10px;
}

.supplier-container {
  background-color: #edf1f2;
  border-radius: 23px;
}

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

.supplier-form {
  padding: 80px 0;
}

.sec-heading img {
  margin-bottom: 20px;
}

.sec-heading h2 {
  font-size: 40px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.sec-heading h2 i {
  font-style: normal !important;
  color: var(--color-primary);
}

.sec-heading p {
  font-family: var(--font-lt-bukra);
  font-size: 18px;
  font-weight: 400;
}

.supplier-form .sec-heading h2 {
  max-width: 400px;
}

.supplier-form .sec-heading {
  margin-bottom: 30px;
}

.supplier-form .form-control {
  padding: 20px 20px;
  background-color: #e5e5e5;
  border-radius: 50px;
  box-shadow: none;
}

.supplier-form .form-control:focus {
  border-color: var(--color-primary);
}

.investment-highlights-left .sec-heading h2 {
  margin-bottom: 30px;
}

.supplier-img img {
  border-radius: 20px;
}

.impact-glance .sec-heading {
  max-width: 600px;
}

.stats-section {
  padding: 50px 0;
}

.stat-number {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-lt-bukra);
}

.stat-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px 25px;
}

.stat-divider {
  height: 1px;
  background-color: #f26b1d;
  margin: 30px 0;
  opacity: 0.5;
}

.stat-icon {
  color: #f26b1d;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.stat-subtext {
  color: #888;
  font-size: 1rem;
}

.stat-card h5 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Inter";
}

.supplier-container {
  padding-bottom: 80px;
}

.impact-glance {
  padding: 80px 0;
}




.footer {
  padding: 15px;
}

.footer-container {
  background-color: var(--color-secondary);
  border-radius: 40px;
  padding: 80px 0 40px;
}

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

.footer-logo img {
  width: 200px;
}

.footer-content h3 {
  font-size: 35px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  color: var(--color-white);
}

.footer-content {
  max-width: 400px;
}

.footer-top {
  padding-bottom: 120px;
}

.footer-link a {
  color: var(--color-white);
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 500;
  padding: 5px;
  display: inline-block;
}

.footer-link a:hover {
  color: var(--color-primary);
}

.footer-social ul {
  display: flex;
  flex-wrap: wrap;
}

.footer-social ul li a {
  color: var(--color-white);
  font-size: 20px;
  padding: 10px;
}

.footer-social ul li a:hover {
  color: var(--color-primary);
}

.footer-lg {
  text-align: right;
}

.footer-lg a {
  display: inline-flex;
  align-items: center;
  padding: 0px 11px 0 5px;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  font-size: 24px;
  color: var(--color-white);
  font-weight: 600;
}

.footer-lg a i {
  margin-right: 10px;
}

.footer-copy-right p {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--font-default);
  color: var(--color-white);
  margin: 0;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-info-col {
  color: var(--color-white);
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 400;
  padding: 5px;
  display: inline-block;
  padding: 10px;
}

.footer-info-col p {
  display: block;
  margin: 0;
}

.footer-info-col a {
  color: var(--color-white);
}

.footer-info-col a:hover {
  color: var(--color-primary);
}

/****about****/
.hero-section {
  padding: 170px 10px 0;
}

.about-hero-container {
  background-image: url(../img/about-bg.webp);
  height: calc(100vh - 160px);
  max-height: 1200px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 30px;
  align-items: center;
  display: flex;
  padding: 150px 0;
}

.about-hero-content p {
  font-size: 24px;
  font-family: var(--font-lt-bukra);
  color: #fff;
  font-weight: 500;
}

.about-hero-content h1 {
  font-size: 70px;
  font-family: var(--font-lt-bukra);
  color: #fff;
  font-weight: 500;
  max-width: 1000px;
}

.our-story {
  padding: 120px 0 80px;
}

.our-story .our-story-left h2 {
  font-size: 90px;
  font-family: var(--font-lt-bukra);
  font-weight: 700;
  max-width: 300px;
  margin-bottom: 30px;
}

.our-story .our-story-left .sub-title {
  font-size: 24px;
  font-family: var(--font-inter-display);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: block;
}

.our-story .our-story-left p {
  font-size: 30px;
  font-family: var(--font-lt-bukra);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: block;
  max-width: 400px;
}

.our-story-content p {
  color: var(--color-secondary);
  font-size: 18px;
  font-family: var(--font-lt-bukra);
}

.our-story-content {
  padding-top: 60px;
}

.our-vision {
  padding: 50px 0 100px;
}

.our-vision-card {
  background-color: #000;
  padding: 50px 50px;
  border-radius: 40px;
}

.our-vision-icon p {
  position: absolute;
  right: 0;
  top: 30px;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
}

.vision-card-content h2 {
  font-family: var(--font-lt-bukra);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.vision-card-content h3 {
  font-size: 24px;
  font-family: var(--font-lt-bukra);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.vision-card-content p {
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-lt-bukra);
  font-size: 16px;
}

.our-vision-icon {
  margin-bottom: 60px;
}

.our-vision-icon img {
  margin-left: -30px;
}

.our-value {
  background-color: #f5f6f6;
  padding: 60px 50px;
  border-radius: 40px;
  margin-top: 20px;
}

.our-value-icon img {
  display: inline-block;
}

.our-value-icon {
  text-align: right;
}

.our-value h2 {
  font-weight: 700;
  font-family: var(--font-lt-bukra);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
}

.adv-value ul {
  max-height: 325px;
  margin-top: 20px;
  padding-left: 20px;
  overflow-y: scroll;
  scroll-behavior: smooth;

  /* Firefox scrollbar */
  scrollbar-width: thin;
  /* makes scrollbar slim */
  scrollbar-color: #f48020 #f1f1f1;
  /* thumb color | track color */

  /* Legacy Microsoft browsers */
  -ms-overflow-style: scrollbar;
  /* always show scrollbar */
}

/* Chrome, Edge, Safari, Opera (WebKit browsers) */
.adv-value ul::-webkit-scrollbar {
  width: 8px;
  /* scrollbar width */
}

.adv-value ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* track color */
  border-radius: 10px;
}

.adv-value ul::-webkit-scrollbar-thumb {
  background-color: #f48020;
  /* thumb color */
  border-radius: 10px;
  /* rounded edges */
  border: 2px solid #f1f1f1;
  /* space around thumb */
}

.adv-value ul::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* hover effect */
}

/* Optional: Dark mode support */
@media (prefers-color-scheme: dark) {
  .adv-value ul {
    scrollbar-color: #666 #222;
  }

  .adv-value ul::-webkit-scrollbar-track {
    background: #222;
  }

  .adv-value ul::-webkit-scrollbar-thumb {
    background-color: #666;
    border: 2px solid #222;
  }
}


.adv-value ul li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}

.adv-value ul li:last-child {
  margin-bottom: 0;
}

.adv-value-number {
  width: 13%;
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-inter-display);
}

.adv-value-title {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-lt-bukra);
  display: block;
}

.adv-value-text {
  width: 100%;
  display: block;
  font-size: 18px;
}

.meet-team {
  padding: 50px 0 100px;
}

.meet-team .explore-info p {
  color: var(--color-secondary);
}

.meet-team .explore-info p.employee-avatars-text {
  color: var(--color-secondary);
  font-weight: 500;
}

.team-img img {
  width: 100%;
}

.team-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.team-card .team-dis {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
  color: var(--color-white);
}

.team-card::before {
  content: "";
  background-image: url(../img/team-bg.webp);
  position: absolute;
  height: 50%;
  opacity: 0.8;
  left: 0;
  bottom: 0;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.team-img img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all 0.5s;
}

.team-card:hover .team-img img {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

.team-dis h4 {
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  font-size: 22px;
}

.team-dis p {
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  font-size: 16px;
}

.affiliate-companies .sec-heading {
  margin-bottom: 10px;
}

.affiliate-companies {
  padding: 50px 0 100px;
}

.affiliate-companies .clients-slider {
  padding: 50px 0;
}

.our-branding-card {
  background-color: var(--color-primary);
  padding: 30px;
  border-radius: 30px;
}

.our-branding-card h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-lt-bukra);
  color: var(--color-white);
}

.download-info {
  display: flex;
  padding-top: 40px;
  align-items: center;
}

.download-info p {
  margin: 0;
  flex: 1;
  padding-right: 30px;
  font-size: 18px;
}

.download-info .read-more:hover {
  background: var(--color-white);
}

.our-branding {
  padding: 50px 0 150px;
}

.supplier-form textarea {
  min-height: 200px;
  border-radius: 25px !important;
}

.heading-style-2 .sub-title {
  font-family: var(--font-gotham);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.heading-style-2 h1 {
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  font-size: 60px;
  margin-bottom: 20px;
}

.heading-style-2 p {
  font-size: 20px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.contact-section {
  padding: 100px 0 100px;
}

.contact-details {
  margin-top: 30px;
}

.contact-details h5 {
  font-weight: 700;
  font-family: var(--font-default);
  font-size: 18px;
  margin-top: 20px;
}

.contact-details p {
  font-weight: 400;
  font-family: var(--font-default);
  font-size: 16px;
}

.contact-details a {
  color: var(--color-secondary);
}

.contact-details a:hover {
  color: var(--color-primary);
}

.contact-details .footer-social li a {
  color: var(--color-secondary);
}

.contact-details .footer-social {
  margin-top: 30px;
}

.contact-left {
  padding-right: 30px;
}

.privacy-policy-section {
  padding: 100px 0;
}

.heading-style-2 {
  margin-bottom: 30px;
}

.privacy-policy-section h3 {
  font-size: 24px;
  color: var(--color-primary);
  font-family: var(--font-lt-bukra);
  font-weight: 700;
  margin-top: 20px;
}

.our-locations {
  padding: 100px 0;
}

.locations-card {
  padding: 15px;
  background-color: #f6f6f6;
  border-radius: 15px;
  margin-top: 10px;
}

.locations-card img {
  margin-right: 20px;
  align-self: center;
}

.locations-card p {
  margin-bottom: 0;
}

.locations-card-right {
  align-self: center;
}

.lco-map {
  margin-top: 0px;
}

.navbar-div .nav-link.active a {
  color: var(--color-primary);
}

.about-hero.media-center-hero .about-hero-container {
  background-image: url(../img/media-center-hero-3.webp);
  background-position: top center;
  align-items: flex-end;
  padding: 150px 0 50px;
  background-size: cover;
  height: calc(100vh - 160px);
  max-height: 1200px;
  background-attachment: fixed;
}

.about-hero.media-center-hero .about-hero-content h1 {
  max-width: 1100px;
  text-shadow: 0px 0 12px #0000009a;
}

.building-Stronger-content h2 {
  font-weight: bold;
  font-size: 40px;
  font-family: var(--font-lt-bukra);
  max-width: 800px;
}

.building-Stronger {
  padding: 100px 0;
}

.investment-highlights {
  padding: 15px;
}

.investment-highlights-container {
  background-color: #f8f4f1;
  padding: 40px;
  border-radius: 30px;
}

.investment-icon-box {
  background-color: #070707;
  padding: 30px;
  border-radius: 30px;
  margin: 10px 0;
  transition: all 0.5s;
}

.investment-icon-box:hover {
  background-color: var(--color-primary);
}

.investment-icon-box img {
  width: 50px;
  padding-bottom: 140px;
}

.investment-icon-box:hover img {
  filter: brightness(0) invert(1);
}

.investment-icon-box h3 {
  color: #fff;
  font-size: 24px;
  font-family: var(--font-lt-bukra);
}

.investment-highlights-left .sec-heading p {
  max-width: 400px;
}

.ipo-timeline-list {
  display: flex;
  flex-wrap: wrap;
}

.ipo-timeline-card {
  padding: 5px;
  width: 20%;
}

.ipo-timeline-dis {
  background-color: #e8e8e8;
  padding: 30px;
  border-radius: 30px;
}

.ipo-timeline-dis h3 {
  margin-bottom: 100px;
  font-size: 18px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.ipo-timeline-dis p {
  margin-bottom: 0;
  font-size: 14px;
  font-family: var(--font-lt-bukra);

}

.ipo-timeline-card:hover .ipo-timeline-dis {
  background-color: var(--color-primary);
}

.ipo-timeline {
  padding: 50px 0 100px;
}

.key-documents .our-branding-card h3 {
  font-weight: 500;
  margin: 10px 0;
}

.key-documents .sec-heading {
  margin-bottom: 30px;
}

.download-btn i {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 20px;
}

.download-btn:hover {
  background-color: var(--color-white);
}

.download-btn:hover i {
  transform: none;
}

.faq {
  padding: 50px 0 100px;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 20px !important;
  margin-bottom: 15px;
  padding: 30px;
  overflow: hidden;
  border: 0;
}

.faq-header {
  font-size: 18px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
}

.faq-header i {
  font-size: 0.6rem;
  margin-right: 6px;
}

.faq-question {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 10px 0 0;
  font-family: var(--font-lt-bukra);
}

.accordion-button::after {
  display: none !important;
  /* Hide default arrow */
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary);
}

.toggle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-primary);
  border: 1px solid #eee;
}

.faq-body {
  font-size: 1rem;
  color: #555;
  padding: 10px 0;
  margin-top: 10px;
}

.faq .sec-heading {
  margin-bottom: 60px;
}

.media-center-banner .hero-container {
  background-image: url(../img/media-centre-new.webp);
  height: calc(100vh - 20px);
  padding-bottom: 60px;
  max-height: 1200px;
  background-position: center top 70%;
  background-attachment: scroll;
}

.media-center-banner .about-hero-content {
  display: flex;
}

.mc-banner-link a {
  font-size: 18px;
  color: var(--color-white);
  font-weight: bold;
  text-align: left;
  display: inline-flex;
  max-width: 200px;
}

.mc-banner-link a i {
  color: var(--color-primary);
  font-size: 40px;
  margin-right: 20px;
}

.mc-banner-link {
  align-self: flex-end;
}

.media-center-date {
  position: absolute;
  z-index: 2;
  color: var(--color-white);
  top: 30%;
  right: 10%;
}

.media-center-date p {
  font-size: 22px;
  font-family: var(--font-lt-bukra);
  font-weight: 600;
}

.news-left {
  border-radius: 15px;
  color: #fff;
  padding: 30px;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;

}

.news-left::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.news-left h2 {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--font-lt-bukra);
  z-index: 2;
}

.news-left .date {
  font-size: 1.3rem;
  font-family: var(--font-gotham);
  margin-bottom: 10px;
  z-index: 2;
}

.news-left .news-left-arrow {
  position: absolute;
  top: 10%;
  right: 10%;
  padding: 5px;
  z-index: 3;
}

.news-left .news-left-arrow img {
  width: 40px;
}

.news-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 15px;
}

.news-item>img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.news-arrow img {

  width: 20px;
  transform: rotate(45deg);
}

.news-content .date {
  font-size: 0.85rem;
  color: #f37021;
  font-weight: 600;
  font-family: var(--font-inter-display);
}

.news-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 3px 0;
  font-family: var(--font-inter-display);
}

.news-content p {
  font-size: 0.85rem;
  color: #bbbdbf;
  margin: 0;
  font-family: var(--font-default);
}

.news-arrow {
  margin-left: auto;
  margin-top: 5px;
}

.news-item.disabled {
  opacity: 0.4;
}

.news-section {
  padding: 150px 0;
}

.news-list-card {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 20px;
  position: relative;
  padding-left: 40px;
  padding-bottom: 50px;
  z-index: 3;
}

.news-list-card a h5 {
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.news-list-card a:hover h5,
.news-list-card a:hover .news-content h5 {
  color: var(--color-primary) !important;
}

.news-list-overlay {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 100%);
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

.careers-header {
  padding: 120px 0 60px;
  text-align: center;
}

.careers-banner {
  position: relative;
  min-height: 600px;
  border-radius: 50px;
  overflow: hidden;
}

.careers-banner-content {
  position: absolute;
  padding: 3%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.careers-banner>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.careers-banner-content span.category {
  background-color: var(--color-primary);
  padding: 5px 15px;
  color: var(--color-white);
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 20px;
}

.careers-banner-content h2 {
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  font-size: 60px;
  margin-bottom: 20px;
  color: var(--color-white);
}

.read-more.read-more-white {
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.apply-now-btn {
  text-align: right;
  margin-bottom: 30px;

}

.why-join-us {
  padding: 120px 0 60px;
}

.why-join-us .sec-heading h2 {
  margin-bottom: 20px;
}

.adv-card {
  padding: 30px;
  margin-top: 40px;
  border-radius: 30px;
  background-color: var(--color-secondary);
}

.adv-card img {
  width: 200px;
  margin: 0 auto 40px;
  display: block;
}

.adv-card h3 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-lt-bukra);
}

.perks-benefit {
  padding: 60px 0 120px;
}

/* Custom styling for the section */

.benefit-card {
  background: #f6f6f6;
  border-radius: 25px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 40px;
  padding: 80px 30px 30px;
  text-align: center;
  position: relative;
  flex: 1;
}

.benefit-card .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 16px;
  font-weight: normal;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.benefit-card h5 {
  font-weight: 500 !important;
  font-family: var(--font-lt-bukra);
  color: #0d0d0d;
  font-size: 20px;
}

.icon-box img {
  width: 50px;
}

.benefit-card .badge.bg-warning {
  background-color: var(--color-primary) !important;
}

.perks-benefit {
  padding: 60px 0 120px;
}

.our-locations-details .heading-style-2 p {
  margin-bottom: 30px;
}

/* .slide-words {
  overflow: hidden;
  display: inline-block;
} */
.slide-words .word {
  display: inline-block;
  white-space: pre;
}

/* Headquarters Header */
.branch-header {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.branch-header i {
  font-size: 2rem;
  color: #ff6600;
}

/* Accordion Styling */
.branch-accordion .accordion-button {
  background: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
}

.branch-accordion .accordion-button:focus {
  box-shadow: none;
}

.branch-accordion .accordion-button i {
  margin-right: 10px;
}

.branch-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
}

.loc-accordion .accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 5px;
}

.locations-card-inner {
  display: flex;
}

.locations-card-inner>img {
  width: 50px;
  margin-right: 10px;
}

.loc-accordion .kuwait-acc .accordion-button {
  display: inline-flex;
  width: auto;
  background-color: #f6f6f6;
  margin-left: auto;
  color: #000;
  border-radius: 50px !important;
  padding: 5px 5px 5px 15px;
}

.loc-accordion .kuwait-acc .accordion-button span {
  color: var(--color-secondary);
}

.loc-accordion .accordion-header {
  display: flex;
}



.kuwait-acc .accordion-button:not(.collapsed) {
  color: var(--color-secondary);
}

.loc-accordion .accordion-button {
  border-radius: 10px !important;
  padding: 10px 5px 10px 15px;
  font-size: 20px;
  box-shadow: none !important;
  background-color: #000;
  color: var(--color-white);
  width: 100%;

}

.loc-accordion .accordion-button span {
  margin-right: 20px;
  color: var(--color-primary);
}

.loc-toggle-icon {
  width: 40px;
  height: 40px;
  background-color: #000;
  display: inline-flex;
  align-self: center;
  justify-content: center;
  border-radius: 100px;
  margin-left: auto;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 40px;
}

.loc-accordion .accordion-flush .accordion-item {
  border: 0;
}

.loc-accordion .accordion-item {
  margin-bottom: 10px;
}

.locations-card.locations-card-primary {
  background-color: var(--color-primary);
}

.locations-card.locations-card-primary .locations-card-inner>img {
  filter: brightness(0) invert(1);
}

.locations-card.locations-card-primary {
  color: #fff;
  font-size: 14px;
}

.locations-card.locations-card-primary .locations-card-inner i {
  font-size: 30px;
  margin-right: 10px;
}

.locations-card.locations-card-primary .locations-card-inner>img {
  width: 30px;
}

.lco-map {
  border-radius: 20px;
  overflow: hidden;
}

.content-card h2 {
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  font-size: 30px;
}

.loc-dropdown {
  position: relative;
  display: inline-block;
}

.loc-dropdown .dropdown-btn {
  display: inline-flex;
  width: auto;
  background-color: #f6f6f6;
  margin-left: auto;
  color: #000;
  border-radius: 50px !important;
  padding: 5px 5px 5px 15px;
  border: none;
  align-items: center;
  outline: none;
  font-size: 18px;
  font-weight: 500;
}

.loc-dropdown .dropdown-btn::before {
  content: "";
  background: url(../img/shapes.svg);
  width: 51px;
  height: 44px;
  background-size: 100%;
  background-position: bottom left;
  position: absolute;
  background-repeat: no-repeat;
  right: auto;
  left: -45px;
  bottom: -4px;
  transform: none;
  opacity: 0;
}

.loc-dropdown .dropdown-btn i {
  width: 40px;
  height: 40px;
  background-color: #000;
  display: inline-flex;
  align-self: center;
  justify-content: center;
  border-radius: 100px;
  margin-left: auto;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 40px;
  margin-left: 12px;
}

.loc-dropdown .dropdown-btn i::before {
  vertical-align: middle;
  line-height: 40px;
}



.loc-dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  width: 200px;
  left: auto;
  right: 0;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--color-primary);
  border-radius: 25px 0 25px 25px;
  opacity: 0;
  visibility: hidden;
  /* transform: translateY(-10px); */
  /* transition: all 0.3s ease; */
  z-index: 25;
}

.loc-dropdown .dropdown-list.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.loc-dropdown .dropdown-list li {
  padding: 12px 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-secondary);
  border-radius: 15px;
  background-color: var(--color-white);
  transition: background 0.25s ease;
  text-align: center;
  margin: 5px 0;
}

.loc-dropdown .dropdown-list li.active {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.loc-dropdown .dropdown-list li:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.loc-dropdown.show-drop .dropdown-btn {
  background-color: var(--color-primary);
  border-radius: 30px 23px 0 0 !important;
}

.loc-dropdown.show-drop .dropdown-btn::before {
  opacity: 1;
}

.loc-dropdown .dropdown-btn::after {
  content: "\f229";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 40px;
  height: 40px;
  background-color: #000;
  display: inline-flex;
  align-self: center;
  justify-content: center;
  border-radius: 100px;
  margin-left: auto;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 40px;
  margin-left: 12px;
}

.explore-img-mb {
  display: none !important;
}

.team-photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.team-photo::before {
  content: "";
  background-image: url(../img/team-photo-bg.webp);
  position: absolute;
  height: 40%;
  opacity: 0.8;
  left: 0;
  bottom: 0;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.locations-across-right-1 {
  position: relative;
  /* max-width: 600px; */
  margin: 40px auto 50px;
  padding: 0 !important;
  overflow: hidden;
}

/* .locations-across-right img.opacity-0{
  max-width: 600px;
} */
#earth {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 50%;
  background-repeat: repeat-x;
  background-image: url(../img/map-bg.webp);
  background-size: cover;
  box-shadow: inset 0px 0px 100px 30px #f5dfc0, 0px 0px 0px 0px rgba(226, 226, 226, 0.44);
  transform-style: preserve-3d;
  animation: rotate 30s linear infinite;
  transform: rotate(10deg);
  background-color: #fff;
}

@keyframes rotate {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.adv-value-info span {
  width: 100%;
}

.artical-wrapper {
  padding: 80px 0;
}

.artical-thumbnail {
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 165px;
}

.artical-thumbnail img {
  width: 100%;
}

.artical-heading {
  /* padding: 30px; */
  padding-bottom: 30px;
}

.artical-date span {
  font-weight: 600;
}

.artical-date span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 20px;
  display: inline-block;
  background: var(--color-primary);
  margin-right: 10px;
}

.artical-date {
  margin-bottom: 20px;
}

.artical-title h1 {
  font-weight: 700;
  font-size: 50px;
}

.artical-title h1 span {
  margin-bottom: 10px;
  display: block;
}

.artical-content {
  /* padding-top: 60px;
  columns: 2; */
  font-size: 18px;
}

/* 🌐 Modern Minimal Search Results - with site primary color */
#results {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.search-result {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1.3rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.search-result::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  border-radius: 12px 0 0 12px;
  transition: background 0.3s ease;
}

.search-result:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.search-result:hover::before {
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary));
}

.search-result a {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.search-result a:hover {
  color: var(--color-primary);
  opacity: 0.8;
}

.search-result p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.search-result mark {
  background-color: #fffae6;
  color: #000;
  font-weight: 600;
  padding: 0 3px;
  border-radius: 3px;
}

/* ✴️ Search header */
.query {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

/* 🕵️ “No results” message */
.no-results {
  text-align: center;
  color: #f48020;
  font-size: 1.1rem;
  padding: 2rem 0;
  border: 1px dashed #ddd;
  border-radius: 8px;
  background: #fafafa;
}

.footer-info-col {
  width: 30%;
}

.footer-info-col:last-child {
  width: 40%;
}

.hero-container-overlay {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}

#globe-container {
  height: 30vw;
  width: 100%;

}

#globe {
  margin: 0 auto;
  display: block;
}

.investore-hero-left h1 {
  font-size: 40px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.investore-hero-left h1 span {
  color: var(--color-primary)
}

.investore-hero-right p {
  font-family: var(--font-lt-bukra);
  font-size: 18px;
  font-weight: 500;
}

.investore-hero-date {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
}

.investore-relation-hero {
  padding: 120px 0;
}

.share-details-background {
  border-radius: 15px;
  overflow: hidden;
  padding-top: 55% !important;
  position: relative;
  max-height: 850px;
}

.share-details-background::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .55) 38%, rgba(0, 0, 0, 0) 70%);
}

.share-details-wrapper {
  padding-bottom: 120px;
}

.share-details-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.share-details-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.share-det-leftinner {
  padding-bottom: 200px;
  color: #fff;
}

.share-det-leftinner h2 {
  font-size: 50px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.share-det-leftinner {
  font-size: 20px;
  font-weight: 600;
}

.share-det-rightinner {
  background-color: #0d0d0d;
  padding: 30px;
  color: #fff;
  max-width: 450px;
}

.share-det-rightinner h3 {
  font-size: 40px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.share-details-time {
  font-size: 18px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

.share-details-price h4 {
  font-size: 50px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
}

.share-details-chart {
  margin-bottom: 20px;
}

.key-financials-btn {
  text-align: center;
}

.key-financials-btn a {
  color: #fff;
  font-size: 22px;
}

.key-financials-btn a img {
  width: 50px;
  margin-right: 10px;

}

.retail-investment p.employee-avatars-text {
  color: var(--color-secondary);
  font-weight: 500;
}

.employee-avatars-bottom p {
  color: var(--color-secondary);
  font-size: 16px;
}

.employee-avatars-bottom {
  margin-top: 30px;
}

.investment-count {
  text-align: right;
  font-size: 100px;
  font-family: var(--font-lt-bukra);
  font-weight: 500;
  line-height: normal;
  margin-top: -100px;
}

.investment-count span {
  color: var(--color-primary);

}

.transparent-operations-card {
  background-color: #000000;
  color: #fff;
  border-radius: 30px;
  padding: 20px;
}

.transparent-operations-card h3 {
  color: var(--color-primary);
  font-size: 25px;
  font-weight: normal;
  margin-bottom: 30px;
}

.transparent-operations-card p {
  font-size: 14px;
}

.transparent-operations-row {
  padding-top: 30px;
}

.retail-investment {
  padding: 80px 0;
}

.sec-subtitle p {
  font-weight: 500;
}

.publications-card {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: 220px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #fff;
  overflow: hidden;

}

.publications-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 0.5s;
}

.publications-card-top {
  margin-bottom: auto;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.publications-card-bottom {
  position: relative;
  z-index: 2;
  padding-right: 60px;
}

.publications-link {
  width: 30px;
}

.publications-card-bottom h3 {
  font-size: 18px;
}

.publications-card:hover .publications-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .55) 38%, rgba(0, 0, 0, 0) 70%);
}

.publications-date {
  opacity: 0;
}

.publications-card:hover .publications-date {
  opacity: 1;
}

.publications-item:nth-child(2n) {
  padding-top: 40px;
}

.publications {
  padding: 80px 0;
}

.share-information-card {
  background-color: #000;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.5s;
}

.share-information-card:hover {
  background-color: var(--color-primary);
  color: #000;
}

.shareinfo-card-top h6 {
  font-size: 16px;
}

.shareinfo-card-center {
  color: var(--color-primary);
  font-size: 5rem;
  margin: 10px 0;
  transition: all 0.5s;
}

.shareinfo-card-top {
  height: 40px;
}

.share-information-card:hover .shareinfo-card-center {
  color: #000;
}

.share-information-sec {
  padding: 80px 0;
}

.financial-calendar-year {
  border-bottom: 1px solid #b0b0b0;
}

.financial-calendar-year p {
  text-align: center;
  color: #000;
  border-bottom: 4px solid var(--color-primary);
  margin-bottom: -2px;
}

.financial-calendar-item {
  padding: 40px 0;
  border-bottom: 1px solid #b0b0b0;
}

.financial-calendar-date {
  text-align: center;
  font-size: 20px;
}

.financial-calendar-info h3 {
  font-size: 20px;
  font-weight: 500;
}

.financial-calendar-download {
  flex-shrink: 0;
  margin-left: 20px;
}

.financial-calendar-download img {
  width: 50px;
}

.financial-calendar-info p {
  margin: 0;
}

.financial-calendar {
  padding: 80px 0;
}

.investor-contact {
  padding: 80px 0;
}

.hero-container {
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-img.webp') center/cover no-repeat;
  transform-style: preserve-3d;
  will-change: transform;
  pointer-events: none;
  z-index: 1;
}

.hero-clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.hero-clouds-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}

video.explore-img-lg {
  width: 95% !important;
}

.explore-our-journey {
  overflow: hidden;
}

.team-details .team-photo::before {
  display: none;
}

.modern-table-container {
  width: 100%;
  overflow-x: auto;
  /* padding: 20px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
  border: 1px solid #e1e1e1 !important;
   border-radius: 14px;
     border-collapse: collapse;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius:0px;
  border: none;

}

.modern-table th,
.modern-table td {
  border: 1px solid #e1e1e1;
  /* Cell borders */
}

.modern-table thead {
  background: #edf1f2;
}

.modern-table th {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: #333;
}

.modern-table td {
  padding: 18px 20px;
  font-size: 14px;
  color: #444;
  background: #fff;
  line-height: 1.6;
}

.modern-table tr:hover td {
  background: #fafafa;
}

.trolley-glance {
  padding: 80px 0;
}

.trolley-glance .sec-heading {
  padding: 0 0 40px;
}
.about-video-setion{
  padding: 120px 0 40px;
  text-align: center;
}


.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio → 9/16*100 */
    height: 0;
    overflow: hidden;
    border-radius: 12px; /* optional */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.globe-gif {
  width: 550px;
  margin-left: auto;
  display: block;
}