:root {
  --main-color--: #14573a;
  --Text-color--: #070b1f;
  --transition: 0.5s;

  --holdText-color--: #c1c1c1;
  --shadow--: 0px 2px 2px 0px #0000004d;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Tajawal", serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}
* {
  scrollbar-width: thin; /* للفَيَرفُكس */
  scrollbar-color: var(--main-color--) #e0e0e0; /* لون الشريط والخلفية */
}
::-webkit-scrollbar {
  width: 8px; /* عرض الاسكرول */
}

::-webkit-scrollbar-track {
  background: #e0e0e0; /* الخلفية */
  border-radius: 4px;
  margin: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color--); /* لون المقبض */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--main-color--); /* لون عند الـ hover */
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

.textMainColor {
  color: var(--main-color--);
}

.textColor {
  color: var(--text-color--);
}

.sectionwithBackground {
  background: radial-gradient(
    58.11% 58.11% at 50% 50%,
    rgba(56, 248, 210, 0) 68%,
    rgba(44, 172, 116, 0.105) 100%
  );
}

.hover-up {
  transition: transform 0.3s ease;
}
.hover-down {
  transition: transform 0.3s ease;
}

.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-5px);
}
.hover-down:hover {
  transform: translateY(5px);
}

.hover-zoom:hover {
  transform: scale(1.03);
}

.hover-shadow:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  float: none;
  color: #fff;
  padding: 0 10px;
}
.breadcrumb-item.active {
  color: #15e8ca;
}

/*********************************************/
/******************* Navbar ******************/

.flag-btn {
  background-color: #E6F6F4 !important;
  display: flex;
  align-items: center;
  gap: 8px;

border-top-left-radius: 8px;
border-top-right-radius: 8px;
padding: 5px 9px;
}
.flag-img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

nav {
  display: flex;
  justify-content: center;
  z-index: 1000;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 1rem;
}
.nav-header .navbar-brand img {
  padding-top: 7px;
  width: 60px;
}
.burger {
  font-size: 2.5rem;
  color: #14573a;
  background: transparent;
  border-color: transparent;
  transition: 0.5s;
  cursor: pointer;
}

.links a {
  font-size: 1.1rem;
  display: block;
  padding: 0.75rem;
  transition: 0.5s;
  color: #fff;
}

.links {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.show-links {
  height: auto;
  padding: 10px;
}

.nav-center {
  z-index: 50000;
  position: fixed;
  width: 100vw;
  padding: 5px;
  transition: 0.5s;
}

.burger {
  position: relative;
  width: 25px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #e6f6f4;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 55%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-50%);
}

.burger input:checked ~ span:nth-of-type(1) {
  top: 0;
  left: 5px;
  transform: rotate(405deg);
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  top: 18px;
  left: 5px;
  transform: rotate(-405deg);
}
.shadow-nav,
.nav-center.scrolled {
  background: #00000080 !important;
}

@media screen and (min-width: 991px) {
  .links {
    overflow: visible;
  }
  .nav-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem 0 1.4rem;
  }

  .burger {
    display: none;
  }
  .links {
    height: 50px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 5px;
  }
}

@media screen and (max-width: 768px) {
  .nav-header .navbar-brand img {
    padding-top: 7px;
    width: 50px;
  }
}

.btn-register {
  transition: var(--transition);
  background: linear-gradient(95.7deg, #34986d -1.62%, #14573a 76.3%);
  box-shadow: 0px 25px 50px -12px #00bba740;
  color: #fff;
  border-radius: 12px;
  padding: 10px 40px;
}
.btn-register:hover {
  scale: 1.02;
}

/******************* Navbar ******************/
/*********************************************/

/* landing */

/* تنسيق الفيديو */
.myImgLanding,
#myVideo {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* طبقة الأوفرلاي */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #071c1766 59%, #14573a66 100%);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}
.overlay-img {
  background: linear-gradient(
    180deg,
    rgba(7, 28, 23, 0.85) 60.13%,
    rgba(8, 67, 42, 0.85) 100%
  );
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.overlay-video a {
  background-color: #178757;
  box-shadow: 0px 25px 50px -12px #00bba740;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.overlay-video a:hover {
  background-color: #1d6446;
}

@media (max-width: 991.98px) {
  .OurmissionSec .myImgLanding {
    height: 115vh;
  }
}

/* landing */

/* hero */
/* container card */

/* left swiper card */
.image-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(7, 66, 47, 0.08);
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  background: linear-gradient(
    359.43deg,
    rgba(7, 28, 23, 0.6) 36.99%,
    rgba(20, 87, 58, 0.48) 98.43%
  );
  padding: 0.5rem 0.9rem;
  border-radius: 10px;

  width: 100%;
  height: 100%;
  z-index: 2;
}

.overlay-text-block {
  padding: 1.5rem 0.9rem;
  position: absolute;
  bottom: 0;
}

.overlay-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.overlay-sub {
  font-size: 0.85rem;
  opacity: 0.95;
}

/* right content */
.content-panel {
  padding: 1rem 2rem;
}

.badge-vision {
  background: linear-gradient(98.63deg, #34986d -1.12%, #14573a 68.7%);
  color: #fff;
  border-radius: 30px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  display: inline-block;
}

.section-title {
  font-weight: 500;
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  color: #124e34;
  line-height: 150%;
}

.section-text {
  color: rgba(7, 66, 47, 0.85);
  line-height: 1.9;
}

.feature {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--soft-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--main-green);
  font-size: 1.1rem;
}

.feature .text {
  font-size: 0.98rem;
  font-weight: 600;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .image-card {
    min-height: 300px;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .overlay-title {
    font-size: 1rem;
  }
}
/* hero */

/* home  */
.account-card {
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #eef8f3;
  box-shadow: 0px 0px 6px 0px #90a1b940;

  transition: transform 0.3s;
}

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

.icon-box {
  margin-bottom: 1rem;
}

.account-btn {
  color: #124e34;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
}

.badge-custom {
  background-color: #e6f6f4;

  color: #14573a;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
}

.badge-custom span {
  background-image: linear-gradient(45deg, #14573a, #28a745);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial-swiper {
  padding: 20px 0;
}
.testimonial-card {
  max-width: 100%;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #279465 0%, #14573a 100%);
  color: #fff;
}
.testimonial-card.featured svg path {
  stroke: #e8eeeb;
}
.testimonial-card.featured small {
  color: #fff !important;
}
@media (min-width: 768px) {
  .testimonial-card.featured {
    height: 120%;
    position: relative;
    top: 20%;
  }
}

.swiper-pagination {
  margin-top: 20px;
  position: unset !important;
}

.swiper-pagination-bullet {
  width: 30px !important;
  height: 10px !important;
  border-radius: 3px !important;
}

.swiper-pagination-bullet-active {
  background: var(--main-color--) !important;
}

/* home  */

/* footer */

.footer {
  background: var(--main-color--);
  color: white;
  padding: 25px 0 0;
  overflow: hidden;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
}

.footer-top img {
  width: 100px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column h3 {
  font-size: 18px;
  color: var(--main2-color--);
  margin: 10px 0;
}

.footer-column p {
  font-size: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column p {
  color: #fff;
}

.footer-column ul li p {
  font-weight: bold;
}

.footer-column ul li a:hover {
  color: white;
}

.app_btn {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 5px;
}

.app_btn a {
  white-space: nowrap;
  color: #fff;
  background-color: black;
  text-transform: capitalize;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  padding: 3px;
  cursor: pointer;
}

.payment-methods img {
  width: 50px;
  margin: 5px;
}
.con_soc {
  display: flex;
  gap: 10px;
}

.faq-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding: 10px;
  font-size: 25px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-column_end {
    justify-content: space-between;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

@media screen and (max-width: 780px) {
  .faq-button {
    width: 35px;
    height: 35px;
  }
}

.faq-button:hover {
  animation: jello-vertical 1s both;
}

.tooltip {
  position: absolute;
  top: 0;
  bottom: -60px;
  opacity: 0;
  color: white;
  padding: 5px 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
  pointer-events: none;
  font-weight: bold;
}

.faq-button:hover .tooltip {
  opacity: 1;
  transition-duration: 0.3s;
}
.copyright {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .bg-mob-footer {
    background: hsla(0, 0%, 100%, 0.102);
    padding: 10px 15px;
    margin: 20px 0;
  }
}

/* footer */

/* about */
/* الخلفية الخضراء */
.bg-shape {
  background: linear-gradient(135deg, #5bd19a 0%, #dcfce7 100%);
  position: absolute;
  top: -70px;
  right: -0;
  width: 400px;
  height: 125%;
  transform: rotate(-6deg) translateX(0) !important;
  z-index: 1;
  border-radius: 24px;
}

/* الصورة */
.main-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  width: 400px;
  transform: rotate(1deg);
}

/* خط الاقتباس */
.quote-line {
  border-right: 4px solid var(--main-color--);
  padding-right: 10px;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .bg-shape {
    width: 300px;
    height: 115%;
  }
  .main-img {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .bg-shape {
    top: 50%;
    right: 0;
    left: 50%;
    transform: rotate(-6deg) translateX(0) translate(-50%, -50%) !important;
  }
}
@media (max-width: 768px) {
  .bg-shape {
    right: 0;
    left: 50%;
    transform: rotate(-6deg) translateX(0) translate(0, -50%) !important;
  }
}

.mission-section {
  position: relative;
  background: url("/assets/img/mission.png") center/cover no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.mission-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 28, 23, 0.8) 59%,
    rgba(8, 67, 42, 0.8) 100%
  );

  z-index: 1;
}

.mission-section .container {
  position: relative;
  z-index: 2; /* فوق الـ overlay */
}

/* about */

/* contact */
.contact-section {
  padding: 50px 0;
}

.contact-info h2 {
  color: #0f3d2e;
  font-weight: bold;
}

.contact-info p,
.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info i {
  color: #0f3d2e;
  margin-left: 8px;
}

.form-control {
  border-radius: 6px;
  padding: 8px 10px;
  border: 1px solid #14573a;
}

.form-control:focus {
  border-color: #14573a;
  outline: 0;
  box-shadow: 0 0 0 0.1rem #14573a50;
}

.btn-submit {
  background-color: #14573a;
  color: #fff;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.btn-submit:hover {
  background-color: #0d3e29;
  color: #fff;
}

.btn-submit svg {
  margin-left: 8px;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 12px;
  cursor: pointer;
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
  color: #666;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.custom-file-upload:hover {
  border-color: #14573a;
  background-color: #f8f9fa;
  color: #14573a;
}

.custom-file-upload.dragover {
  border-color: #14573a;
  background-color: #e6f6f1;
  color: #14573a;
}
/* contact */

/* privacy */

.terms-section {
  padding: 50px 15px;
}

.term-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.term-number {
  background-color: #14573a;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.term-content h5 {
  font-weight: bold;
  color: #14573a;
}

.term-content p {
  margin: 0;
  color: #555;
  line-height: 1.8;
}

.term-content ul {
  margin-top: 10px;
  padding: 0;
}

.term-content ul li {
  list-style: none;
  position: relative;
  padding-right: 30px;
  /* مسافة لأيقونة الصح */
  margin-bottom: 8px;
}

.term-content ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 10.5L12.258 12.944C12.4598 13.0954 12.7114 13.1649 12.9624 13.1385C13.2133 13.1122 13.445 12.992 13.611 12.802L20 5.5" stroke="%2300C950" stroke-width="2" stroke-linecap="round"/><path d="M21 12.5001C21 14.3806 20.411 16.2139 19.3157 17.7425C18.2203 19.2711 16.6736 20.4182 14.8929 21.0226C13.1122 21.6271 11.1868 21.6586 9.3873 21.1127C7.58776 20.5668 6.00442 19.4709 4.85967 17.9789C3.71492 16.487 3.06627 14.6739 3.00481 12.7944C2.94335 10.9149 3.47218 9.06329 4.51702 7.49974C5.56187 5.93619 7.07023 4.73921 8.83027 4.0769C10.5903 3.41459 12.5136 3.32023 14.33 3.80708" stroke="%2300C950" stroke-width="2" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-banner {
  background: linear-gradient(91.33deg, #0d8f41 0.17%, #035d44 98.87%);

  border-radius: 12px;
  padding: 30px 20px;
  color: white;
  text-align: center;
}

.contact-btn {
  background-color: white;
  color: #008b4f;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: 0.3s;
}

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

.contact-btn svg {
  width: 18px;
  height: 18px;
}
/* privacy */

/* login */

.login-page {
  min-height: 100vh;
  display: flex;
}

.login-left {
  position: relative;
  flex: 1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.login-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-login {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180.02deg,
    rgba(5, 84, 50, 0.7) 0.02%,
    rgba(4, 18, 15, 0.7) 78.46%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.overlay-login .logo {
  width: 100px;
  height: auto;
}

.overlay-login h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.overlay-login p {
  font-size: 14px;
  line-height: 1.6;
}

.login-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 100px;
}

@media screen and (max-width: 768px) {
  .login-right {
    margin: 0;
    padding: 15px;
  }
}

.account-type {
  display: grid;
  gap: 10px;
}

.account-type input[type="radio"] {
  display: none; /* نخفي الراديو الأصلي */
}

.account-type label {
  display: block;
  padding: 5px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
}

.account-type input[type="radio"]:checked + label {
  color: #00c950;
  background: #f0fdf4;
  border: 2px solid #00c950;
}

.account-type input[type="radio"]:checked + label svg path {
  fill: #00c950;
}

.btn-login {
  background: #14573a;
  color: white;
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
  transition: 0.5s;
}

.btn-login:hover {
  background: #0a8659;
}

.togglePassword {
  cursor: pointer;
  background-color: transparent;
  position: absolute;
  left: 10px;
  top: 10px;
}

.eyePassword {
  color: #627085;
}

.timer-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.timer-container svg {
  transform: rotate(-90deg); /* عشان يبدأ من فوق */
}

.timer-container .time-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

select.form-control {
  background-image: url(https://cdn-icons-png.flaticon.com/512/60/60995.png);
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 6px;
}

.register-form {
  display: none; /* اخفي كل الفورمات في البداية */
}

.choices {
  margin-bottom: 0 !important;
  margin-top: 1rem !important;
}

.choices__inner {
  border-radius: 6px !important;
  padding: 8px 10px !important;
  border: 1px solid #14573a !important;
  background-color: white !important;
  display: flex !important;
  align-items: center !important;
}
.choices__input {
  padding: 0 !important;
  margin: 0 !important;
  background-color: white !important;
  color: #000 !important;
}

.choices__list--multiple .choices__item {
  background-color: var(--main-color--) !important;
  border: 1px solid var(--main-color--) !important;
}
/* login */
