@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 {
  --section-heading-color: #434343;
  --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;
}

::-webkit-scrollbar-thumb:hover {
  cursor: grabbing;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(255, 111, 24) transparent;
}

.bg-change {
  background-color: #111;
}

.about-hero-wrapper {
  background-color: #141935;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.about-hero-content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 97%;
  height: 93%;
}


.about-hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
  width: 70%;
}

.about-hero-overlay h1 {
  margin-top: 100px;
  margin-bottom: 30px;
  text-align: center;
  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);
}
.about-hero-overlay p {
  font-size: 1.1rem;
  line-height: 1.2;
  width: 80%;
  margin: 0 auto 40px;
  color: white;
}

/* value Highlight */
.value {
  position: relative;
  color: white;
  display: inline-block;
  z-index: 1;
  padding: 5px 10px;
}
.value::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -20px;
  width: 105%;
  height: 150%;
  border: 5px solid rgba(255, 111, 24);
  transform: rotate(-10deg);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}


/* Button */
.about-hero-btn {
  text-align: center;
  width: 100%;
}
.about-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;
}
.about-hero-btn button:hover {
  background-color: rgb(29, 29, 29);
}
/* Footer Links */
.about-hero_list_items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  /* border: 1px solid blue;  */
}

.about-hero_list_items ul {
  position: relative;
  bottom: 40px;
  left: 58px;
  list-style-type: none;
  line-height: 18px;
  padding: 30px;
  background: rgba(46, 56, 77, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  z-index: 999;
}
.about-hero_list_items ul li a {
  text-decoration: none;
  color: #999999;
  font-size: 0.9rem;
  position: relative;
}

.about-hero_list_items ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #999999;
  z-index: 1;
  width: 0;
}

.about-hero_list_items ul li a:hover::after {
  width: 100%;
}

/* ======= Responsive Fixes: Large Screens (up to 1366x768) ======= */
@media screen and (max-width: 1366px) {
  .about-hero-overlay {
    margin-top: 5%;
  }

  .about-hero-overlay h1 {
    font-size: 4rem; /* unchanged */
  }

  .about-hero-overlay p {
    font-size: 1rem;
  }

  .about-hero_list_items ul li a {
    font-size: 0.7rem;
    line-height: 1;
  }
  .about-hero_list_items ul {
    line-height: 14px;
    /* left: 30px;
    bottom: 30px; */
  }
}

/* ======= Responsive Fixes: Tablets (up to 1024px) ======= */
@media screen and (max-width: 1024px) {
  .about-hero-wrapper {
    padding: 40px 0px;
  }

  .about-hero-overlay {
    margin-top: 70px;
  }

  .about-hero-overlay h1 {
    font-size: 3rem;
    width: 90%;
  }

  .about-hero-btn {
    padding: 20px 0;
  }

  .about-hero_list_items ul {
    margin-top: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

/* ======= Responsive Fixes: Mobile Devices (up to 768px) ======= */
@media screen and (max-width: 768px) {
  .about-hero-overlay {
    padding: 0 15px;
    width: 90%;
  }

  .about-hero-overlay h1 {
    font-size: 2rem;
    letter-spacing: -1px;
    margin-top: 30px;
  }

  .about-hero-overlay p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .about-hero-btn {
    padding: 10px 40px;
  }

  .about-hero_list_items ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    margin-top: 30px;
    left: 0;
    bottom: 20px;
  }

  .value::before {
    top: -16px;
    left: -5px;
    padding: 0px;
    width: 106px;
    border: 3px solid rgba(255, 111, 24);
  }
}

/* ======= Extra Small Devices (up to 480px) ======= */
@media screen and (max-width: 480px) {
  .about-hero-overlay {
    width: 100%;
  }
  .about-hero-overlay p{
    width: 100%;
    margin: 0 0 20px 0;
  }
  .about-hero-overlay h1 {
    font-size: 1.6rem;
  }

  .about-hero-btn button {
    width: 160px;
    height: 45px;
    font-size: 1rem;
  }
  .value::before {
    top: -16px;
    left: -5px;
    padding: 0px;
    width: 88px;
    border: 3px solid rgba(255, 111, 24);
  }
}

/*========================================================================== 
============================================================================
==============================Intro Section=================================*/
.intro-sect {
  /* background-color: #343434; */
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-wrapper {
  color: white;
  background-color: black;
  width: 97%;
  height: 93%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  
}
.intro-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/bg/ledgers_bg_light.png");
  background-position: top 30px right 30px;
  background-repeat: no-repeat;
  background-size: 600px auto;
  /* mix-blend-mode: multiply; */
  opacity: 0.04; /* your desired opacity */
  z-index: 0;
  pointer-events: none; /* make sure it doesn’t block clicks */
}


.row-1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}

.intro-content {
  width: 40%;
}

.intro-content h1 {
  text-align: left;
  width: 100%;
  font-size: 2.7rem;
}

.intro-content p {
  width: 100%;
}

.intro-img {
  position: relative;
}

.intro-img-2 {
  position: absolute;
  right: 50px;
  bottom: -77px;
  width: 40%;
  /* Increase size and speed */
  animation: subtlePulse 3s infinite alternate ease-in-out;
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06) translateY(-50px); /* Increased size and lift */
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
}
.bottom-text-wrapper {
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  width: 90%;
  margin-bottom: 50px;
}

.bottom-text-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  margin: 0;
}
.bottom-text-content img {
  max-width: 350px;
}

/* ======================================================
   Responsive Tweaks for 1366px and Below
====================================================== */
@media screen and (max-width: 1366px) {
  .intro-content {
    width: 50%;
  }
  .intro-img {
    width: 45% !important;
  }
  .intro-img-1 {
    width: 100%;
  }
}

/* ======================================================
   Responsive Tweaks for Tablets (1024px and Below)
====================================================== */
@media screen and (max-width: 1024px) {
  .row-1 {
    justify-content: center;
    align-items: center;
  }

  .intro-content {
    width: 50%;
  }

  .intro-content h1 {
    font-size: 3rem;
  }
  .intro-content p {
    font-size: 1.2rem;
    line-height: 1;
  }

  .intro-img {
    text-align: center;
    width: 50%;
  }

  .intro-img-1 {
    width: 100%;
  }

  .intro-img-2 {
    display: none;
  }
  .intro-wrapper::before{
    background-size: 450px auto;
  }
}

/* ======================================================
   Responsive Tweaks for Mobile Devices (768px and Below)
====================================================== */
@media screen and (max-width: 768px) {
  .row-1 {
    flex-direction: column;
    gap: 4rem;
  }
  .intro-content {
    width: 100%;
    text-align: left;
  }
  .intro-content h1 {
    text-align: left;
  }
  .intro-content p {
    font-size: 1rem;
  }
  .intro-img {
    width: 80% !important;
  }
  .intro-img-1 {
    width: 100%;
  }
  .intro-wrapper::before{
    background-size: 350px auto;
  }
}

/* ======================================================
   Responsive Tweaks for Very Small Devices (480px and Below)
====================================================== */
@media screen and (max-width: 480px) {
  .intro-content {
    width: 100%;
  }
  .intro-content h1 {
    font-size: 2rem;
  }
  .intro-img {
    width: 90% !important;
  }
  .intro-wrapper::before{
      background-size: 250px auto;
  }
}

/*==================================================================
====================================================================
====================================================================
=========================ice section================================*/

.ice-sect {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ice-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 */
}

.ice-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/bg/ledgers_bg_light.png");
  background-position: top 30px right 30px;
  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 */
}

.ice-wrapper > * {
  position: relative;
  z-index: 1; /* bring content above the pseudo-element */
}
.ice-row-1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}
.ice-content {
  width: 40%;
}
.ice-content h1 {
  text-align: left;
  width: 100%;
  font-size: 2.7rem;
  line-height: 1;
}
.ice-content p {
  width: 90%;
}
.ice-img {
  position: relative;
}
.ice-img-2 {
  position: absolute;
  right: 50px;
  bottom: -77px;
  width: 20%;
  /* Increase size and speed */
  animation: subtlePulse 3s infinite alternate ease-in-out;
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06) translateY(-50px); /* Increased size and lift */
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
}

/* ======================================================
   Responsive Tweaks for 1366px and Below
====================================================== */
@media screen and (max-width: 1366px) {
  .ice-content {
    width: 55%;
  }
  .ice-img {
    width: 45% !important;
  }
  .mission-img-1 {
    width: 100%;
  }
}

/* ======================================================
   Responsive Tweaks for Tablets (1024px and Below)
====================================================== */
@media screen and (max-width: 1024px) {
  .ice-row-1 {
    justify-content: center;
    align-items: center;
  }

  .ice-content {
    width: 50%;
  }

  .ice-content h1 {
    font-size: 3rem;
  }
  .ice-content p {
    font-size: 1.2rem;
    line-height: 1;
  }

  .ice-img {
    text-align: center;
    width: 50%;
  }

  .ice-img-1 {
    width: 100%;
  }

  .ice-img-2 {
    display: none;
  }
  .ice-wrapper::before{
    background-size: 450px auto;
  }
}

/* ======================================================
   Responsive Tweaks for Mobile Devices (768px and Below)
====================================================== */
@media screen and (max-width: 768px) {
  .ice-row-1 {
    flex-direction: column;
    gap: 4rem;
  }
  .ice-content {
    width: 100%;
    text-align: left;
  }
  .ice-content h1 {
    text-align: left;
  }
  .ice-content p {
    font-size: 1rem;
  }
  .ice-img {
    width: 80% !important;
  }
  .ice-img-1 {
    width: 100%;
  }
  .ice-wrapper::before{
    background-size: 350px auto;
  }
}

/* ======================================================
   Responsive Tweaks for Very Small Devices (480px and Below)
====================================================== */
@media screen and (max-width: 480px) {
  .ice-content {
    width: 100%;
  }
  .ice-content h1 {
    font-size: 2rem;
  }
  .ice-content p {
    width: 100%;
    font-weight: 100 !important;
  }
  .ice-img {
    width: 90% !important;
  }
  .ice-wrapper::before{
      background-size: 250px auto;
  }
}

/*==================================================================
====================================================================
====================================================================
=========================about section================================*/

.about-sect {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-wrapper {
  color: white;
  background-color: black;
  width: 97%;
  height: 93%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/bg/ledgers_bg_light.png");
  background-position: top 30px right 30px;
  background-repeat: no-repeat;
  background-size: 600px auto;
  /* mix-blend-mode: multiply; */
  opacity: 0.04; /* your desired opacity */
  z-index: 0;
  pointer-events: none; /* make sure it doesn’t block clicks */
}
.about-row-1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}
.about-content {
  width: 40%;
}
.about-content h1 {
  text-align: left;
  width: 100%;
  font-size: 2.7rem;
}
.about-content p {
  width: 90%;
}
.about-img {
  position: relative;
}
.about-img-2 {
  position: absolute;
  right: 50px;
  bottom: -85px;
  width: 35%;
  /* Increase size and speed */
  animation: subtlePulse 3s infinite alternate ease-in-out;
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06) translateY(-50px); /* Increased size and lift */
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
}
.about-logos {
  margin-top: 50px;
  display: flex;
  gap: 10px;
}

/* ======================================================
   Responsive Tweaks for 1366px and Below
====================================================== */
@media screen and (max-width: 1366px) {
  .about-row-1 {
    width: 90%;
  }
  .about-content {
    width: 55%;
  }
  .about-img {
    width: 45%;
  }
  .about-img-1 {
    width: 100%;
  }
  .about-logos {
    width: 60%;
    margin-top: 15px;
  }
  .logo1 {
    width: 20%;
    height: 10%;
  }
  .logo2 {
    width: 18%;
    height: 10%;
  }
  .logo3 {
    width: 61%;
    height: 10%;
  }
}

/* ======================================================
   Responsive Tweaks for Tablets (1024px and Below)
====================================================== */
@media screen and (max-width: 1024px) {
  .about-row-1 {
    padding: 2rem 0;
    flex-direction: column;
    width: 100% !important;
    height: 100%;
    gap: 1rem;
  }
  
  .about-content {
    width:95% !important;
  }

  .about-content h1 {
    font-size: 3rem;
  }
  .about-content p {
    font-size: 1.2rem;
    line-height: 1;
  }

  .about-img {
    text-align: center;
    width: 50% !important;
  }

  .about-img-1 {
    width: 100%;
  }

  .about-img-2 {
    display: none;
  }

  .about-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .logo1, .logo2 {
    max-width: 80px;
  }
  .logo3 {
    max-width: 260px;
  }
  .about-wrapper::before{
      background-size: 450px auto;
  }
}

/* ======================================================
   Responsive Tweaks for Mobile Devices (768px and Below)
====================================================== */
@media screen and (max-width: 768px) {
  .about-content {
    width: 100%;
    text-align: left;
  }
  .about-content h1 {
    text-align: left;
  }
  .about-content p {
    font-size: 1rem;
  }
  .about-img {
    width: 80% !important;
  }
  .about-img-1 {
    width: 100%;
  }
  .about-wrapper::before{
    background-size: 350px auto;
  }
  .about-logos {
    display: none;
  }
}

/* ======================================================
   Responsive Tweaks for Very Small Devices (480px and Below)
====================================================== */
@media screen and (max-width: 480px) {
  .about-sect {
    height: auto;
  }
  .about-content {
    width:95%;
  }
  .about-content h1 {
    font-size: 2rem;
  }
  .about-content p {
    width: 100%;
    font-weight: 100 !important;
  }
  .about-img {
    width: 90% !important;
  }
  .about-wrapper::before{
      background-size: 250px auto;
  }
}

/*==================================================================
====================================================================
====================================================================
=========================whychoseus 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;
  flex-direction: column;
  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;
  margin-top: 150px;
  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%;
}
.whychoseus-content h1 {
  text-align: left;
  width: 100%;
  font-size: 2.7rem;
  margin-top: 30px;
  font-weight: bold;
}
.whychoseus-content p {
  width: 90%;
}
.whychoseus-content ul {
  list-style-type: "-";
  /* font-weight: bold; */
  margin-left: 8px;
}
.whychoseus-content span {
  margin-left: 5px;
}
.whychoseus-img {
  position: relative;
}
.whychoseus-img-2 {
  position: absolute;
  right: 50px;
  bottom: -50px;
  width: 35%;
  /* Increase size and speed */
  animation: subtlePulse 3s infinite alternate ease-in-out;
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06) translateY(-50px); /* Increased size and lift */
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
}
.whychoseus-logos {
  margin-top: 50px;
  display: flex;
  gap: 10px;
}

/* ======================================================
   Responsive Tweaks for 1366px and Below
====================================================== */
@media screen and (max-width: 1366px) {
  .whychoseus-row-1 {
    width: 90%;
  }
  .whychoseus-content {
    width: 55%;
  }
  .whychoseus-img {
    width: 45%;
  }
  .whychoseus-img-1 {
    width: 100%;
  }

  .whychoseus-content .firstline {
    min-width: auto;
    font-size: 1rem;
    margin-bottom: 0px;
  }
  .whychoseus-logos {
    margin-top: 15px;
  }
}

/* ======================================================
   Responsive Tweaks for 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 p {
    font-size: 1.2rem;
    line-height: 1;
  }

  .whychoseus-img {
    text-align: center;
    width: 50% !important;
  }

  .whychoseus-img-1 {
    width: 100%;
  }

  .whychoseus-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 Tweaks for Mobile Devices (768px and Below)
====================================================== */
@media screen and (max-width: 768px) {
  .whychoseus-content {
    width: 100%;
    text-align: left;
  }
  .whychoseus-content h1 {
    text-align: left;
  }
  .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 Tweaks for Very Small Devices (480px and Below)
====================================================== */
@media screen and (max-width: 480px) {
  .whychoseus-sect {
    height: auto;
  }
  .whychoseus-content {
    width:95%;
  }
  .whychoseus-content h1 {
    font-size: 2rem;
  }
  .whychoseus-content p {
    width: 100%;
    font-weight: 100 !important;
  }
  .whychoseus-img {
    width: 90% !important;
  }
  .whychoseus-wrapper::before{
      background-size: 250px auto;
  }
}

/*==================================================================
====================================================================
====================================================================
=========================mission section================================*/

.mission-sect {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-wrapper {
  color: black;
  background-color: white;
  width: 97%;
  height: 93%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mission-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/bg/ledgers_bg_light.png");
  background-position: top 30px right 30px;
  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 */
}
.mission-row-1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}
.mission-content {
  width: 40%;
}
.mission-content h1 {
  text-align: left;
  width: 100%;
  font-size: 2.7rem;
  font-family: "Kohinoor-Bangla-Bold";
}
.mission-content p {
  width: 90%;
}
.mission-content-row1 p {
  font-weight: bold;
}
.mission-img {
  position: relative;
}
.mission-img-2 {
  position: absolute;
  right: 50px;
  bottom: -85px;
  width: 35%;
  /* Increase size and speed */
  animation: subtlePulse 3s infinite alternate ease-in-out;
}

/* --- KEYFRAMES FOR THE ANIMATION --- */
@keyframes subtlePulse {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06) translateY(-50px); /* Increased size and lift */
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: brightness(1);
  }
}

.mission-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}

.mission-content-row2 {
  display: flex;
  position: relative;
  justify-content: space-around;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  margin-top: -3rem;
}

.row2-right, .row2-left{
  line-height: 1;
}

/* ======================================================
   Responsive Tweaks for 1366px and Below
====================================================== */
@media screen and (max-width: 1366px) {
  .mission-row-1 {
    width: 90%;
  }
  .mission-content {
    width: 55%;
  }
  .mission-img {
    width: 45%;
  }
  .mission-img-1 {
    width: 100%;
  }

}

/* ======================================================
   Responsive Tweaks for Tablets (1024px and Below)
====================================================== */
@media screen and (max-width: 1024px) {
  .mission-row-1 {
    padding: 2rem 0;
    flex-direction: column;
    width: 100% !important;
    height: 100%;
    gap: 1rem;
  }
  
  .mission-content {
    width:95% !important;
  }

  .mission-content h1 {
    font-size: 3rem;
    margin-top: 0;
  }
  .mission-content p {
    font-size: 1.2rem;
    line-height: 1;
    width: 100%;
  }

  .mission-img {
    text-align: center;
    width: 50% !important;
  }

  .mission-img-1 {
    width: 100%;
  }

  .mission-img-2 {
    display: none;
  }

  .mission-wrapper::before{
      background-size: 450px auto;
  }
}

/* ======================================================
   Responsive Tweaks for Mobile Devices (768px and Below)
====================================================== */
@media screen and (max-width: 768px) {
  .mission-row-1 {
    flex-direction: column;
    justify-content: space-around !important;
  }

  .mission-content {
    width: 100%;
  }

  .mission-content p {
    font-size: 1rem !important;
  }
  .mission-img {
    width: 70% !important;
  }

  .mission-img-1 {
    width: 100%;
  }
  
  .mission-wrapper::before{
    background-size: 350px auto;
  }
}

/* ======================================================
   Responsive Tweaks for Very Small Devices (480px and Below)
====================================================== */
@media screen and (max-width: 480px) {
  /* .mission-sect {
    height: auto;
  } */
  .mission-content h1 {
    font-size: 2rem;
  }

  .mission-img {
    width: 80% !important;
  }
  .mission-wrapper::before{
    background-size: 250px auto;
  }
}

body.rtl section h1,
body.rtl section h3,
body.rtl section h4 {
  text-align: right;
  padding-right: 1rem;
}


@media (min-width: 1500px) {
  section {
    width: 100vw;
    height: 100vh;
  }
}

@media screen and (max-width: 1450px) {
  .row-1 {
    justify-content: space-between;
    margin-top: 0;
  }
  .intro-img{
    text-align: center;
    width: 50%;
  }
  .intro-img-1 {
    width: 100%;
  }

  
  .ice-row-1 {
    justify-content: space-between;
    margin-top: 0;
  }
  .ice-img, .about-img {
    width: 50%;
  }
  .ice-img-1, .about-img-1 {
    width: 100%;
  }

  .about-row-1 {
    justify-content: space-between;
    margin-top: 0;
  }
  .about-content {
    width: 55%;
  }
  .about-content p{
    line-height: 1.1;
  }
  .about-img {
    width: 45%;
  }
  .about-img-1 {
    width: 100%;
  }
  
  .whychoseus-row-1 {
    margin-top: 0;
  }
  .whychoseus-content {
    width: 55%;
  }
  .whychoseus-content p {
    line-height: 1;
  }  
  .whychoseus-img {
    width: 45%;
  }
  .whychoseus-img-1 {
    width: 100%;
  }
 
  .mission-row-1 {
    justify-content: space-between;
  }
  .mission-content {
    width: 55%;
  }
  .mission-img {
    width: 45%;
  }
  .mission-img-1 {
    width: 100%;
  }
}