/*================ Fonts =================*/
:root {
    --default-font: "Cairo", sans-serif;
    --heading-font: "Cairo", sans-serif;
    --nav-font: "Cairo", sans-serif;
}

/*=============== Global-Style-Css ===============*/
html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    color: #3E3F66;
    background-color: #F6F4FE;
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #3E3F66;
}

a:hover {
    text-decoration: none;
    color: #3E3F66;
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
    }
}

.row_am {
    padding: 80px 0;
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: #D4D2DD;
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button {
    background-color: #0C1230;
    background: none;
}


/*======================================*/
.relative {
    position: relative;
    z-index: 1;
}

button,
button:focus {
    border: none !important;
    box-shadow: inherit !important;
    outline: inherit !important;
}

.site-heading h5 {
    text-transform: uppercase;
    font-weight: 800;
    color: #5138ee;
    font-size: 18px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.bg-dark .site-heading h5,
.bg-theme .site-heading h5,
.shadow .site-heading h5 {
    color: #ffffff;
    opacity: 0.8;
}

.site-heading p {
    margin-bottom: 3rem;
    margin-top: 10px;
}

.bg-dark .site-heading p,
.bg-theme .site-heading p,
.shadow .site-heading p {
    color: #ffffff;
}

.site-heading h2 {
    font-size: 2.5rem;
    color:#253996;
    display: block;
    font-weight: 900;
    position: relative;
    margin-bottom: 0;
    line-height: 1.4;
}

.bg-dark .site-heading h2,
.bg-theme .site-heading h2,
.shadow .site-heading h2 {
    color: #ffffff;
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #FEC824;
    position: relative;
    z-index: 1;
    left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
    background: #FEC824;
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: #FEC824;
}

.site-heading.light .devider:before,
.bg-theme .site-heading .devider:before,
.shadow .site-heading .devider:before,
.bg-dark .site-heading .devider:before {
    background: #FEC824;
}

.area-title {
    font-size: 40px;
    line-height: 1.2;
}

.site-heading {
    margin-bottom: 30px;
    margin-top: 0;
    overflow: visible;
    text-align: center;
}

/*=============== Preloader ================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0C1230;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3859F6;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #32236F;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*=========== Header-Css-Start ================*/
header {
    position: relative;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
}

header.fix_style {
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
    background-color: #ffffffb4;
    padding: 15px 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

header.fixed {
    pointer-events: all;
    opacity: 1;
    transition: .4s all;
}

header.fixed .navbar {
    padding: 0;
}

.rtl .navbar {
    direction: rtl;
    padding-left: 0;
    padding-right: 0;
    padding-top: 35px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #253996;
    padding: 5px 30px;
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #253996;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: #ffffff;
    background-color: #253996;
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    margin-left: 0 !important;
    margin-right: 20px !important;
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
    animation: pulse-blue-medium-sm 3.5s infinite
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    animation: pulse-blue-small-sm 3.5s infinite
}

.navbar-brand img {
    width: 130px;
}

.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.toggle-bar {
    width: 25px;
    margin: 10px 0;
    position: relative;
    border-top: 4px solid #253996;
    display: block;
}

.toggle-bar::before,
.toggle-bar::after {
    content: "";
    display: block;
    background: #253996;
    height: 4px;
    width: 30px;
    position: absolute;
    top: -12px;
    right: 0px;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -ms-transform-origin: 13%;
    -webkit-transform-origin: 13%;
    transform-origin: 13%;
}

.white_header .toggle-bar,
.white_header .toggle-bar::before,
.white_header .toggle-bar::after {
    border-top: 4px solid #ffffff;
}

.toggle-bar::after {
    top: 4px;
}

.toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FEC824;
    transition: width 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link:hover::after {
    width: 100%;
}


@media (max-width: 768px) {
  .navbar-brand img {
    width: 100px;
  }

  .rtl .navbar {
    padding-top: 15px;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 15px 0;
    border-radius: 15px;
    margin-top: 15px;
  }

  .navbar-nav {
    flex-direction: column !important;
    align-items: center !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    font-size: 16px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
  .navbar-nav .nav-link.dark_btn {
    width: 85%;
    margin: 10px auto !important;
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
  }
  header {
    padding: 10px 0 !important;
  }

}

/*================== Hero-Slider ==================*/
.banner_section {
    margin-top: 70px;
    position: relative;
}

.banner_section .container {
    position: relative;
}

.banner_section .row {
    align-items: center;
}

.banner_section .banner_text {
    margin-top: -200px;
}

.rtl .banner_section .banner_text h1 {
    margin-bottom: 2rem;
    font-size: 55px;
    color: #0C1230;
    letter-spacing: -1.5px;
    font-weight: 700;
}

.rtl .banner_section .banner_text h1 span {
    color: #253996;
}

.rtl .banner_text h1,
.rtl .banner_text p {
    direction: rtl !important;
    text-align: right !important;
}

.banner_section .app_btn {
    display: flex;
    align-items: center;
}

.banner_section .app_btn li a {
    display: block;
    padding: 12px 30px;
    position: relative;
    border-radius: 12px;
    font-weight: 600;
    transition: .4s all;
}

.store_btn1 {
    background-color: #fff;
    color: #253996;
    border: 2px solid #253996 ;
    margin-right: 15px;
}

.store_btn1:hover {
    background-color: #253996;
    color: #fff;
    border: 2px solid #253996 ;
}

.store_btn2 {
    background-color: #253996;
    color: #fff;
    border: 2px solid #253996 ;
}

.store_btn2:hover {
    background-color: #fff;
    color: #253996;
}

.banner_section .app_btn li:last-child {
    margin-right: 25px;
}


@media (max-width: 768px) {
  .banner_section .app_btn {
    flex-direction: column; 
    align-items: stretch;   
  }
  
    .banner_section .store_btn1 {
    margin-right: 0px !important;
  }

  .banner_section .app_btn li {
    margin-right: 0 !important;
    width: 100%;
    margin-bottom: 15px;
  }

  .banner_section .app_btn li a {
    text-align: center;
    width: 100%;
  }

}
.banner_section .banner_slider {
    display: flex;
    position: relative;
}
.banner_section .banner_slider .left_icon {
    position: absolute;
    left: 15px;
    bottom: 70px;
    z-index: 9999;
}
.banner_section .banner_slider .right_icon {
    position: absolute;
    right: 15px;
    top: 70px;
}
.banner_section .banner_slider .slider_frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 315px;
}
.banner_section .banner_slider #frmae_slider::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: 92%;
}
.banner_section .banner_slider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 475px;
    height: 475px;
    border-radius: 100%;
    background-color: #253996;
    z-index: -5;
}
.banner_section .banner_slider #frmae_slider {
    width: 305px;
    margin: 0 auto;
}
.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}
section#banner_section .owl-dots {
    margin-top: 40px;
}

section#banner_section button.owl-dot.active span {
    background-color: #253996;
}



.worker_title{
    direction: rtl !important;
    text-align: right !important;
    margin-top: 51px;
}



/*======================================= worker-section ===================================*/
.worker-section {
  background: #fff;
  padding-top: 50px;
  border-radius: 25px;
  margin-top: 50px;
  overflow: hidden;
}

.worker-text {
  text-align: right;
  padding: 10px 20px;
}

.worker-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #253996;
  margin-bottom: 20px;
}

.worker-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

.steps-box {
  background: #fff;
  padding: 22px 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  border-right: 6px solid #FEC824;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.steps-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #253996;
  margin-bottom: 12px;
}

.steps-box ul li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #444;
}

.worker-btns {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.worker-section .store_btn1, .store_btn2 {
  padding: 15px 30px;
  border-radius:12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.worker-section .store_btn1 {
  background: #253996;
  color: #fff;
}

.worker-section .store_btn1:hover {
  background: #1e2d7a;
  transform: translateY(-3px);
}

.worker-section .store_btn2 {
  background: #FEC824;
  color: #253996;
  border: none;
}

.worker-section .store_btn2:hover {
  background: #f4ba18;
  transform: translateY(-3px);
}

.worker-img img {
  max-width: 88%;
  border-radius: 20px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .worker-section {
    padding: 50px 15px;
  }

  .worker-text h2 {
    font-size: 30px;
  }

  .worker-img {
    margin-bottom: 25px;
  }


}

@media (max-width: 768px) {

  .worker-btns {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .worker-btns li {
    width: 100%; 
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
  }

  .worker-btns li:last-child {
    margin-bottom: 0;
  }

  .worker-section .store_btn1,
  .worker-section .store_btn2 {
    width: 85%;
    margin-right: 0px;
    text-align: center;
  }
}



.from-left {
  opacity: 0;
  transform: translateX(-80px);
  animation: slideFromLeft 1s ease forwards;
}

.from-right {
  opacity: 0;
  transform: translateX(80px);
  animation: slideFromRight 1s ease forwards;
}

@keyframes slideFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/*=================== Feature-Detail ==================*/
.slider_img img {
    border: 1px solid transparent;
    border-radius: 30px;
}

.features_section .feature_detail {
    background-color: #ffffff;
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    padding: 60px 40px 20px;
}

.features_section .feature_detail .feature_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -75px;
}

.features_section .feature_box {
    max-width: 410px;
}

.features_section .data_block {
    text-align: center;
    margin-bottom: 50px;
    padding-inline: 20px;
}

.features_section .data_block .icon {
    font-size: 44px;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #253996;
    color: #FEC824;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.features_section .data_block:hover .icon {
    background: #253996;
    color: white;
    transform: translateY(-5px);
}

.features_section .data_block h4 {
    font-size: 20px;
    color:#253996;
    font-weight: 600;
    margin-bottom: 10px;
}

.features_section .container {
    max-width: 1370px;
}

@media (max-width: 768px) {

  .features_section .feature_detail {
    flex-direction: column;
    padding: 20px 20px 40px;
    margin-top: 20px;
  }

  .features_section .feature_detail .feature_img {
    position: relative;  
    top: 0;
    margin: 0 auto 40px;  
    left: 0;
    transform: none;
    width: 70%;
    z-index: 2;
  }

  .features_section .feature_detail .feature_img img {
    width: 100%;
    display: block;
  }

  .features_section .feature_box {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }

  .features_section .data_block {
    margin-bottom: 40px;
    padding-inline: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;   
  }

  .features_section .data_block .icon {
    width: 80px;
    height: 80px;
    font-size: 34px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  text-align: center;
  }

  .features_section .data_block h4 {
    font-size: 18px;
  }

  .features_section .feature_detail .right_data .data_block .icon , .features_section .feature_detail .left_data .data_block .icon{
    margin-left: auto;
    margin-right: auto;
  }
}

/*================ HOW ITS WORKS SECTION ===================*/
.how-its-works {
    margin-top: 60px;
    background-color: #253996;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.how-its-works .site-heading h2 {
    color: #FEC824;
}
.how-its-works .site-heading .devider,
.how-its-works .site-heading .devider:before {
    background: #FEC824;
}

.how-its-works h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.how-its-works p {
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    border-radius: 18px;
    transition: 0.3s ease;
}

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

.step-icon {
    width: 85px;
    height: 85px;
    margin-bottom: 20px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-title {
    font-size: 1.4rem;
    margin: 12px 0;
    font-weight: 700;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    opacity: 0.95;
}

.steps-container .fa-chevron-left {
    font-size: 2.8rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    padding-top: 20px;
    opacity: 0.9;
}

.steps-container .fa-chevron-left:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .how-its-works h2 {
        font-size: 2.1rem;
    }

    .how-its-works p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .steps-container {
        flex-direction: column;
        gap: 35px;
    }

    .steps-container .fa-chevron-left {
        display: none;
    }
}

@media (max-width: 480px) {
    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/*--------------------------------------# Gallery Section ----------------------------------*/
.gallery {
    padding-block: 60px;
  background-color: #fff;
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;

}

.gallery .swiper-wrapper img {
  border-radius: 10px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
}


.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid #253996;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #253996;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid #253996;
    padding: 4px;
    z-index: 1;
    transform: scale(1.1);
    border-radius: 25px;
    transition: none;
  }
}

/*======================================= Services =====================================*/
.services {
    padding-bottom: 4rem;
}

.services .container {
    max-width: 1200px;
}

.services .site-heading h2 {
    font-size: 2.5rem;
    color: #253996;
    font-weight: 700;
    margin-bottom: .5rem;
}

.services .site-heading p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin-top: 1rem;
}

.services .service-item {
    height: 100%;
    padding: 2rem 2.5rem;
    padding-bottom: 0rem !important;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eaeaea;
    direction: rtl;
    text-align: right;
    margin-bottom: 2rem;
}

.services .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #253996;
}

.services .service-item .icon i {
    font-size: 3rem;
    color: #253996;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    text-align: right;
}

.services .service-item:hover .icon i {
    transform: scale(1.1) rotate(5deg);
    COLOR: #FFD700;
}

.services .service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #253996;
    line-height: 1.4;
    text-align: right;
}

.services .service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: right;
    word-break: break-word;
}

.services .row .col-lg-4:nth-child(n+4):nth-child(-n+6) .service-item {
    margin-top: 2rem;
}

@media (max-width: 768px) {
  .services .service-item {
    margin-bottom: 1.5rem !important;
    padding: 1.5rem 1.75rem !important; 
  }

  .services .row {
    row-gap: 1.5rem;
  }

  .services .service-item .icon i {
    font-size: 2.5rem;
  }

}

/*---------- Contact Section -----------*/
.contact {
    padding: 80px 0;
    direction: rtl;
}

.contact .info-box {
    background-color: #253996;
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 1.25rem;
    height: 100%;
    text-align: right;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact .info-box h3 {
    color: #FEC824;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact .info-box p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.contact .info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item .icon-box {
    width: 3.2rem;
    height: 3.2rem;
    background-color: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.contact .info-item:hover .icon-box {
    background-color: rgba(255, 255, 255, 0.32);
}

.contact .info-item .icon-box i {
    font-size: 1.4rem;
    color: #ffffff;
}

.contact .info-item .content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact .info-item .content p {
    margin-bottom: 0.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact .contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
    text-align: right;
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #253996;
}

.contact .contact-form p {
    color: #666;
    margin-bottom: 1.75rem;
}

.contact .contact-form .form-control {
    background: transparent;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 20px;
    transition: 0.3s;
    background-clip: padding-box;
    border: 1px solid #eee;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.contact .contact-form .form-control:focus {
    border-color: #253996;
    box-shadow: 0 0 0 3px rgba(6, 92, 194, 0.15);
    background-color: #fff;
}

.contact .contact-form .form-control::placeholder {
    color: #aaa;
}

.contact .contact-form .btn {
    background-color: #253996;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact .contact-form .btn:hover {
    background-color: #253996;
}

@media (max-width: 992px) {

    .contact .info-box,
    .contact .contact-form {
        padding: 1.8rem;
    }
}

/*----------------------- Footer  ---------------------------*/
.footer {
    background-color:#253996;
    color: #fff;
    padding: 50px 20px 30px;
    text-align: center;
    direction: rtl;
}

.footer .site-name h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    color: #FFD700;
}

.footer .site-description p {
    margin: 20px auto 0;
    font-size: 16px;
    max-width: 750px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #fff;
    background-color: transparent;
}

.footer .social-links a:hover {
    color: #FFD700;
    transform: scale(1.1);
}

.footer .footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .credits a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
}


.link-button {
  display: inline-flex;
  align-items: center;
  gap: 10px; 
  padding: 12px 25px;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 25px;
  font-size: 16px;
  transition: background 0.3s, transform 0.3s;
}

.link-button:hover {
  background: #fff;
  color: #253996;
  transform: scale(1.05);
}
