

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  direction: ltr;
  overflow-x: hidden;
  font-family: "Almarai", sans-serif;
  font-size: 12px;
}

.container {
  max-width: 1370px;
  margin: auto;
}
.container2 {
  max-width: 1370px;
  margin: auto;
}
.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0rem 1rem;
  transition: all 0.3s ease;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  background: transparent;
  color: white;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  z-index: 999;
}

.header .logo {
  flex: 1;
  padding: 1.5rem;
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
}

.header .logo img {
  width: 220px;
  padding: 0 0;
}

.header .nav {
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
  flex: 4;
  justify-content: center !important;
  display: flex;
}

.header > .nav > ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.header > .nav > ul > li {
  position: relative;
  margin: 0;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  margin-left: 1rem;
}

.header .nav > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
}

.header.fixed {
  position: fixed;
  background: white;
  color: black;
  border-bottom: 0.5px solid #0000001c;
}

.header.fixed .icon button div span {
  color: black !important;
}

.header.fixed .logo {
  border-right: 0.5px solid #0000001c;
}

.header.fixed .nav {
  border-right: 0.5px solid #0000001c;
}

.header.fixed .points {
  background-color: black;
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  position: relative;
  transition: background-color 0.2s ease;
}

.language-option span {
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
  padding-left: 1.5rem !important;
}

.language-option span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 62%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  color: #000;
  font-weight: bold;
  height: 1px;
  width: 12px;
  background-color: rgb(0, 0, 0);
  border-radius: 2px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.language-option:hover span {
  transform: translateX(23px);
}

.language-option:hover span::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.language-option ul li {
  position: relative;
  transition: background-color 0.2s ease;
}

.language-option ul li {
  position: relative;
  transition: transform 0.3s ease;
}

.language-option ul li::before {
  content: "";
  opacity: 0;
  font-size: 20px;
  margin-left: 0 !important;
  padding-right: 0.3rem;
  color: #000;
  font-weight: bold;
  height: 1px;
  width: 12px;
  background-color: rgb(0, 0, 0);
  border-radius: 2px;
  transition: opacity 0.3s ease, margin-left 0.3s ease;
}

.language-option ul li:hover::before {
  opacity: 1;
  margin-left: 8px;
}
.dropdownMenu {
  position: absolute !important;
  right: -195px !important;
}
.dropdownMenu ul {
  width: 280px !important;
}
.dropdownMenu ul li {
  text-align: left;
  padding: 0.4rem 0;
}
.dropdown-dropdown-m {
  right: -190px;
  top: -10px !important;
}

.dropdown-dropdown-m ul {
  background-color: white !important;
  border-radius: 15px;
  overflow: hidden;
  margin: 0;
  padding: 1.2rem 1rem !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.dropdown-dropdown-m ul li {
  width: 100%;
  font-size: 12px;
}

.dropdown-dropdown-m ul li:hover {
  transform: translateX(-23px);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dropdown-content .language-option ul {
  padding: 0.7rem 0.2rem;
}

.dropdown-content .language-option ul li {
  position: relative;
  padding-left: 1.5rem !important;
  transition: transform 0.3s ease;
  padding-top: 0.5rem;
  font-size: 14px;
}

.dropdown-content .language-option ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  color: #000;
  font-size: 16px;
  transition: all 0.3s ease;
  font-weight: bold;
  height: 1px;
  width: 12px;
  background-color: rgb(0, 0, 0);
  border-radius: 2px;
}

.dropdown-content .language-option ul li:hover {
  transform: translateX(23px);
}

.dropdown-content .language-option ul li:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.stats-container {
  align-items: center;
}
.stats-container > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 210px;
  align-items: center;
}
#scrollToTop {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

#scrollToTop.active {
  opacity: 1;
  pointer-events: auto;
}

.rotate-circle {
  transform: rotate(-90deg);
}
#scrollToTop:hover i {
  color: #1e73be;
}
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.float-icon {
  animation: floatUpDown 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .header .nav {
    display: none;
  }

  #menuIcon {
    display: flex;
    color: white;
    font-weight: bold;
  }

  .header {
    position: absolute;
    background: transparent;
  }
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-square {
  transition: transform 0.2s ease-in-out;
  transform-origin: center center;
}

.icon-square:hover {
  transform: rotate(180deg);
}

.header .icon {
  cursor: pointer;
  flex: 1;
}
.slider-section {
  height: 100vh;
  width: 100vw;
}
.slider-section #sliderText {
  font-family: "Almarai", sans-serif !important;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #f1f5f9;
  color: #1e293b;
  border-right: 2px solid #ccc;
  transition: left 0.4s ease;
  z-index: 1000 !important;
  padding-top: 80px;
}
.sidebar.open {
  left: 0;
}
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #1e293b;
}
.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #1da1f2;
}
.icon-C {
  stroke: #1da1f2;
  fill: none;
  stroke-width: 2;
  color: #1da1f2;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  aside .nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  #about .absolute {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin: 1rem 0 0 0 !important;
    width: 100% !important;
    padding: 2rem 1.5rem !important;
    border-radius: 1rem !important;
  }
  aside .aside-content {
    display: none;
  }
  #about h2 {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
  }

  #about p {
    font-size: 1rem !important;
    line-height: 1.75rem !important;
  }
}
@media (max-width: 1024px) {
  .bg-white img {
    height: auto !important;
    width: 100%;
    object-fit: cover;
  }

  .bg-white h2 {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
  }

  .bg-white p {
    font-size: 1rem !important;
    line-height: 1.75rem !important;
  }
  .header {
    padding: 0;
  }
  .header .icon-square {
    display: none;
  }
  .header .elementskit-menu-hamburger {
    display: block;
  }
  .header .elementskit-menu-hamburger svg {
    width: 17px;
  }
  .header .logo {
    padding: 0.3rem 0;
    flex: 4;
  }
  .bg-white .max-w-4xl {
    margin-top: 2rem !important;
    margin-inline-start: 0 !important;
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .main-dropdown {
    transition: transform 0.3s ease;
  }

  .main-dropdown.rotate {
    transform: rotate(180deg);
  }

  .bg-white .max-w-4xl > div {
    padding: 1.5rem !important;
  }
}
@media (max-width: 1024px) {
  section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .fa-angle-down {
    transition: transform 0.3s ease;
    display: inline-block;
  }
  .header {
    padding: 0;
  }
  .header .icon-square {
    display: none;
  }
  .header .elementskit-menu-hamburger {
    display: block;
  }
  .header .elementskit-menu-hamburger svg {
    width: 17px;
  }
  .header .logo {
    padding: 0.3rem 0;
    flex: 4;
  }
  .header.fixed {
    display: none;
  }
  .language-dropdown span {
    display: flex;
    justify-content: space-between;
  }
  .dropdownBtn {
    display: flex;
    justify-content: space-between;
  }
  aside .nav {
    overflow-x: hidden;
  }
  .dropdownBtn span a {
    margin: 0;
    padding: 0;
  }
  .dropdownBtn span i {
    margin: 0;
    padding: 0;
  }
  .aside-content {
    display: none;
  }
  .top-aside {
    display: flex;
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .top-aside img {
    width: 130px;
    margin-right: 50px;
  }
}

@media (max-width: 1024px) {
  section .grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .language-option span:hover {
    color: rgb(11, 11, 180);
  }
  section .grid > div {
    border-left: none;
  }

  section .grid > div:last-child {
    border-bottom: none;
  }

  section h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
  .about-section-content {
    display: flex !important;
    justify-content: left !important;
    align-items: start !important;
    border-radius: 0 !important;
  }
  .about-section-content h2 {
    text-align: left;
  }
  .about-section-image {
    height: 30vh;
  }
}
aside {
  justify-content: start !important;
  z-index: 10000 !important;
  width: 33% !important;
}
.aside-content img {
  align-items: center !important;
  text-align: center !important;
  margin: auto;
}

@media (max-width: 1024px) {
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;

    margin: 0;
    width: 100%;
  }
  aside {
    width: 100vw !important;
    padding: 10px;
  }
  .dropdownWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-dropdown-m {
    display: block;
  }
  .nav {
    margin-top: 0 !important;
  }
  .dropdown-dropdown-m ul {
    background-color: white !important;
    width: 100%;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-shadow: none;
  }

  .dropdownWrapper .arrow {
    display: none;
  }

  .dropdown-dropdown-m ul li {
    width: 100%;
    margin: 0;
    padding: 0;
    padding: 1rem !important;
    font-size: 12px;
  }
  .dropdownWrapper > button > span {
    transition: none;
    margin: 0;
    padding: 0;
  }
  .dropdownWrapper button:hover {
    color: rgb(11, 11, 180);
  }
  .language-option a:hover {
    color: rgb(11, 11, 180);
  }
  .language-option > span,
  .language-option > span:hover {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100vw !important;
    transition: none !important;
  }

  .language-option {
    padding-top: 1rem;
  }
  aside {
    justify-content: start !important;
    z-index: 10000 !important;
  }
  .nav ul li {
    width: 100%;
    border-bottom: #1e293b;
    padding: 0.75rem 1rem;
    position: relative;
  }

  .nav ul li span.flex {
    display: flex;
  }

  .nav ul li .dropdown-content {
    position: relative;
    top: auto;
    right: auto;
    width: 100% !important;
    border: none;
    box-shadow: none;
    margin-top: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
  }

  .nav ul li.open .dropdown-content {
    display: block;
  }

  .nav ul li .dropdownMenu {
    position: relative;
    width: 100% !important;
  }
  .nav ul li:hover {
    color: rgb(11, 11, 180);
  }

  .fa-angle-down {
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .nav ul li.open.has-dropdown::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .language-option span::before,
  .language-option:hover span {
    all: unset;
  }
  .career-components {
    height: 20vh !important;
  }
  .career-components > div {
    top: -5rem !important ;
  }
  .career-components > div > div {
    overflow: hidden;
    height: auto !important;
  }
  .career-components > div > div h3 {
    font-size: 15px !important;
  }
  .career-components > div > div p {
    font-size: 10px !important;
  }
}
@media (max-width: 1024px) {
  .dropdownWrapper .dropdownMenu {
    transition: none !important;
    max-height: none !important;
  }

  .dropdownWrapper.open .dropdownMenu {
    display: block !important;
  }

  /* كمان لو الزرار واخد transition من Tailwind */
  .dropdownBtn {
    transition: none !important;
  }
  .header {
    padding: 0;
  }
  .header .icon-square {
    display: none;
  }
  .header .elementskit-menu-hamburger {
    display: block;
  }
  .header .elementskit-menu-hamburger svg {
    width: 17px;
  }
  .header .logo {
    padding: 0.5rem 0;
    flex: 4;
    margin-right: 0.7rem;
  }
  .slider-section {
    height: 90vh;
    overflow: hidden;
  }
  .slider-home-container {
    height: 100vh;
  }
  .about-section {
    display: flex !important;
    flex-direction: column-reverse !important;
    height: auto !important;
    overflow-x: hidden;
  }
  .about-section .about-section-image {
    width: 100vw;
  }
  .about-section {
    margin: 0 !important;
    padding: 0 !important;
    overflow-y: hidden;
  }
  .about-section .about-section-content {
    width: 100vw;
    margin: 0 !important;
    padding: 0;
  }

  .about-section > .about-section-image img {
    width: 100vw !important;
    height: 300px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .about-section-image {
    margin: 0 !important;
    padding: 0 !important;
    height: 33vh !important;
  }
  .icons-section {
    margin-top: 2rem;
    padding: 0 !important;
  }
  .icons-section > div {
    width: 100% !important;
    align-items: center !important;
  }
  .icons-section > div > div {
    width: 29vw !important;
    margin: auto !important;
  }

  #projects-list,
  .stats-container {
    padding: 0 !important;

    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap !important;
    width: 100vw !important;
  }

  #projects-list > div,
  .stats-container > div {
    width: 250px;
    margin: 0 !important;
    padding-bottom: 10px !important;
    padding: 0;
    border: none !important;
    margin: auto;
    align-items: center;
  }

  .radian-choosen-contetn {
    padding-left: 20px;
  }
  .radian-choosen-contetn h2 {
    line-height: 1.2 !important;
    font-size: 40px !important;
  }
  .radian-choosen-contetn p {
    font-size: 20px !important;
    width: 70%;
  }
  .radian-choosen {
    display: flex !important;
    position: relative;
    justify-content: space-between !important;
  }
  .Be-Part-of-Radian {
    max-width: 200px;
  }
  .brands {
    width: 100vw !important;
  }
  .brands div {
    display: flex;
  }
  .icons2-about img {
    width: 70px;
  }
  .radian-choosen-section .radian-choosen-contetn {
    padding-left: 1rem !important;
  }

  .view-details-section div > h2 {
    font-size: 2.5rem !important;
    margin-top: 2rem;
  }
  .sus-section {
    padding: 0 1rem !important;
    margin: auto;
    text-align: center;
  }
  .sus-section div p {
    width: 100%;
    text-align: center;
  }
  .sus-section span {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 72rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
 

  #projects-list {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    width: 100% !important;
  }
  #projects-list > div {
    width: 47%;

    margin: auto !important;
  }
  #cardsWrapper > div {
    width: 100% !important;
    margin: 10px auto;
    min-height: 300px;
  }
  .icons-section {
    margin-top: 40px !important;
    padding-top: 2rem !important ;
    padding-bottom: 2rem !important ;
  }
  h2 {
    font-size: 2rem !important;
  }
  .terms-section h2 {
    font-size: 1.6rem !important;
  }
  .icons-section h2 {
    font-size: 2rem;
  }
  .icons-section > div > div {
    width: 90% !important;
    margin: auto !important;
  }
  .icons-section > div > div {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
    margin: auto !important;
    flex-direction: row-reverse !important;
  }
  .iconssvg-content {
    width: 70%;
    margin-left: 30px;
  }
  .iconssvg-content > div {
    display: flex;
    justify-content: end;
  }
  .iconssvg-content > div .counter {
    font-size: 44px !important;
  }
  .icons-section .icons-svg {
    width: 30%;
    margin-right: 30px;
  }

  .icons-section .icons-svg svg {
    width: 80px !important;
    height: auto;
  }
  .icons-section > div > div .text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .icons-section > div > div svg {
    width: 50px !important;
    height: auto !important;
    flex-shrink: 0 !important;
  }

  .icons-section > div > div h2 {
    font-size: 22px !important;
    color: #4ba1f7 !important;
    margin: 0 !important;
  }

  .icons-section > div > div p {
    font-size: 14px !important;
    margin: 3px 0 0 !important;
    color: #333 !important;
  }

  #cardsWrapper h3 {
    font-size: 1.3rem !important;
  }

  #cardsWrapper p {
    font-size: 0.95rem !important;
    width: 100% !important;
  }
  .radian-choosen {
    display: block !important;
    position: relative !important;
    height: fit-content !important;
  }
  .radian-choosen div {
    margin-top: 20px;
  }
  .career-components {
    height: fit-content !important;
    overflow-y: hidden !important;
  }
  .career-components > div {
    top: -2rem !important ;
  }
  #sliderText > div {
    font-size: 1.7rem;
    width: 70vw;
  }
  .first-section {
    height: 60vh !important;
    overflow: hidden !important;
  }
  .first-section h2 div div,
  .first-section div h2 {
    font-size: 2rem !important;
  }
  .slider-section #slider {
    height: 90vh;
  }
  .slider-section {
    height: 100vh;
    overflow: hidden;
  }
  .radian-choosen-section {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1024px) and (min-width: 641px) {


  #cardsWrapper > div {
    width: 50% !important;
    margin-bottom: 20px;
    min-height: 350px;
    position: relative;
  }

  #cardsWrapper h3 {
    font-size: 1.5rem !important;
  }

  #cardsWrapper p {
    font-size: 1rem !important;
    width: 100% !important;
  }
  .brands img {
    width: 100px !important;
  }
}

@media (max-width: 768px) {
  footer {
    height: 100vh !important;
    margin-top: auto !important;
    margin-bottom: 0 !important ;
  }
  .career-icons-section {
    justify-content: center;
  }

  .brands img {
    width: 100px !important;
  }
  .tomoh {
    width: 80vw !important;
    padding: 10px;

    margin: auto;
  }
  .tomoh div {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .tomoh div p {
    width: 80vw;
  }

  .pages-links {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .pages-links a {
    font-size: 20px !important;
    margin-top: 15px;
  }
  #sliderContent {
    max-width: 70vw;
    padding-left: 0.5rem !important;
  }
  #sliderContent h2 {
    font-size: 2.5rem !important;
  }
  #sliderBtn {
    width: fit-content;
    display: inline-flex;
    justify-content: space-between;
  }
  #preloader {
    width: 90vw;
    font-weight: 500;
  }
  #preloader h3 {
    font-size: 1.7rem;
  }
  .slider-section {
    height: 90vh;
    overflow: hidden;
  }
  .career-icons-section > div {
    height: 40vh !important;
    overflow: hidden;
    background-color: white !important;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .dropdownWrapper .dropdownMenu {
    position: absolute;
    right: 100%;
    top: 0;
    display: none;
    min-width: 200px;
  }
  .dropdownWrapper:hover .dropdownMenu {
    display: block;
  }
}

@media (max-width: 1024px) {
  .dropdownWrapper .dropdownMenu {
    position: static;
    width: 100%;
    display: none;
    transition: none;
  }

  .dropdownWrapper.open .dropdownMenu {
    display: block;
  }
  .career-icons-section {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .career-icons-section div {
    max-width: 340px !important ;
    margin-top: 70px;
    height: 230px;
  }
  .choosen-radian-btn {
    min-width: 120px !important;
  }
  .first-section {
    height: 60vh !important;
    overflow: hidden !important;
  }
  .first-section h2 div div,
  .first-section div h2 {
    font-size: 2rem !important;
  }
  .container > div > div > h1,
  .container > div h3 {
    font-size: 2rem !important;
  }
}
@media (max-width: 1024px) {
  .dropdownWrapper .dropdownMenu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    display: none;
  }

  .dropdown-content .language-option ul li::before {
    content: none;
    padding: 0;
    margin: 0;
  }

  .dropdownWrapper.open .dropdownMenu {
    display: block;
  }
  .header {
    padding: 0;
  }
  .header .icon-square {
    display: none;
  }
  .header .elementskit-menu-hamburger {
    display: block;
  }
  .header .elementskit-menu-hamburger svg {
    width: 17px;
  }
  .header .logo {
    padding: 0.7rem 0.7rem;
    flex: 4;
  }
  .slider-about {
    width: 100vw;
  }
  .slider-about > h2 {
    text-align: center;
  }
  .language-option.active span {
    transform: translateX(0) !important;
  }
}
@media (max-width: 1024px) {
  .nav li span {
    background: transparent !important;
  }
  .dropdownBtn {
    margin: 0;
    padding: 0;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    width: 100%;
    text-align: right;
  }
  .dropdownMenu {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
  }
  .dropdownMenu ul {
    margin: 0;
    text-align: right;

    padding: 0;
  }
  .dropdownMenu ul li:hover {
    background-color: transparent;
  }
  .header.fixed {
    display: none;
  }
  .slider-top {
    font-size: 50px !important;
  }
}

@media (max-width: 1024px) {
  .language-option ul li,
  .language-option ul li::before {
    content: "";
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0.5rem !important;
    padding-right: 0.3rem !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    margin-right: 0 !important;
  }
  .header.fixed {
    display: none;
  }
  .language-option ul li:hover,
  .language-option ul li:hover::before {
    transform: none !important;
    opacity: 1 !important;
  }
  .language-option {
    padding-left: 0 !important;
  }
  .nav ul li {
    font-size: 1rem;
    color: #262626;
  }
  .dropdownMenu {
    margin-top: 0.7rem;
    margin-left: 1.5rem;
  }
  .dropdownMenu ul li {
    font-size: 1rem !important;
  }
}
.language-option > ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.language-option > ul > li {
  margin: 0 !important;
  padding: 0.3rem 0.6rem !important;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999999;
  transition: opacity 0.2s ease, visibility 0.5s ease;
  font-family: 'Playfair Display', serif !important;
}

#preloader .loader-text {
  text-align: center;
  color: #0c3c60;
}

#preloader .loader-text p {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

#preloader .loader-text p .underline {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0c3c60;
  transform: translateX(-100%);
  animation: slideLine 1.5s linear infinite;
}

@keyframes slideLine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

#preloader .loader-text h2 {
  font-size: 24px;
  font-weight: 500;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.cardsWrapper-slides div {
  padding-left: 3rem;
  padding-right: 3rem;
}
.group {
  perspective: 1000px;
}

.group a.flex.items-center.gap-2 {
  transform: rotateX(-90deg);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.3s, opacity 0.6s;
}

.group:hover a.flex.items-center.gap-2 {
  transform: rotateX(0deg);
  opacity: 1;
  transition-delay: 0.1s;
}
.group {
  perspective: 1000px;
}

.group .flex.items-center.justify-center.bg-\[\#CCE4FF\] {
  transform: rotateX(0deg);
  opacity: 1;
  transform-origin: center;
  transition: transform 0.6s, opacity 0.6s;
}

.group:hover .flex.items-center.justify-center.bg-\[\#CCE4FF\] {
  transform: rotateX(90deg);
  opacity: 0;
}

.group .flex.items-center.gap-2 {
  transform: rotateX(-90deg);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.6s, opacity 0.6s;
}

.group:hover .flex.items-center.gap-2 {
  transform: rotateX(0deg);
  opacity: 1;
  transition-delay: 0.3s;
}
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-text h2 {
  font-size: 33px !important;
  color: #1e4a6e;
  margin: 0.5rem 0;
}

.loading-line {
  position: relative;
  width: 200px;
  height: 4px;
  background: rgba(30, 74, 110, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: auto;
  margin-top: 12px;
}

.progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #1a4e81;
  transition: width 0.3s ease;
  transform-origin: right;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.language-option.active span {
  transform: translateX(23px);
}

.language-option.active span::before {
  opacity: 1 !important;
  transform: translateY(-50%) translateX(0) !important;
}

.dropdown-dropdown-m ul li.active {
  transform: translateX(23px) !important;
}

.dropdown-dropdown-m ul li.active::before {
  opacity: 1 !important;
  transform: translateY(-50%) translateX(0) !important;
}

.language-option.active span::before,
.language-option a.active span::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.dropdown-content .language-option ul a.active li::before,
.dropdown-content .language-option ul li.active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.language-option.active span,
.language-option a.active span,
.dropdown-content .language-option ul a.active li {
  transform: translateX(23px);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-indicator {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.border-frame {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid white;
  border-radius: 50%;
  transition: transform 0.5s ease;
  z-index: 1;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 17px 0;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: white;
}

.slide-number {
  color: white;
  font-weight: bold;
  margin: 8px 0;
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  z-index: 5;
  transition: all 0.5s ease;
}

.slider-home-colored {
  color: #60a5fa;
  font-style: italic;
}

.dots-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 80px;
  justify-content: space-between;
}

.fog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(226, 233, 227, 0.25);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.fog-overlay.active {
  opacity: 1;
}
.dropdown-content {
  width: 260px !important;
  padding-right: 1rem;
}
.first-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.first-section img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

section + section {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1920px) {
  #cardsWrapper {
    overflow-x: visible !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  #cardsWrapper > div {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
  }
}
@media(min-width: 1688px)  {
    .radian-choosen {
      right: 8.8% !important;
      transform: scale(1.05);
    }
  }
  .slider-home-colored,
.another-font {
   font-family: 'Playfair Display', serif !important;
}