@font-face {
  font-family: "Kohinoor-Bangla";
  src: url("../fonts/Kohinoor_Bangla/KohinoorBangla-Regular.otf")
    format("truetype");
  font-display: swap; /* Add this for better performance */
  font-weight: 100;
}
@font-face {
  font-family: "Kohinoor-Bangla-Bold";
  src: url("../fonts/Kohinoor_Bangla/KohinoorBangla-Bold.otf")
    format("truetype");
  font-display: swap; /* Add this for better performance */
}
:root {
  --hero-font-size: 5rem;
  --hero-font-weight: 100;
  --hero-line-height: 0.9;
  --hero-font-color: white;
  --hero-letter-spacing: -3px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #343434;
  font-family: "Kohinoor-Bangla";
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgb(255, 111, 24);
  border-radius: 4px;
}

.bg-change {
  background-color: #111;
}

.whyus-hero-wrapper {
  /* background-color: #000000; */
  position: relative;
  /* background-color: rgba(116, 75, 48, 0.623); */
  background: url("../images/hero/ledgerswhyushero.png") no-repeat center center /
    cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-image: linear-gradient(
      to right,
      rgb(51, 51, 51, 0.5) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(51, 51, 51, 0.5) 1px, transparent 1px);
  background-size: 30px 30px;
  background-origin: content-box; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.whyus-hero-content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 97%;
  height: 93%;
}

.whyus-hero-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  z-index: 1;

  background-color: rgba(116, 75, 48, 0.623);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.whyus-hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
  position: relative;
  z-index: 2;
  width: 70%;
}
.whyus-hero-overlay h1 {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 30px;
  font-size: var(--hero-font-size);
  line-height: var(--hero-line-height);
  letter-spacing: var(--hero-letter-spacing);
  font-weight: var(--hero-font-weight);
  color: var(--hero-font-color);
}
.whyus-hero-overlay p {
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0 auto 40px;
  color: white;
  width: 80%;
}

/* UAE Highlight */
.trusted {
  position: relative;
  color: white;
  display: inline-block;
  z-index: 1;
  padding: 5px 10px;
}
.trusted::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -5px;
  width: 100%;
  height: 150%;
  border: 5px solid #414d6b;
  transform: rotate(-5deg);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

/* Button */
.whyus-hero-btn {
  text-align: center;
  width: 100%;
}
.whyus-hero-btn button {
  background: black;
  color: white;
  width: 200px;
  height: 55px;
  font-size: 1.2rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s ease;
  letter-spacing: -1px;
}
.whyus-hero-btn button:hover {
  background-color: rgb(29, 29, 29);
}

/* Footer Links */
.whyus-hero_list_items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  z-index: 2;
  /* border: 1px solid blue;  */
}

.whyus-hero_list_items ul {
  position: relative;
  bottom: 40px;
  left: 58px;
  list-style-type: none;
  line-height: 18px;
  padding: 30px;
  /* border: 1px solid rgba(0, 0, 0, 0.2); */
  background: rgba(46, 56, 77, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
}
.whyus-hero_list_items ul li a {
  text-decoration: none;
  color: #dadada;
  font-size: 0.9rem;
  position: relative;
}

.whyus-hero_list_items ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #dadada;
  z-index: 1;
  width: 0;
}

.whyus-hero_list_items ul li a:hover::after {
  width: 100%;
}
/* =====================================================
   Responsive Styles for Hero Section (1366px and below)
===================================================== */
@media screen and (max-width: 1366px) {
  .whyus-hero-content-wrap {
    background-position: center;
    background-size: cover;
  }

  .whyus-hero-overlay {
    margin-top: 5%;
  }

  .whyus-hero-overlay h1 {
    font-size: 4rem;
    /* width: 80%; */
  }

  .whyus-hero-overlay p {
    /* width: 85%; */
    font-size: 1rem;
    text-align: center;
  }
  .whyus-hero_list_items ul li a {
    font-size: 0.7rem;
    line-height: 1;
  }
  .whyus-hero_list_items ul {
    line-height: 14px;
  }
}

/* =====================================================
   Responsive Styles for Tablets (1024px and below)
===================================================== */
@media screen and (max-width: 1024px) {
  .whyus-hero-wrapper {
    padding: 40px 0px;
  }
  .whyus-hero-overlay {
    margin-top: 70px;
  }

  .whyus-hero-overlay h1 {
    font-size: 3rem;
    width: 90%;
  }

  .whyus-hero-overlay p {
    width: 90%;
    font-size: 1rem;
  }

  .whyus-hero-btn button {
    width: 180px;
    height: 50px;
    font-size: 1rem;
  }

}

/* =====================================================
   Responsive Styles for Mobile Devices (768px and below)
===================================================== */
@media screen and (max-width: 768px) {
  .whyus-hero-wrapper {
    /* height: auto; */
    padding: 40px 0;
  }

  .whyus-hero-content-wrap {
    /* height: auto; */
    padding: 30px 0;
    border-radius: 0;
  }

  .whyus-hero-overlay {
    margin-top: 40px;
  }

  .whyus-hero-overlay h1 {
    font-size: 2rem;
    width: 90%;
  }

  .whyus-hero-overlay p {
    font-size: 0.95rem;
    width: 90%;
  }

  .whyus-hero-btn button {
    width: 160px;
    height: 45px;
    font-size: 0.95rem;
  }

  .whyus-hero_list_items ul {
    position: static;
    margin-top: 30px;
    padding: 20px 20px;
    border-radius: 50px;
    gap: 20px;
  }

  .whyus-hero_list_items ul li a {
    font-size: 0.7rem;
  }

  .trusted::before {
    top: -6px;
    left: -2px;
    border: 3px solid #ff6f18;
    transform: rotate(-3deg);
  }
}

/* =====================================================
   Responsive Styles for Very Small Devices (480px and below)
===================================================== */
@media screen and (max-width: 480px) {
  .whyus-hero-overlay{
    width: 100%;
  }
  .whyus-hero-overlay h1 {
    font-size: 1.6rem;
  }

  .whyus-hero-overlay p {
    font-size: 0.9rem;
    text-align: left;
    margin: 0 0 20px 0;
  }

  .whyus-hero-btn button {
    width: 140px;
    height: 40px;
    font-size: 0.9rem;
  }

  .whyus-hero_list_items ul {
    padding: 20px 20px;
    font-size: 0.8rem;
  }

  .whyus-hero_list_items ul li a {
    font-size: 0.6rem;
    line-height: 0.1;
  }
}

/*==================================================================
====================================================================
====================================================================
=========================whychoseus ledgers section================================*/

.whychoseus-sect {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whychoseus-wrapper {
  position: relative;
  color: white;
  background-color: #2d3c63;
  width: 97%;
  height: 93%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensure ::before doesn't spill out */
}

.whychoseus-wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 0;
  left: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/bg/ledgers_bg_light.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 600px auto;
  mix-blend-mode: difference;
  opacity: 0.01; /* your desired opacity */
  z-index: 0;
  pointer-events: none; /* make sure it doesn’t block clicks */
}

.whychoseus-wrapper > * {
  position: relative;
  z-index: 1; /* bring content above the pseudo-element */
}

.whychoseus-row-1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}
.whychoseus-content .firstline {
  position: relative;
  top: -5px;
  min-width: 800px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.whychoseus-content {
  width: 40%;
  /* margin-top: 80px; */
}
.whychoseus-content h1 {
  text-align: left;
  width: 100%;
  font-size: 2.7rem;
  line-height: 1;
  /* margin-top: 30px; */
  font-weight: bold;
  font-family: "Kohinoor-Bangla-Bold";
}
.whychoseus-content h2 {
  text-align: left;
  width: 100%;
  line-height: 1;
  font-size: 2.7rem;
  margin-top: 100px;
  font-weight: bold;
  font-family: "Kohinoor-Bangla-Bold";
}
.whychoseus-content p {
  width: 100%;
}
.whychoseus-content ul {
  list-style-type: "-";
  font-weight: bold;
  margin-left: 8px;
}
.whychoseus-content span {
  margin-left: 5px;
}
.whychoseus-img {
  position: relative;
  /* top: 120px; */
}
.whychoseus-img-2 {
  position: absolute;
  right: 50px;
  bottom: -84px;
  width: 35%; /* --- AWARDS WEBSITE ANIMATION ADDED BELOW --- */
  animation: subtlePulse 3s infinite alternate ease-in-out; /* Added ease-in-out for smoother pulse */
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px); /* Start at original scale and position */
    filter: brightness(1);
  }
  50% {
    opacity: 1; /* Slightly less opaque */
    transform: scale(1.02) translateY(-20px); /* Scale up slightly and lift */
    filter: brightness(1.1); /* Brighter */
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px); /* Return to original scale and position */
    filter: brightness(1);
  }
}

.whychoseus-sect2-img-2 {
  position: absolute;
  right: 50px;
  bottom: -51px;
  width: 35%;
  /* --- AWARDS WEBSITE ANIMATION ADDED BELOW --- */
  animation: subtlePulse 3s infinite alternate ease-in-out; /* Added ease-in-out for smoother pulse */
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px); /* Start at original scale and position */
    filter: brightness(1);
  }
  50% {
    opacity: 1; /* Slightly less opaque */
    transform: scale(1.02) translateY(-20px); /* Scale up slightly and lift */
    filter: brightness(1.1); /* Brighter */
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px); /* Return to original scale and position */
    filter: brightness(1);
  }
}
.bottom-text-wrapper {
  color: white;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  width: 90%;
  margin-bottom: 30px;
}
.bottom-text-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  margin: 0;
}
.bottom-text-content img {
  max-width: 350px;
}
.whychoseus-img-obj {
  /* --- AWARDS WEBSITE ANIMATION ADDED BELOW --- */
  animation: subtlePulse 3s infinite alternate ease-in-out; /* Added ease-in-out for smoother pulse */
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px); /* Start at original scale and position */
    filter: brightness(1);
  }
  50% {
    opacity: 1; /* Slightly less opaque */
    transform: scale(1.02) translateY(-20px); /* Scale up slightly and lift */
    filter: brightness(1.1); /* Brighter */
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px); /* Return to original scale and position */
    filter: brightness(1);
  }
}

/* =====================================================
   Responsive: Laptops (1366px and below)
===================================================== */
@media screen and (max-width: 1366px) {
  .whychoseus-content {
    width: 45%;
    /* margin-top: 60px; */
  }

  .whychoseus-content h1,
  .whychoseus-content h2 {
    font-size: 2rem;
    margin-top: 20px;
  }
  .whychoseus-img-1 {
    max-width: 450px;
  }
  .whychoseus-img-2 {
    width: 35%;
    right: 60px;
    bottom: -67px;
  }
  .whychoseus-sect2-img-2 {
    width: 35%;
    right: 60px;
    bottom: -40px;
  }
  .bottom-text-wrapper {
    margin-top: 50px;
    width: 90%;
  }
  .whychoseus-content p {
    font-size: 1rem;
    line-height: 1;
  }
}

/* =====================================================
   Responsive: Tablets (1024px and below)
===================================================== */
@media screen and (max-width: 1024px) {
   .whychoseus-row-1 {
    padding: 2rem 0;
    flex-direction: column;
    width: 100% !important;
    height: 100%;
    gap: 1rem;
  }
  
  .whychoseus-content {
    width:95% !important;
  }

  .whychoseus-content h1 {
    font-size: 3rem;
    margin-top: 0;
  }
  .whychoseus-content h2 {
    font-size: 3rem;
  }
  .whychoseus-content p {
    font-size: 1.2rem;
    line-height: 1;
  }

  .whychoseus-img {
    text-align: center;
    width: 50% !important;
  }

  .whychoseus-img-1 {
    width: 100%;
  }

  .whychoseus-img-2,
  .whychoseus-sect2-img-2 {
    display: none;
  }

  .whychoseus-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .logo1, .logo2 {
    max-width: 80px;
  }
  .logo3 {
    max-width: 260px;
  }
  .whychoseus-wrapper::before{
      background-size: 450px auto;
  }
}

/* =====================================================
   Responsive: Mobiles (768px and below)
===================================================== */
@media screen and (max-width: 768px) {
  .whychoseus-content {
    width: 100%;
    text-align: left;
  }
  .whychoseus-content h1 {
    font-size: 2.3rem;
    text-align: left;
  }
  .whychoseus-content h2 {
    font-size: 2.3rem;
  }
  .whychoseus-content p {
    font-size: 1rem;
  }
  .whychoseus-img {
    width: 80% !important;
  }
  .whychoseus-img-1 {
    width: 100%;
  }
  .whychoseus-wrapper::before{
    background-size: 350px auto;
  }
  .whychoseus-logos {
    display: none;
  }
}

/* =====================================================
   Responsive: Very Small Devices (480px and below)
===================================================== */
@media screen and (max-width: 480px) {
  .whychoseus-sect {
    height: 100%;
  }
  .whychoseus-wrapper {
    height: 93%;
    margin: 1rem 0;
  }
  .whychoseus-row-1 {
    height: 100%;
  }
  .whychoseus-content {
    width:95%;
  }
  .whychoseus-content h1 {
    font-size: 1.5rem;
  }
  .whychoseus-content h2 {
    font-size: 1.5rem;
  }
  .whychoseus-content p {
    width: 100%;
    font-weight: 100 !important;
  }
  .whychoseus-img {
    width: 90% !important;
  }
  .whychoseus-wrapper::before{
      background-size: 250px auto;
  }
}
/*=================== CLIENTS SECTION ===================*/
/* =================== CLIENTS SECTION =================== */

.clients-sect {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients-wrapper {
  position: relative;
  color: white;
  background-color: #ff5e00;
  width: 97%;
  height: 93%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients-wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 0;
  left: 0;
  background-image: url("../images/bg/ledgers_bg_light.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 600px auto;
  mix-blend-mode: difference;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.clients-wrapper > * {
  position: relative;
  z-index: 1;
}

.clients-row-1 {
  display: flex;
  justify-content: space-between;
  width: 90%;
}

.clients-content {
  width: 40%;
}

.clients-content h1 {
  text-align: left;
  width: 100%;
  font-size: 2.7rem;
  font-weight: bold;
  font-family: "Kohinoor-Bangla-Bold";
  color: black;
}

.clients-content p {
  width: 100%;
  color: black;
}

/* === Clients Box === */
.clients-box {
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 90%;
  max-width: 1750px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* === Marquee Base === */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 120px;
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 10%,
    hsl(0 0% 0% / 1) 90%,
    hsl(0 0% 0% / 0)
  );
}

.marquee[data-direction="right"] {
  --mask-direction: to left;
}

.marquee__ctn {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-duration: 25s;
  animation-direction: normal; /* default motion (leftward) */
}

.marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 180px;
  margin-inline-end: 4rem;
}

.marquee__item img {
  height: 90px;
  width: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  filter: brightness(100%);
  transition: transform 0.3s ease;
}

.marquee__item img:hover {
  transform: scale(1.05);
}

/* === Single Keyframes for Both Directions === */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === Control Animation Direction (Independent of Language) === */
.marquee[data-direction="left"] .marquee__track {
  animation-direction: normal;
}
.marquee[data-direction="right"] .marquee__track {
  animation-direction: reverse;
}

/* === Hover Behavior === */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

body.rtl .marquee {
  direction: ltr !important;
}
/* =====================================================
   Responsive: Laptops (1366px and below)
===================================================== */
@media screen and (max-width: 1366px) {
  .clients-content {
    width: 45%
  }
  .clients-img img {
    width: 80%;
    height: auto;
  }
  .clients-content h1 {
    font-size: 2.2rem;
  }
  .clients-box {
    margin-top: 3rem;
  }
  .clients-box {
    height: 250px !important;
    gap: 1rem;
  }
  .marquee__item img {
    width: 100px !important;
  }
}

/* =====================================================
   Responsive: Tablets (1024px and below)
===================================================== */
@media screen and (max-width: 1024px) {
  .clients-sect {
    height: auto;
  }

  .clients-wrapper {
    height: auto;
    padding: 40px 0;
  }

  .clients-row-1 {
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .clients-content {
    text-align: left;
    width: 85%;
  }

  .clients-content h1 {
    font-size: 2rem;
  }

  .clients-content p {
    font-size: 1rem;
  }

  .clients-img {
    margin-top: 20px;
  }

  .clients-img img {
    width: 80%;
    height: auto;
  }

  .clients-box {
    margin-top: 2rem;
    height: 300px !important;
  }

  .marquee__item {
    width: 120px;
    margin-inline-end: 2rem;
  }

  .marquee__item img {
    height: 60px;
  }
  .clients-wrapper::before{
      background-size: 450px auto;
  }
}

/* =====================================================
   Responsive: Mobiles (768px and below)
===================================================== */
@media screen and (max-width: 768px) {
  .clients-content h1 {
    font-size: 1.7rem;
  }

  .clients-content p {
    font-size: 0.95rem;
  }

  .clients-box {
    height: 250px !important;
    padding: 40px 20px;
  }

  .marquee__item {
    width: 100px;
    margin-inline-end: 1.5rem;
  }

  .marquee__item img {
    height: 50px;
  }
  .clients-wrapper::before{
      background-size: 350px auto;
  }
}

/* =====================================================
   Responsive: Very Small Devices (480px and below)
===================================================== */
@media screen and (max-width: 480px) {
  .clients-box {
    height: 200px !important;
  }
  
  .clients-row-1 {
    flex-direction: column;
  }
  .clients-img img {
    display: none;
  }

  .clients-content h1 {
    font-size: 1.5rem;
  }

  .clients-content p {
    font-size: 0.9rem;
  }

  .marquee__item {
    width: 80px;
    margin-inline-end: 1rem;
  }

  .marquee__item img {
    height: 40px;
  }
  .clients-wrapper::before{
      background-size: 250px auto;
  }
}


body.rtl section h1,
body.rtl section h3,
body.rtl section h4 {
  text-align: right;
  padding-right: 1rem;
}

body.rtl .whyus-hero-overlay h1 {
  text-align: center;
}


@media (min-width: 1500px) {
  section {
    width: 100vw;
    height: 100vh;
  }
}

@media screen and (max-width: 1450px) {
  .whychoseus-row-1 {
    justify-content: space-between;
    margin-top: 0;
  }
  .whychoseus-content {
    width: 50%;
  }
  .whychoseus-content p {
    line-height: 1;
  }  
  .whychoseus-img {
    width: 45%;
  }
  .whychoseus-img-1 {
    width: 100%;
  }

  .clients-box {
    padding: 20px;
  }
  .clients-box {
    height: 300px;
  }
}