/* =========================================
   ROOT VARIABLES (COLORS AND GLOBAL SETTINGS)
========================================= */
:root {
  --main-color: #003157;
  --primary-color: #003F6F;
  --gold: #B9905A;
  --light-bg: #f8f9fa;
  --dark-text: #1a1a1a;
  --white: #ffffff;
}

/* =========================================
   GLOBAL STYLES
========================================= */
body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}


html,
body {
  height: 100%;
  /* overflow-x: hidden;
  scroll-behavior: smooth; */
}

body:dir(ltr) {
  /* font-size: 80%; */
}

.text-main {
  color: var(--primary-color);
  font-size: 1.9rem;
  font-weight: 700;
}

.text-pragraph {
  color: #4D4D4D;
  font-size: 17px;
  margin-bottom: 2.5rem;
  font-weight: 600;
  padding: 0 15%;
}

@media (max-width: 600px) {
  .text-pragraph {
    padding: 0 20px;
  }
}

.hero {
  flex: 1;
}

.certificates {
  flex-shrink: 0;
}



/* Fix container width to match design */
.container-xxl {
  max-width: 1450px;
}

/* =========================================
   NAVBAR MAIN STYLES
========================================= */
.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  border-bottom: 1px solid #e5e7eb;
}

.nav-logo {
  height: 55px;
}


/* .navbar-nav {
  margin-right: 40px;
} */

/* =========================================
   LANGUAGE DROPDOWN MENU
========================================= */
.lang-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666666;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.lang-dropdown .nav-link:hover,
.lang-dropdown .nav-link:focus {
  color: var(--main-color);
}

/* Globe icon */
.lang-dropdown .nav-link i.bi-globe2 {
  font-size: 1.9rem;
  color: var(--primary-color);
}

/* Dropdown arrow icon */
.dropdown-arrow {
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.lang-dropdown.show .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu style */
.lang-dropdown .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  padding: 7px 0;
  min-width: 150px;
  background-color: #ffffff;
}

/* Dropdown items */
.lang-dropdown .dropdown-item {
  color: var(--main-color);
  font-weight: 500;
  padding: 9px 16px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 8px;
}

.lang-dropdown .dropdown-item:hover {
  background-color: rgba(0, 63, 111, 0.08);
  color: var(--primary-color);
}

/* =========================================
   NAVBAR LINKS
========================================= */
.nav-link {
  position: relative;
  font-weight: 600;
  color: #666666;
  transition: color 0.3s ease;
  padding-bottom: 5px;
  width: auto;
}

.nav-link:hover,
.nav-link.active {
  color: #003A66;
}

/* Underline effect for hover & active */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #003A66;
  width: 0;
  margin: 0 auto;
  transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* Disable underline for dropdown links */
.nav-item.dropdown .nav-link::after {
  display: none;
}

.nav-item.dropdown .nav-link i {
  font-size: 1rem;
  margin-right: 3px;
  color: var(--primary-color);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: var(--main-color);
  color: var(--white);
}

/* =========================================
   LOGIN BUTTONS (DUAL BUTTON STYLE)
========================================= */
.btn-group-login {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.btn-login {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 4px 0px;
  font-size: 0.95rem;
  transition: 0.3s ease;
  border-radius: 0;
}

.btn-login span {
  display: block;
  padding: 1px 24px;
}

.btn-login:hover {
  background-color: #001e36;
  color: var(--white);
}

/* Right side button radius */
.first-btn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Left side button radius */
.second-btn {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.second-btn span {
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}

/* =========================================
   SOCIAL MEDIA ICONS
========================================= */
.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  line-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F9F9F9;
  color: var(--primary-color);
  box-shadow: 0 2px 5px #00000026;
  transition: all 0.3s ease;
}

.social-icons a i {
  position: relative;
  top: 1px;
}

.social-icons a:hover {
  background: var(--main-color);
  color: var(--white);
  box-shadow: 0 3px 8px #00000026;
}

/* Small screens (mobile) */





/* =========================================
   CONTACT BOX (PHONE + BUTTON)
========================================= */
.contact-box {
  background-color: var(--main-color);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-box .num {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 18px;
  font-size: 1rem;
}

.btn-contact {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 6px 18px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #001d36;
  color: var(--white);
}

.social-media-dropdown {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 18px;
  font-size: 1rem;
  border-radius: 10px;
  display: none;
}

.social-media-dropdown ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-media-dropdown ul li a {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  line-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F9F9F9;
  color: var(--primary-color);
  box-shadow: 0 2px 5px #00000026;
  transition: all 0.3s ease;
}

.social-media-dropdown ul li a i {
  position: relative;
  top: 1px;
}

.social-media-dropdown ul li a:hover {
  background: var(--main-color);
  color: var(--white);
  box-shadow: 0 3px 8px #00000026;
}

.social-media-dropdown .nav-link {
  color: var(--white);
}

/* Responsive adjustments for medium screens */
/* =========================================
   NAV RESPONSIVE FIX (1450px → 992px)
========================================= */









@media (max-width:1450px) and (min-width:1100px) {


  .navbar-nav {
    margin-right: 10px;
    gap: 4px;
  }

  .navbar-nav .nav-link {
    padding: 0 4px;
    font-size: 0.8rem;
  }


  .nav-logo {
    height: 45px;
  }


  .btn-login,
  .btn-contact,
  .contact-box .num {
    padding: 5px 14px;
    font-size: 0.75rem;
  }


  .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

}

@media (max-width:1100px) and (min-width:992px) {
  .navbar-nav {
    margin-right: 10px;
    gap: 4px !important;
  }

  .navbar-nav .nav-link {
    padding: 0 2px;
    font-size: 0.8rem;
  }


  .nav-logo {
    height: 30px;
  }


  .btn-login,
  .btn-contact,
  .contact-box .num {
    padding: 5px 10px;
    font-size: 0.7rem;
  }


  .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

}

@media (max-width: 991px) {
  .btn-login {
    font-size: 0.9rem;
    padding: 5px 18px;
  }

  .social-icons {
    justify-content: center;
  }

  .nav-link {
    width: auto;
    display: inline-block;
  }


  .social-icons .more-icons {
    display: flex !important;
  }

  .social-icons .more-toggle {
    display: none !important;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }



}

@media (max-width: 576px) {
  .social-icons {
    gap: 6px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .btn-contact,
  .contact-box .num {
    padding: 6px 14px;
    font-size: 0.9rem;
  }

  .navbar-brand {
    margin-left: 0;
  }
}

@media (max-width: 400px) {

  .btn-contact,
  .contact-box .num {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .nav-logo {
    height: 40px;
  }

}





/* =============================
   HERO SECTION - FIGMA ACCURATE
============================= */

.hero {
  position: relative;
  min-height: 77svh;
  height: auto;
  display: flex;
  align-items: end;

  justify-content: center;
  color: #fff;
  padding-top: 120px;
  overflow: hidden;
  background: #003157;
  background: url("../img/office-bg.png") no-repeat;
  background-size: cover;
  background-position: 30% -70px;
}

.hero::after {
  content: '';
  background: #003157;
  background: linear-gradient(289deg, rgba(0, 49, 87, 1) 0%, rgba(0, 49, 87, 1) 48%, rgba(0, 49, 87, 0.14) 73%, rgba(0, 49, 87, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;

}

.hero .lawyer-container {
  position: relative;
  right: 90px;
}

/* ---------- Hero Content ---------- */
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 60px;
}

.hero-title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-sub {
  font-size: 40px;
  font-weight: 700;
}

.gold {
  color: var(--gold);
}

.hero-text {

  color: #e9f6ff;
  line-height: 1.8;
  font-size: 20px;
}

/* ---------- Hero Badge ---------- */
.hero-badge {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 20px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
}

/* ---------- Lawyer Image ---------- */
.lawyer-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;

}

.lawyer-img {
  max-width: 520px;
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
}

.lawyer-name {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 15px 60px;
  border-radius: 8px;
  display: inline-block;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}


/* ---------- Stats ---------- */
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  color: #ffffff;
  text-align: center;

}

.stat-box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
}

.stat-box i {
  font-size: 2.2rem;
  color: #ffffff;
  opacity: 0.9;

}

.stat-num {
  font-weight: 800;
  font-size: 1.6rem;
  color: #ffffff;
}

.stat-label {
  font-size: 1rem;
  color: #B9905A;
}




@media (max-width:1300px) {
  .stats {
    flex-wrap: nowrap;
  }


  .hero .lawyer-container {
    right: 0;
  }

  .lawyer-name {
    padding: 15px 40px;
  }




}

@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding-top: 80px;

  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1.8rem;
  }



  .lawyer-name {
    font-size: 1.3rem;
    padding: 15px 40px;
    bottom: 0;
  }

  .book-btn {
    justify-content: center;
  }

  .book-btn a {
    border: none !important;
  }

  .lawyer-wrap {
    display: flex;
    justify-content: center;
  }

  .hero .lawyer-container {
    right: 0;
  }

  .hero-badge {
    width: 100%;
    margin-right: auto;
  }

  .hero-title {
    text-align: right;
  }

  .hero-sub {
    text-align: right;
  }

  .hero-text {
    text-align: right;
  }

}


@media (max-width:768px) {
  .lawyer-img {
    max-width: 280px;

  }

  .stat-box {
    flex-direction: column-reverse;
  }

  .hero {

    height: fit-content;
  }

  .lawyer-name {
    font-size: 1rem;
    padding: 15px 15px;

  }
}

@media (max-width: 600px) {
  .hero {

    height: fit-content;
  }

  .stats {
    flex-wrap: nowrap !important;
  }



  .lawyer-img {
    max-width: 280px;


  }

  .lawyer-name {
    font-size: 1rem;
    padding: 15px 18px;
    bottom: 0;
  }








}

@media (max-width:350px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1.6rem;
  }
}


/* =========================================
   CERTIFICATES SECTION - FIGMA STYLE
========================================= */
.certificates {
  background-color: var(--main-color);
  min-height: 23svh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.cert-swiper {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
}


.cert-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

/* .cert-card {
  background: transparent;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  


} */




.news-section,
.team-section {
  overflow: hidden;
  position: relative;
}

.newsSwiper,
.teamSwiperFinal,
.extra-services-swiper,
.services-swiper {
  width: 100%;
  overflow: hidden;
}

.newsSwiper .swiper-wrapper,
.teamSwiperFinal .swiper-wrapper,
.extra-services-swiper,
.services-swiper {
  display: flex;
  align-items: stretch;
  margin: 10px 0;
}

.newsSwiper .swiper-slide,
.teamSwiperFinal .swiper-slide,
.extra-services-swiper,
.services-swiper {
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 6px;

}


.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}


.cert-card {
  background: linear-gradient(180deg, #0c375b 0%, #00284a 100%);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 120px;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


.cert-card img {
  /* background-color: #ffffff; */
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: fill;

  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.08);
}

/*--------------------
  About Section
--------------------*/

.about-section {
  background-color: #fff;
  /* margin-top: 100px;
  margin-bottom: 100px; */
}

.about-section .col-lg-6:first-child {
  padding-left: 4rem;
}

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

.about-section .text-gold {
  color: var(--gold);
  font-size: 30px;
}

.about-title-small {
  font-size: 1.1rem;
}

.about-title {
  font-size: 1.9rem;
  line-height: 1.4;
}

.about-text {
  font-size: 1rem;
  line-height: 1.9;
}

.about-points li {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1rem;
}

.about-points i {
  color: #003158;
  margin-left: 8px;
  font-size: 1.1rem;
}


.about-goals {
  position: relative;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem 1.8rem;
  text-align: right;
  overflow: hidden;

}

.about-goals h5 {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  padding: 16px 60px;
  border-top-left-radius: 100px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  width: fit-content;
  height: fit-content;
}


.about-goals ul {
  margin-top: 3.5rem;
}

.about-goals li {
  margin-bottom: 14px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.7;
}


.about-goals i {
  color: #b9905a;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.about-images-section {
  display: flex;
  justify-content: end;
  align-items: center;
}

.about-images {
  position: relative;
  max-width: 500px;
}

.about-images .main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}


.about-images .sub-img {
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 80%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}




.experience-badge {
  position: absolute;
  top: 25px;
  right: -52px;
  width: 110px;
  height: 110px;
  z-index: 3;
}

.experience-badge img {
  width: 100%;
  height: auto;
}

/*--------------------
  Responsive Design
--------------------*/


@media (min-width:992px) and (max-width:1200px) {

  .about-images .main-img {
    width: 80%;

  }

  .about-images {

    display: flex;
    justify-content: flex-end;

  }

  .about-images .sub-img {

    left: 30%;
    width: 80%;
  }

  .experience-badge {
    top: 5px;
    right: 15%;
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 992px) {
  .about-section .row {
    text-align: center;
  }

  .about-section .col-lg-6:first-child {
    padding-left: 0;
    padding-right: 0;
  }

  .about-images {

    display: flex;
    justify-content: flex-end;

  }

  .about-images .sub-img {

    left: 30%;
    width: 80%;
  }

  .about-goals {
    text-align: start;
  }

  .about-title-small {
    text-align: right;
  }

  .about-section .text-main {
    text-align: right;
  }

  .about-text {
    text-align: right;
  }

  .about-section ul li {

    text-align: right;
  }
}


@media (max-width:767px) {
  .about-images {

    display: flex;
    justify-content: flex-end;

  }

  .about-images .sub-img {
    left: 30%;
    width: 80%;
  }

  .about-images .main-img {
    width: 75%;


  }

  .experience-badge {
    top: 5px;
    right: 15%;
    width: 90px;
    height: 90px;
  }

}

@media (max-width: 576px) {
  .about-images {
    display: flex;
    justify-content: flex-end;
  }

  .about-images .main-img {
    width: 75%;


  }

  .about-images .sub-img {
    width: 70%;
    left: 30%;

  }

  .experience-badge {
    top: 5px;
    right: 15%;
    width: 90px;
    height: 90px;
  }


}

/*--------------------
  Services Section
--------------------*/
.services-section {
  background-color: #fff;

}


/* .services-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003158;
} */

.services-section p {
  color: #4D4D4D;
  font-size: 16px;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.btn-request {
  padding: 12px 60px;
  font-size: 1rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-request:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.services-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}




.services-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;

}

.service-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  text-align: center;
  padding: 25px 15px;
  transition: 0.3s ease;
  cursor: pointer;
  height: 130px;
  margin: 10px;
}

.service-card:hover {
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.service-card i {
  color: #b9905a;
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.service-card h6 {
  color: #003158;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
}


.slider-btn {

  transform: translateY(-50%);
  background-color: #003158;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;

}

.slider-btn:hover {
  background-color: #b9905a;
}




/* =========================================
   EXTRA SERVICES SECTION 
========================================= */

.extra-services {
  /* background-color: #f9fafc; */
  padding: 60px 0;
  overflow: hidden;
}

.extra-services .container-xxl,
.services-section .container-xxl {
  max-width: 1450px;
}

/* .extra-services-swiper {
  width: 100%;
  padding: 0 0 35px;
} */


.extra-service-card {
  background: #fcfcfc;
  border: none;
  border-radius: 12px;
  text-align: center;
  padding: 16px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin: 10px;
}

.extra-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.extra-service-card i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.extra-service-card h6 {
  color: var(--dark-text);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================
   SWIPER BUTTONS & PAGINATION
========================================= */

.extra-services .swiper-button-prev,
.extra-services .swiper-button-next {
  color: var(--primary-color);
  background: #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.extra-services .swiper-button-prev:hover,
.extra-services .swiper-button-next:hover {
  background: var(--gold);
  color: #fff;
}

.extra-services .swiper-button-prev::after,
.extra-services .swiper-button-next::after {
  font-size: 1rem;
}

.extra-services .swiper-pagination {
  margin-top: 15px;
  position: relative;
}

.extra-services .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.extra-services .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}

/* =========================================
   PLANS SECTION - FIGMA PERFECT VERSION
========================================= */
.plans-section {
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}


.plans-swiper {
  width: 100%;
  padding: 20px 0 50px;
}

/* ====== CARD STYLE ====== */
.plan-card {
  width: 100%;
  height: 550px;
  background: #EEF8FF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plan-header {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  padding: 18px 10px;
  font-size: 1.1rem;
}

.plan-body {
  flex: 1;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-body .price {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;

}

.plan-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: start;
}

.plan-body ul li {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #333;
  position: relative;
  padding-right: 22px;
}

.plan-body ul li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: bold;
}

.plan-body .btn-main {
  display: block;
  text-align: center;
  background-color: #003158;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.plan-body .btn-main:hover {
  background-color: var(--gold);
  color: #003158;
}

/* ====== SWIPER BUTTONS ====== */
.plan-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: none;
}

.plan-btn:hover {
  background-color: var(--gold);
  color: #fff;
  /* transform:  scale(1.05); */
}


.plan-btn i {
  font-size: 1.2rem;
  line-height: 0;
}


/* .plans-section.plan-btn.prev {
  right: 25px;
}

.plans-section.plan-btn.next {
  left: 25px;
} */

/* =========================================
   AI SECTION (Legal Assistant)
========================================= */
.ai-section {
  background-color: #fff;
}

.ai-box {
  background: linear-gradient(rgba(0, 63, 111, 0.87),
      rgba(0, 63, 111, 0.87)),
    url("../img/bg-office2.png") center/cover no-repeat;
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
}


.ai-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #001D33;
}


.highlight {
  color: var(--gold);
  font-weight: 700;
  border-right: 3px solid var(--gold);
  padding-right: 8px;
  font-size: 30px;
}

.ai-box h3 {
  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 700;
}


.ai-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 12px;
}

.ai-features li i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-top: 3px;
}

.ai-features li h6 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.ai-features li p {
  font-size: 1rem;
  color: var(--gold);
  margin: 0;
}

.phones-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
}

.phone {
  position: absolute;
  width: 45%;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 20px 35px rgba(0, 0, 0, 0.25));
  border-radius: 30px;
}


.phone-right {
  left: 0;
  bottom: -40px;
  z-index: 2;
}


.phone-left {
  right: 0px;
  top: -40px;
  z-index: 3;
}




.store-card {
  display: flex;
  align-items: center;
  background: #fff;
  color: #003158;
  border-radius: 10px;
  padding: 12px 30px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.store-card:hover {
  transform: scale(1.05);
  color: #003158;
}

.store-card i {
  font-size: 1.8rem;
  margin-left: 10px;
}

.store-card .text {
  line-height: 1.2;
}

.store-card small {
  display: block;
  font-size: 0.7rem;
}

.store-card span {
  font-size: 1rem;
  font-weight: 700;
}



@media (max-width:1200px) and (min-width:992px) {
  .phone {
    width: 45%;
  }

  .phone-right {
    bottom: 30px;
  }

  .phone-left {
    top: 0;
  }


}

@media (max-width:992px) {
  .phone {
    width: 45%;
  }

  .phone-right {
    bottom: -40px;
  }

  .phone-left {
    top: 0;
  }

  .phones-wrapper {
    margin: 40px 0;
  }
}


@media (max-width:600px) {
  .store-buttons {
    justify-content: space-between;
  }

  .phone {
    width: 45%;
  }

  .phone-right {
    bottom: 0%;
  }

  .phone-left {
    top: 0;
  }

  .phones-wrapper {
    height: 600px;
    margin: 20px 0;
  }


}


@media (max-width:550px) {
  .phones-wrapper {
    height: 520px;
    margin: 20px 0;
  }

  .phone-right {
    bottom: 0%;
  }

}

@media (max-width:500px) {
  .phone {
    width: 45%;
  }

  .phone-right {
    bottom: 0;
  }

  .phone-left {
    top: 0;
  }

  .phones-wrapper {
    height: 450px;
    margin: 20px 0;
  }

  .highlight {
    font-size: 26px;
  }

  .ai-box h3 {
    font-size: 1.5rem;
  }

  .store-buttons {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: nowrap !important;

  }

  .store-card {
    padding: 12px 16px;
  }






}


@media (max-width:450px) {
  .phone-right {
    bottom: 0;
  }

  .phone-left {
    top: 0;
  }

  .phones-wrapper {
    height: 430px;
    margin: 20px 0;
  }
}


@media (max-width:400px) {
  .store-buttons {
    display: grid !important;
    grid-template-columns: auto;


  }

  .phones-wrapper {
    height: 340px;
    margin: 20px 0;
  }


  .phone-right {
    bottom: 0;
  }

  .phone-left {
    top: 0;
  }

  .phones-wrapper {
    height: 380px;
    margin: 20px 0;
  }
}








/* SECTION: About Founder */

.founder-section {
  background: #FCFCFC;
  border-radius: 20px;
  padding: 80px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}


.founder-section .about-text {
  line-height: 2;
  color: #333333;
  font-size: 20px;
  text-align: justify;
  font-weight: 600;
}

.founder-img-wrapper {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  ;

}

.founder-img-wrapper:hover {
  transform: translateY(-5px);
}

.founder-img {
  width: 85%;
  border-radius: 20px;
  object-fit: cover;
}


.founder-section .text-start {
  text-align: left !important;
}

.btn-main {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(1, 58, 99, 0.2);
}

.btn-main:hover {
  background-color: #002b4a;
  box-shadow: 0 6px 20px rgba(1, 58, 99, 0.35);
  transform: translateY(-2px);
  color: #fff
}

.more-details-btn {
  text-align: end;
}



@media (max-width:600px) {
  .founder-section .row {
    flex-direction: column-reverse;
  }

  .founder-section .about-text {
    font-size: 16px;
  }

  .more-details-btn {
    text-align: center;
  }
}


@media (min-width:768px) and (max-width:991.98px) {
  .founder-section .about-text {
    font-size: 16px;
  }
}


/* SECTION: Our Team  */

.team-section {
  background: #f9fafb;
  position: relative;
}

.team-card {
  background: #fff;
  border-radius: 140px 10px 20px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.team-img-wrapper {
  width: 100%;
  height: 245px;
  overflow: hidden;
  line-height: 0;

}

.team-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: 0;
}

.team-info {
  background-color: #013a63;
  color: #fff;
  padding: 15px 10px;
  border-radius: 10px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.team-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.95rem;
  margin: 0;
}


.team-subrole {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 2px 0 0 0;
}


.team-section .swiper {
  padding: 40px 0;
}

.team-section .swiper-slide {
  display: flex;
  justify-content: center;
}


.arrows-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  align-items: center;
}

.plan-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #013a63;
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px #00000033;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background-color: var(--gold);
  /* transform: translateY(-2px); */
}

/* SECTION: Why Us */


.why-us-section {
  background-color: #f9fafb;
}

.why-card {
  background: transparent;
  padding: 20px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  background-color: #013a63;
  color: #fff;
  font-size: 2rem;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.why-card h5 {
  color: #013a63;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 17px;
  color: #4D4D4D;
  line-height: 1.8;
  font-weight: 400;

}

.text-main {
  color: #013a63;
}




/* SECTION: News Section */

.news-section {
  /* background-color: #f9fafb; */
  position: relative;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: auto;
  transition: all 0.3s ease;
  text-align: right;
  margin: 0 auto;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


.news-img {
  width: 100%;
  height: 289px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.news-content {
  padding: 20px;
  display: block;
  height: auto;/
}

.news-content h5 {
  font-size: 22px;
  line-height: 1.4;
  color: #013a63;
  font-weight: 700;
  margin-bottom: 9px;
  min-height: 65px;
}

.news-date {
  font-size: 15px;
  color: 16px;
  margin-bottom: 10px;
}

.news-content p.text-muted {
  font-size: 16px;
  color: #4D4D4D;
  line-height: 1.8;
  flex-grow: 1;
}

.news-btn {
  background-color: #013a63;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(1, 58, 99, 0.2);
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  margin-top: auto;
}

.news-btn:hover {
  background-color: #002b4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(1, 58, 99, 0.3);
  color: #fff;
}


.news-section .news-prev,
.news-section .news-next {
  color: #ffffff;
  background: #013a63;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;

}


/* .news-section .news-next {
  left: 0;
  transform: translate(-50%, -50%);
}

.news-section .news-prev {
  right: 0; 
  transform: translate(50%, -50%); 
} */

.news-section .news-prev:hover,
.news-section .news-next:hover {
  background: var(--gold);
  color: #fff;
}

.news-section .news-prev::after,
.news-section .news-next::after {
  font-size: 1.2rem;
  font-weight: 900;
}

/* =======================
   SECTION: FAQ
======================= */



.faq-wrapper {
  max-width: 850px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 25px 30px;
  margin: auto;
}



.faq-item {
  background-color: #FCFCFC;
  border: 1px solid #E6E6E6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item.active {
  box-shadow: 0 0 10px rgba(1, 58, 99, 0.15);
}


.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  cursor: pointer;
  color: #013a63;
  font-weight: 600;
  font-size: 1rem;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-left: 10px;
}


.faq-title {
  flex-grow: 1;
  text-align: right;
  color: #003F6F;
}


.faq-plus {
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.faq-plus i {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;

}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
  border-color: var(--main-color);
  color: var(--main-color);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #5c6b73;
  line-height: 1.8;
  font-size: 0.95rem;
  padding: 0 20px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 15px;
}


.faq-btn {
  background-color: #FCFCFC;
  color: #013a63;
  border: 1px solid #013a63;
  border-radius: 8px;
  padding: 10px 30px;
  font-weight: 800;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq-btn:hover {
  background-color: #013a63;
  color: #fff;
  transform: translateY(-2px);
}




@media (max-width:545px) {




  .faq-wrapper {
    padding: 0px 0px;
  }

  .faq-title {
    max-width: 250px;
  }


}




@media (max-width:400px) {
  .faq-title {
    max-width: 200px;
    font-size: 1rem;
  }

  .faq-question {
    align-items: start;
  }
}

@media (max-width:350px) {
  .faq-title {
    max-width: 170px;
    font-size: 0.9rem;
  }

  .faq-question {
    align-items: start;
  }
}

/* =======================
   FOOTER SECTION
======================= */
.footer-section {
  background-color: #fff;
  border-top: 1px solid #ddd;
  color: #013a63;
  font-size: 0.95rem;
}

.footer-logo {
  width: 90px;
  height: auto;
}

.footer-desc {
  color: #3b4449;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;

}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;

}

.footer-title {
  color: #003F6F;
  font-weight: 700;
  font-size: 1.05rem;
}


.footer-links li {
  margin-bottom: 8px;
}

.footer-links li i {
  margin-left: 8px;
}

.footer-links a {
  color: #5c6b73;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a i {
  margin-left: 8px;
}

.footer-contact li {
  color: #5c6b73;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.footer-links i {
  color: var(--gold);
  font-size: 1rem;
}

.footer-links i.bi-chevron-double-left {
  font-size: 0.8rem;
}



.footer-social .social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #003F6F;
  color: #F9F9F9;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social .social-link i::before {
  line-height: 1.8;
}


.footer-social .social-link:hover {
  color: #003F6F;
  background-color: #F9F9F9;
  box-shadow: 0 3px 5px #00000026;
  transform: translateY(-3px);
}


.footer-divider {
  border-top: 1px solid #ddd;
  opacity: 0.7;
}


.footer-copy {
  color: #5c6b73;
  font-size: 0.9rem;
}



@media (max-width:600px) {

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

  .footer-social {
    justify-content: flex-start;
    gap: 20px;
  }

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

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


}

@media (max-width:992px) {
  .footer-desc {
    text-align: right;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 20px;
  }

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

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


.vision-mission-section .card {
  transition: all 0.3s ease;

}

.vision-mission-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* ===== تفاصيل الخبر ===== */
.news-details {
  font-family: "Tajawal", sans-serif;
}


.news-details h2 {
  font-size: 1.5rem;
  line-height: 1.7;
}

.news-details .news-body {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
}

.news-details ul {
  padding-right: 1.3rem;
}

.news-details ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.news-details .btn-main {
  background-color: #002C41;
  color: #fff;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.news-details .btn-main:hover {
  background-color: #013652;
}

.news-image-container {
  max-width: 1450px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.news-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ===== صفحة الخدمات ===== */
.services-page {
  background-color: #fff;
}

.services-page h2 {
  color: #002C41;
}

.service-card {
  background: #F9F9F9;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 2rem;
  color: #d98b27;
}

.btn-main {
  background-color: #002C41;
  color: #fff;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background-color: #013652;
}



/* === Scroll To Top Button === */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border: none;
  outline: none;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}


.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}


.scroll-to-top:hover {
  background-color: var(--gold);
  transform: translateY(-4px);
}


.scroll-to-top i {
  font-size: 20px;
  line-height: 1;
}


.scroll-to-top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(46, 140, 218, 0.473);
  z-index: -1;
  opacity: 0;
  animation: pulse 1.8s infinite ease-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}





/*====================================================================================================*/
/*----------------------------------------------------------------------------------------------------*/
/*                                            RTL                                                     */
/*----------------------------------------------------------------------------------------------------*/
/*====================================================================================================*/

.first-btn:dir(ltr) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.second-btn:dir(ltr) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.second-btn span:dir(ltr) {
  border-right: unset;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
}

.hero:dir(ltr)::after {
  background: linear-gradient(64deg, rgba(0, 49, 87, 1) 0%, rgba(0, 49, 87, 1) 48%, rgba(0, 49, 87, 0.14) 73%, rgba(0, 49, 87, 0) 100%);
}

.hero .lawyer-container:dir(ltr) {
  right: unset;
  left: 90px;
}

.stats:dir(ltr) {
  width: 100%;

}

.stat-label:dir(ltr) {
  max-width: 122px;

}

.lawyer-container:dir(ltr) {}

.about-section:dir(ltr) .col-lg-6:first-child {

  padding-left: 0;
  padding-right: 4rem;
}

.highlight:dir(ltr) {
  color: var(--gold);
  font-weight: 700;
  border-left: 3px solid var(--gold);
  padding-left: 8px;
  font-size: 30px;

  border-right: unset;
  padding-right: 0;
}

.about-goals h5:dir(ltr) {
  right: unset;
  left: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.about-images-section:dir(ltr) {
  display: flex;
  justify-content: start;
  align-items: center;
}

.about-goals li:dir(ltr) {
  text-align: left;
}

.next .bi-chevron-left:dir(ltr),
.prev .bi-chevron-right:dir(ltr) {
  transform: rotate(180deg);
}

.plan-body ul li:dir(ltr) {
  padding-right: unset;
  padding-left: 22px;
}

.plan-body ul li:dir(ltr)::before {
  content: "✔";
  position: absolute;
  left: 0;
  right: unset;
  color: var(--gold);
  font-weight: bold;
}

.faq-title:dir(ltr) {
  text-align: left;
  margin-left: 0.7rem;

}

.modal-header .btn-close:dir(ltr) {
  margin: 0;
  padding: 0;
  right: 1.5rem;
  position: absolute;

}

.text-lg-start:dir(ltr) {
  text-align: left !important;
}

.footer-section .list-unstyled:dir(ltr) {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.footer-links a i {
  margin-left: unset;
  margin-right: 8px;
}

.footer-links a i:dir(ltr)::before {
  transform: rotate(180deg);
}