@charset "utf-8";

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1E1E1E;
  border-radius: 0;
}

/*@font-face {*/
/*  font-family: "IBMPlexSansArabic-Regular";*/
/*  src: url("../fonts/IBMPlexSansArabic-Regular.ttf");*/
/*}*/

:root{
    --green: #3BD77E;
    --text-color: #20498A;
    --primary-color: #20498A;
    --light-green: rgb(124 228 169 / 10%);
    --bs-heading-color: #20498A;
    --bs-body-color: #20498A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;
  line-height: 30px;
  color: var(--primary-color);
  font-weight: 400;
  padding-top: 114px;
}
p{
    text-align: justify;
}
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.semi_bold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:focus,
a:hover {
  text-decoration: none;
}

h4{font-size: 20px}

h6{font-size: 14px}

.rounded {
    border-radius: 15px !important;
}

.border {
    border: 1px solid var(--border-color) !important;
}

.gap-20{
    gap:20px;
}

.gap-15{
    gap:15px;
}

.btn {
    background-color: var(--green);
    color: #fff;
    border-radius: 10px;
    height: 60px;
    border: 1px solid var(--green) !important;
    line-height: 60px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease-in-out;
    max-width: 100%;
    min-width: 180px;
}

.btn:hover, .btn:focus {
    background-color: #fff;
    color: var(--green);
    border: 1px solid var(--green) ;
}

.btn-border{
  background-color: #fff;
  border: none !important;
  color: #888B8F !important;
}

header{
  background: #FFFFFF;
  box-shadow: 0px 32px 13px rgba(214, 214, 214, 0.01), 0px 18px 11px rgba(214, 214, 214, 0.05), 0px 8px 8px rgba(214, 214, 214, 0.09), 0px 2px 4px rgba(214, 214, 214, 0.1);
  border-radius: 16px;
  position: fixed; /* Make the header fixed */
top: 0;          /* Position it at the top */
left: 0;
right: 0;
width: 100%;
z-index: 1030;   /* Ensure it's above other content */
transition: top 0.3s ease-in-out; /* Smooth transition for showing/hiding */
}

.nav_btn{
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  padding: 0 15px;
  min-width: 120px;
}

.navbar {
  padding: 30px 0;
}

.navbar-brand {
  margin: 0;
}

.navbar-brand img{
    width: 115px;
}

.navbar-nav{
  margin: 0 70px;
}

.nav-link {
    margin: 0 10px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-color);
    font-weight: 400;
}

.nav-link:hover {
  color: var(--green);
}

.lang_btn {
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

[dir="rtl"] .lang_btn {
    border-left: 1px solid var(--green);
}

[dir="ltr"] .lang_btn {
    border-right: 1px solid var(--green);
}

[dir="rtl"] .lang_btn:last-child{
  border-left: none;
}

[dir="ltr"] .lang_btn:last-child{
  border-right: none;
}
.login_page{
    background-color: #20498A;
}
header.blue_bg{
  background-color: #20498A;
  color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
header.blue_bg .nav-link{
  color: #fff;
}
header.blue_bg .nav-link:hover{
  color: var(--green);
}
header.blue_bg .lang_btn{
  color: #fff;
  border-color: #fff;
}
header.blue_bg .navbar-toggler{
  color: #ffffff;
  border-color: #fff;
}

.hero{
  padding: 20px 0;
  overflow: hidden;
}

.hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 100px;
    width: 640px;
    max-width: 110%;
    margin-bottom: 50px;
}

.hero p{
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 50px;
}

.hero_cards{
  padding: 20px 0;
  margin-top:-70px;
}

.hero_cards .card{
  width: 32%;
  padding: 0;
}
.hero_cards .card h3{
    font-size: 22px;
  line-height: 34px;
  min-height: 60px;
}
.hero_cards .card p{
    line-height: 23px;
}
.card {
  align-items: flex-start;
  gap: 10px;
  border: none;
  margin: 10px 0;
  padding: 15px;
  transition: all .3s;
}
.join-us .card:hover{
  background-color: var(--light-green);
}
.card .card_icon{
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  color: var(--green);
}

.card h3{
  font-size: 19px;
  line-height: 30px;
  font-weight: 600;
  /*min-height: 60px;*/
}
.card p{
  font-size: 14px;
}

.badge {
    font-family: 'Alexandria', sans-serif;
    background-color: var(--light-green);
    width: fit-content;
    border-radius: 20px;
    color: #278F54;
    border: 1px solid var(--green);
    padding: 15px 30px;
    line-height: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 215px;
    justify-content: center;
    max-width: 100%;
    font-weight: 400;
    white-space: normal;
}

.badge i{
  font-size: 22px;
  color: var(--green);
}

.join-us h2 {
    font-size: 41px;
    line-height: 64px;
    width: 600px;
    max-width: 100%;
    font-weight: 600;
}
.join-us p{
    font-weight: 300;
}
.about_us h2, .features h2 {
    font-size: 38px;
    line-height: 64px;
    width: 590px;
    max-width: 110%;
    font-weight: 600;
}
.about_us p{
    font-size: 18px;
}
.join-us .card_icon{
  height: 80px;
  width: 80px;
  border-radius: 16px;
}

.join-us .card .card_icon img{
  width: 60px;
  height: 60px;
  padding: 10px;
  background: #FFFFFF;
box-shadow: 0px 32px 13px rgba(214, 214, 214, 0.01), 0px 18px 11px rgba(214, 214, 214, 0.05), 0px 8px 8px rgba(214, 214, 214, 0.09), 0px 2px 4px rgba(214, 214, 214, 0.1);
border-radius: 16px;
}

.features .badge {
    margin: 0 auto;
}
.features img{
    height: 550px;
    object-fit: contain;
}
.features h2 {
    margin: 0 auto;
    width: 650px;
    text-align: center;
    max-width: 100%;
    margin-bottom: 40px !important;
}

.features .feature_block{
  background: var(--light-green);
  border-radius: 32px;
  padding: 50px 20px;
  margin-bottom: 20px;
}

.features .feature_block h3{
  color: #3BD77E;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.features .feature_block p{
  color: #057937;
  font-size: 20px;
  margin-bottom: 30px;
}

.features .feature_block .badge{
  margin: 0;
  background-color: #F0F5F4;
  color: #3BD77E;
  padding: 6px 20px;
  margin-bottom: 30px;
  font-size: 10px;
    line-height: 22px;
}

.features .feature_block.blue{background: rgba(23, 102, 227, 0.1);}

.features .feature_block.blue h3,.features .feature_block.blue p{color: #1766E3}

.features .feature_block.blue .badge{color: #1766E3;border-color: #1766E3}
.service h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 60px;
    margin-bottom: 20px;
    width: 550px;
    max-width: 101%;
}
.service .service_block{
  background: #FFFFFF;
  box-shadow: 0px 24px 64px rgba(8, 8, 52, 0.05);
  border-radius: 4px;
  margin-bottom: 50px;
  padding: 70px 30px;
}
.service .service_block h3{
    font-weight: 500;
    margin-bottom: 20px;
}
.service .service_block p{
    font-size: 18px;
}
.service .service_block img{
  margin: 0 auto;
  display: table;
  margin-bottom: 50px;
}

footer {
    background-color: #20498A ;
  }
footer img.footer_logo{
    width:180px;
}
footer p {
    font-size: 17px;
    line-height: 32px;
    opacity: .6;
    margin-top: 10px;
    width: 400px;
    max-width: 100%;
}

footer h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

footer ul{
  padding: 0;
}

footer ul li{
  margin-bottom: 10px;
}

footer ul a{
  font-size: 16px;
    opacity: 0.7;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
  }

  .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
  }

.copyright {
    padding: 10px;
    border: 1px solid rgba(19, 19, 19, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright p{
  margin: 0;
  color: #fff;
  gap: 5px;
  font-size: 13px;
  opacity: 1;
}

footer hr {
    border-top: 1px solid #fff;
    opacity: 1;
    margin-top: 40px;
}

.login {
    background-color: #20498A;
    padding: 60px 0;
}

.login-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px; /* Match container border-radius */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-promo-wrapper{
    padding-left: 45px;
}
.login-promo-wrapper h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 70px;
     color: #fff;
     margin-bottom: 0;
}
.login-promo-wrapper h3 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 70px;
     color: #fff;
}
.login-promo-wrapper p {
    font-size: 20px;
    line-height: 50px;
    font-weight: 300;
     color: #fff;
}
.login .badge{
    
}
.form-label {
    width: 100%;
    font-weight: 400;
    color: #18194599;
    margin-bottom: 8px;
    font-size: 13px;
}
.iti {
    font-size: 14px;
    width: 100%;
    color: #20498A;
}
.iti__arrow {
    border-top: 4px solid #20498A;
}
.iti-mobile .iti--container {
    width: auto;
    max-width: 100%;
}
.form-control {
  min-height: 60px;
    background: #FFFFFF;
    border: 1px solid rgba(24, 25, 69, 0.1);
    border-radius: 16px;
    padding: 12px 15px;
    font-size: 14px;
    color: #20498A;
    text-align: right;
    direction: rtl;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}
.form-control::placeholder {
  color: #181945;
  opacity: .6; 
}
.btn-submit-custom {
    background-color: #3BD77E;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.btn-submit-custom:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px);
    color: #fff; /* Ensure text color remains white */
}

.btn-submit-custom i {
    margin-right: 10px; /* Space for RTL */
}
.why_login{
  padding: 60px 15px;
  background-color: #fff;
}
.why_login img{
  width: 85%;
  border-radius: 20px;
  float: left;
}
.why_login ul{padding: 0}
.why_login ul li{
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  line-height: 30px;
  color: #20498A;
  border: 1px solid #20498A;
  border-radius: 20px;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.why_login ul .img_box{
  width: 60px;
  height: 60px;
  background: rgba(32, 73, 138, 0.2);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
flex-shrink: 0;
}
.iti__flag{display: none;}
.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}
.iti__country-list{left: 0}

.disabled-link {
  pointer-events: none;
  cursor: default;
}

@media (max-width: 1200px){
    .login-promo-wrapper h2{
        font-size: 30px;
        line-height: 50px;
    }
    .form-control{font-size: 14px}
  .hero h1{font-size: 53px}
  .join-us h2{font-size: 38px}
  .about_us h2, .features h2{font-size: 31px}
  .hero_cards{
  margin-top:0;
}
.hero_cards .card h3{font-size:18px;}
}
@media (max-width: 991px){
      .hero h1 {
        font-size: 45px;
        line-height: 70px;
        margin-bottom: 30px;
        max-width: 100%;
    }
.features img{
    height: auto;
    object-fit: contain;
    margin-bottom:20px;
}
  .hero_img{display: none;}

  .navbar .nav_btn{display: none;}

.join-us .btn{
  margin-bottom: 30px;
}
.login,.why_login{padding: 40px 0}
.login-promo-wrapper h2{font-size: 36px;line-height: 50px}
.login-promo-wrapper p{line-height: 40px}
.why_login img.main_img{display: none;}
.login-form-wrapper{padding: 20px}
}

@media (max-width: 768px){
      .hero h1 {
        font-size: 32px;
        line-height: 50px;
    }
  .hero_cards .d-flex{
    flex-wrap: wrap;
  }
.service h2{max-width:100%;}
  .hero_cards .d-flex .card{width: 100%}
.hero_cards .d-flex .card h3{min-height: unset;}
  .features .feature_block h3{font-size: 24px}

  .features .feature_block p{font-size: 16px}

  .service h2{font-size: 24px;line-height: 40px}

  .social-icon{margin-bottom: 30px}
      .login-promo-wrapper h2 {
        font-size: 24px;
        line-height: 30px;
    }
        .login-promo-wrapper p {
        line-height: 35px;
        font-size: 16px;
    }
    .join-us h2, .about_us h2, .features h2 {
        font-size: 29px;
        line-height: 52px;
        max-width: 100%;
    }
}

@media (max-width: 640px){
    .why_login ul li{font-size: 16px;line-height: 24px}
    .service .service_block {
        padding: 30px 15px;
    }
}

@media (max-width: 460px){
    .join-us h2, .about_us h2, .features h2 {
        font-size: 23px;
        line-height: 48px;
        max-width: 100%;
    }
}
