@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('/font/neosansArabic/NeoSansArabicLight.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('/font/neosansArabic/Neo Sans Arabic Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('/font/neosansArabic/NeoSansArabicMedium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('/font/neosansArabic/NeoSansArabicBold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('/font/neosansArabic/NeoSansArabicBlack.ttf') format('truetype');
  font-weight: 800;
}

@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('/font/neosansArabic/NeoSansArabicUltra.ttf') format('truetype');
  font-weight: 900;
}

body {
  font-family: 'Neo Sans Arabic';
}
* {
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

.card,button{
  cursor: pointer;
}
.row {
  display: flex;
  align-items: center;
  justify-content: center;
}
:root{
  --main-color: #66aeee;
  --text-white: #ffffff;
  --text-black: #000000;
  --text-dark: #4f4f4f;
  --text-gray: #E6E6E6;
  --hoverDark-color: #489DE8;
  --hoverLight-color: #e3effa;
  --hoverBabyBlue-color: #66afee3b;
  --bgMain-color: #dfdfdf25;
  --bgSecondray-color: #f1f7fd;
  --bgCard-color: #F2F2F22F;
  --bgDot-color: #F0F7FD;
  --border-color: #c5c5c536;
  --borderGray-color: #D9D9D93D;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
}

.arrow-flip {
  transform: scaleX(-1);
}
/*header style start*/

header .navbar {
  padding: 1rem 0;
  border-bottom: 1px solid #CCCCCC3D;
}

header .navbar .more {
  width: 604px;
  height: 64px;
  background-color: #E6E6E63D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .navbar .logo-scroll {
  display: none;
  transition: opacity 0.3s ease;
}

header .navbar .logo-scroll.visible {
  display: block;
}

header .navbar .responsive-dropdown {
  display: none;
}

header .navbar ul .nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5; /* أو أي قيمة ثابتة */
  margin: 0 0.1rem;
  color: #1c1c1c;
  transition: color 0.3s ease;
}


header .navbar ul .nav-link.active {
  color: #66aeee;
  font-weight: 500;
  line-height: 1.9; /* أو أي قيمة ثابتة */
}

header .navbar ul .nav-link:hover {
  color: #66aeee;
}

header .navbar .lang-switch {
  width: 130px;
  gap: 8px;
  cursor: pointer;
  padding: 15px 10px;
  border-radius: 6px;
  background-color: #E9F4FD3D;
  color: #66aeee;
  border: none;
}

header .navbar .lang-switch span {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
  ;
}

/*header style end*/

/*Sidebar Social style start*/

.social-sidebar {
  position: fixed;
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  padding: 10px 5px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

.social-sidebar.show {
  opacity: 1;
  pointer-events: auto;
  
}

.social-sidebar .icons {
  display: flex;
  flex-direction: column;
}

.social-sidebar .icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  margin: 5px 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-sidebar .icons a:nth-child(1) {
  background: #1877f2;
  border: 2px solid #1877f2;
}

.social-sidebar .icons a:nth-child(2) {
  background: #E4405f;
  border: 2px solid #E4405f;
}

.social-sidebar .icons a:nth-child(3) {
  background: #25d366;
  border: 2px solid #25d366;
}

.social-sidebar .icons a:nth-child(4) {
  background: #1da1f2;
  border: 2px solid #1da1f2;
}

.social-sidebar .icons a:nth-child(5) {
  background: #Ff0000;
  border: 2px solid #Ff0000;
}

.social-sidebar .icons a:hover {
  transform: scale(1.2);
}

/*Sidebar Social style end*/


/*SCROLL NAVBAR*/
header .nav-top {
  transition: transform 0.3s ease;
  z-index: 1040;
  position: relative;
}

header .nav-top.hidden {
  transform: translateY(-100%);
}

header #main-header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
}

header #main-header.scrolled {
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/*RESPONSIVE HEADER*/

@media (max-width: 768px) {
  header #main-header {
    z-index: 1050;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #navbarSupportedContent {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-start-start-radius: 8px;
    border-end-start-radius: 8px;
    padding: 1rem;
    z-index: 999;
  }
  
  .navbar-nav {
    flex-direction: column !important;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    background-color: #007BFF0D;
    border-radius: 5px;
    text-align: right;
    color: #000;
  }
  
  header .navbar ul .nav-link:hover,
  header .navbar ul .nav-link.active {
    color: #fff;
    background-color: #66aeee;
  }
  
  .navbar-toggler.bars-small {
    display: none;
  }
  
  .nav-top {
    display: none;
  }
  
  
  .social-sidebar {
    opacity: 1;
  }
  
  .logo-scroll {
    display: block !important;
  }
}

@media (max-width: 425px) {
  .nav-top {
    display: none !important;
  }
  
  .logo-scroll {
    display: block !important;
  }
  
  .navbar-toggler.bars-small {
    display: block;
  }
  
  .dropdown {
    display: none !important;
  }
  
  .responsive-dropdown {
    display: block !important;
  }
}

/*hero start*/
section.hero {
  position: relative;
  overflow: hidden;
}

section.hero .hero-container {
  background-position: center;
  background-size: cover;
  height: 609px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

section.hero .hero-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
}

section.hero .info {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  text-align: center;
}

section.hero .info h1 {
  font-size: 32px;
font-weight: var(--fw-medium);
color: var(--text-gray);
}

section.hero .info p {
font-weight: var(--fw-medium);
color: var(--text-gray);
font-size: 24px;
line-height: 48px;
margin: 0 4rem;
}

section.hero .info .btn {
  padding: .7rem 3rem;
  font-weight: var(--fw-medium);
  background: var(--main-color);
  color: var(--text-white);
  font-size: 20px;
  border-radius: 12px;
}

section.hero .info .btn:hover {
  background: var(--hover-color);
}

/*RESPONSIVE Hero*/

@media (max-width: 425px) {
  section.hero .hero-container {
    height: 100vh;
    border-radius: 0;
  }
  
  section.hero .info h1 {
    margin: 0 2.5rem;
  }
  
  
  section.hero .info p {
    margin: 0 3rem;
  }
}

/*services start*/
section.services {
  background: var(--bgMain-color);
}

section.services .card .card-info,
.program .btn-info{
  background: var(--bgSecondray-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  padding: .7rem 1rem;
  border-radius: 10px;
  width: 95%;
  z-index: 1;
}
section .sec-title{
font-weight: var(--fw-bold);
color: var(--text-black);
font-size: 32px;
line-height: 50px;
}
section.services .card .card-info:hover {
  background: var(--hoverLight-color);
}

section.services .card .card-info a {
  color: var(--main-color);
}

section.services h3 {
  font-size: 1.1rem;
  font-weight: bold;
}

/*services end/
/*choose start*/
section.choose .card {
  min-height: 160px;
  border: 0.25px solid var(--border-color);
  border-radius: 16px;
  background: var(--bgCard-color);
  width: 100%;
}

section.choose .card-body {
  padding: 1rem;
}

section.choose .card:hover{
  background: var(--hoverBabyBlue-color);
}

section.choose .card.active {
  background: var(--hoverBabyBlue-color);
}
section.choose .card .card-title {
  font-size: 16px;
  font-weight: 500;
  margin: 1rem 0 0.5rem 0;
  color: var(--text-black);
}
section.choose .card img {
  
}
section.choose .card p {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
}

/*choose end*/
/*reviews start*/
section.reviews {
  position: relative;
  height: 100vh;
}

section.reviews h2 {
  position: relative;
  background: var(--bgMain-color);
  height: 50vh;
}

#carousel-reviews {
  position: absolute;
  width: 90%;
  top: -10%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.carousel-item .video-container {
  background: url('/img/home/review.png') no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 32px;
  overflow: hidden;
  height: 418px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item .video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* النقاط المخصصة */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: var(--bgDot-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  width: 48px;
  height: 12px;
  border-radius: 6px;
  background-color: var(--main-color);
}

/* للكاروسيل RTL */
.carousel-rtl .carousel-item-next.carousel-item-start,
.carousel-rtl .carousel-item-prev.carousel-item-end {
  transform: translateX(100%);
}

.carousel-rtl .carousel-inner {
  direction: rtl;
}

/* للكاروسيل LTR */
.carousel-ltr .carousel-item-next.carousel-item-start,
.carousel-ltr .carousel-item-prev.carousel-item-end {
  transform: translateX(-100%);
}

.carousel-ltr .carousel-inner {
  direction: ltr;
}

.carousel-item {
  transition: none !important;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*reviews end*/
/*guide start*/
section.guide .card {
  width: 100%;
  min-height: 379px; /* لو أردت الحفاظ على التوازن */
  border: .25px solid var(--borderGray-color);
  border-radius: 10px;
  background: #FAFAFA66;
}
section.guide .card p.par-2{
  -webkit-line-clamp: 2; /* عدد الأسطر */
}
section.guide .card p {
  color:#636363;
font-weight: var(--fw-regular);
font-size: 14px;
line-height: 24px;
  line-height: 1.7;
  max-width: 100%;
  height: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* عدد الأسطر */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.guide .card h5 {
font-weight: var(--fw-bold);
font-size: 16px;
line-height: 100%;
color: #242424;

}

.main-p{
font-weight: var(--fw-regular);
font-size: 20px;
line-height: 40px;
color: #737373;
}

.card .btn{
  color: #3B3B3B;
font-weight: var(--fw-bold);
font-size: 16px;
line-height: 24px;
}
/*guid end*/
/*popular start*/
section.popular .accordion-item {
    background: none;
    border: none;
    margin: 1rem 0;
    overflow: hidden;
}

section.popular .accordion-header button {
font-weight: var(--fw-medium);
font-size: 20px;
color: #4F4F4F;

height: 64px;
border-radius: 10px;
background: #66AEEE08;
}

section.popular .accordion-button::after {
    content: "";
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0;
    margin-right: auto;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12 20L12 4M12 4L18 10M12 4L6 10' stroke='%2366aeee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.3s ease-in-out;
    transform: rotate(180deg);
    /* يبدأ لأسفل */
}
.accordion-button-ltr:after{
  margin-left: auto !important;
margin-right: 0 !important;
}
section.popular .accordion-button[aria-expanded="true"]::after {
    transform: rotate(0deg);
    /* يدور لأعلى عند الفتح */
}

section.popular .call h5 {
font-weight: var(--fw-medium);
font-size: 20px;
color: #66aeee;
}
.accordion-button {
box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #4f4f4f !important; /* الحفاظ على لون الخط الطبيعي */
  box-shadow: none !important;
}

.accordion-body{
font-weight: var(--fw-medium);
font-size: 14px;
line-height: 30px;
color: #5B5B5BCC;

}
.call .form {
height: 64px;
border-radius: 10px;
background: #F2F2F233;
border: 1px solid #00000014;
    flex: 1 1 300px;
    display: flex;
    overflow: hidden;
}

.call input {
    border: none;
    padding: 1rem;
    flex: 1;
    outline: none;
    font-size: 14px;
    background: #CDCDCD1A;
}

.call input::placeholder {
  color: #5B5B5B;
font-weight: var(--fw-medium);
font-size: 12px;
}

.call button {
  width: 101px;
height: 64px;

border: none;
    background: #66aeee;
}
/*popular end*/
/*contact start*/
.contact-section .container-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-form,
.img-job{
  width: 555px;
height: 585px;
border-radius: 16px;
background: #FFFFFF80;
border: 0.25px solid #E6E6E6;
padding: 0 30px 0;
}

.contact-form  input,
.contact-form textarea,
.contact-form .form-select{
  width: 507px;
height: 64px;
opacity: 0.4;
margin-top: 15px;
border-radius: 10px;
border-width: 0.25px;
border: 0.25px solid #00000014;
background-color: #F2F2F280;
}
.contact-form textarea {
  resize: none;
  height: 100px;
}
#map {
  background: url('/img/map.png');
  background-position: center;
  background-size: cover;
  width: 505px;
height: 535px;
border-radius: 16px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.location {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.map-container-wrapper {
  position: relative;
}
.map-background {
  width: 261px;
height: 507px;
border-radius: 12px;

  background-color: #66aeee;
  position: absolute;
  top: 0px;
  left: 60%;
  z-index: 1;
}
.btn-send {
    width: 262px;
height: 64px;
margin-top: 1.5rem;
border-radius: 12px;
border: none;
background: #66AEEE;
font-weight: var(--fw-medium);
font-size: 25px;
line-height: 50px;
color: #F8F8F8;
}

.btn-send:hover {
    background-color: #1976d2;
}
.form-label{
font-weight: var(--fw-medium);
font-size: 20px;
line-height: 100%;
letter-spacing: 3%;
color: #353535;
margin-top: .5rem;
}

/* === Input Placeholder === */
input::placeholder {
    font-weight: var(--fw-regular);
    font-size: 16px;
    line-height: 24px; /* ارتفاع مناسب للنص */
    letter-spacing: 3%;
    color: #9D9D9D;
    text-align: right; /* محاذاة النص لليمين */
}

/* === Inputs عامة === */
input[type="text"],
input[type="tel"],
input[type="email"] {
    direction: rtl;      /* اتجاه الكتابة من اليمين */
    text-align: right;   /* محاذاة النص المدخل لليمين */
    padding-inline-start: 10px; /* مسافة داخلية مناسبة من اليمين */
    line-height: 24px;
}

/* === Select RTL === */
.custom-select-rtl {
    direction: rtl;        /* اتجاه الكتابة من اليمين */
    text-align: right;     /* النص يظهر من اليمين */
    padding-inline-start: 10px; /* مسافة داخلية مناسبة */
    font-weight: var(--fw-regular);
    font-size: 16px;
    line-height: 24px;    /* ارتفاع مناسب للنصوص */
    letter-spacing: 3%;
    color: #9D9D9D;
    appearance: none;      /* لإزالة السهم الافتراضي (اختياري) */
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;           /* تأكد أن العرض يكفي النص */
}

/* === Placeholder لـ Select (طريقة بديلة) === */
.custom-select-rtl:invalid {
    color: #9D9D9D;
}
/*contact end*/
footer{
  background: #E9F4FD33;
}
footer .row{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .quick-link{
  margin-top: 3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


footer .quick-link a{
font-weight: 400;
font-size: 16px;
line-height: 27px;
letter-spacing: 0%;
margin-bottom: .5rem;
  text-decoration: none;
  width: 50%;
color: #4f4f4f;
position: relative;
}
footer .quick-link a::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 10px;
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="%2366aeee"><rect x="7" y="0" width="7" height="7" transform="rotate(45 7 0)"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.quick-link-ltr a:before{
  left: -20px;
}
footer p{
font-weight: 400;
font-size: 18px;
line-height: 33px;
color: #4F4F4F;
width: 90%;
}

footer .contact-link{
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

footer .contact-link a{
font-weight: 400;
font-size: 12px;
line-height: 100%;
letter-spacing: 0;
color: #4f4f4f;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.15rem;
}

footer h5{
font-weight: 500;
font-size: 20px;
margin-bottom: 2rem;

}
.foot-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

hr{
  opacity: .24;
}

.foot-bottom p{
font-weight: 400;
font-size: 14px;
width: 70%;
}

.foot-bottom span{
font-weight: 300;
font-size: 20px;
position: absolute;
right: 85px;
margin-top: .2rem;
color: #66aeee;
}
.left{
  left: 85px;
}
.foot-bottom a{
font-weight: 400;
font-size: 14px;
text-decoration: underline;
text-decoration-style: solid;
color: #4f4f4f;
}