@charset "UTF-8";
.text-main-color {
  color: #409699;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.row-gap-24 {
  row-gap: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: black;
}

button {
  border: none;
  outline: none;
}

body {
  font-family: "Cairo", sans-serif;
  color: #212529;
  font-size: 14px;
  scroll-behavior: smooth;
}

.landing .header {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

.main-section {
  min-height: calc(100vh - 78.14px - 287px);
}

/* مينيو الموبايل */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  width: 0;
  overflow: hidden;
  background: #f3f4f6;
  transition: 0.3s;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
}

.mobile-nav ul li a {
  color: #333;
  font-weight: bold;
}

.mobile-nav.active {
  width: 100%;
}

/* سيكشن البطل */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 40px 40px;
  background: url("../images/bg-hero (1).png");
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btns {
  display: flex;
  gap: 15px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.white-btn {
  background: white;
  color: black;
}

.white-btn:hover {
  background: #ddd;
}

.green-btn {
  background: #16a34a;
  color: white;
}

.green-btn:hover {
  background: #22c55e;
}

/* صورة التطبيق */
.hero-img {
  position: relative;
  z-index: 10;
  max-height: 100%;
  overflow-y: auto;
  border-radius: 10px;
  width: 250px;
}

.hero-img::-webkit-scrollbar {
  display: none;
}

.hero-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ريسبونسيف */
@media (max-width: 768px) {
  .desktop-nav,
  .download-btn {
    display: none;
  }
  .menu-icon {
    display: block;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-img {
    margin-top: 20px;
  }
}
/* Servies Section */
/* قسم الخدمات */
.services {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* العنوان */
.section-title {
  text-align: right;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

/* شبكة الخدمات */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

/* عنصر الخدمة */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05);
}

/* صورة الخدمة */
.service-img {
  width: 160px;
  height: 160px;
  padding: 8px;
  background: #eee;
  border: 2px solid #f1f1f1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

/* النص */
.service-item p {
  text-align: center;
  margin-top: 8px;
  color: #555;
  font-size: 18px;
  font-weight: 600;
}

/* Features */
/* العنوان */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
}

/* الشبكة */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* صورة التطبيق */
.features-img-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.features-img {
  /* max-width: 260px; */
  width: 70%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.logo-overlay {
  position: absolute;
  top: 60px;
}

.logo-overlay img {
  width: 120px;
}

/* المميزات */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

.feature-item p {
  color: #666;
  font-size: 15px;
}

/* About Us */
/* قسم من نحن */
.about {
  padding: 80px 0;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    gap: 50px;
  }
}
/* الصورة */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* النصوص */
.about-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .about-content {
    text-align: right;
  }
}
.about-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* قسم اراء العملاء */
/* القسم */
.testimonials {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* العنوان */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 40px;
}

/* الشبكة */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* الكارت */
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* الهيدر */
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #3b82f6;
  margin-left: 12px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
}

/* النجوم */
.stars {
  color: #fbbf24;
  /* أصفر */
  margin-bottom: 10px;
}

/* النص */
.testimonial-text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

/* تواصل معنا */
/* === form === */
.contact {
  padding: 80px 0;
}

form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

form h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

form input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

form input:focus {
  border-color: #facc15;
  box-shadow: 0 0 5px rgba(250, 204, 21, 0.6);
}

form button {
  width: 100%;
  background: #facc15;
  border: none;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  /* transition: background 0.3s; */
}

form button:hover {
  background: #eab308;
}

/* === contact icons === */
.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.social-icons {
  display: flex;
  gap: 20px;
  font-size: 30px;
}

.social-icons a {
  color: #555;
  transition: color 0.3s;
  text-decoration: none;
}

.social-icons a:hover:nth-child(1) {
  color: #25d366;
}

/* whatsapp */
.social-icons a:hover:nth-child(2) {
  color: #1877f2;
}

/* facebook */
.social-icons a:hover:nth-child(3) {
  color: #1da1f2;
}

/* twitter */
.social-icons a:hover:nth-child(4) {
  color: #e4405f;
}

/* instagram */
/* === policies === */
.policies {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.policies h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

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

.policies ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.policies ul li a:hover {
  color: #eab308;
}

/* responsive */
@media (min-width: 768px) {
  .container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
form h2 {
  text-align: right;
}

.header {
  border: 1px solid #ddd;
  width: 100%;
  background: white;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 100px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
}

.nav ul li a:hover {
  color: #f97316;
}

.download-btn {
  background: #f97316;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.download-btn:hover {
  background: #fb923c;
}

.loginPage {
  width: 100%;
  min-height: calc(100vh - 155px - 463.38);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .loginPage .login_box {
    width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .loginPage .login_box {
    width: 80% !important;
  }
  .loginPage .login_box .image_holder img {
    border-radius: 15px 15px 0px 0 !important;
  }
}
.loginPage .login_box {
  min-height: 380px;
  background-color: white;
  border-radius: 15px;
  width: 70%;
  margin: auto;
}
.loginPage .login_box .image_holder {
  width: 100%;
  height: 100%;
}
.loginPage .login_box .image_holder img {
  width: 100%;
  height: 100%;
  border-radius: 0px 15px 15px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.loginPage .login_box .login-form {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.loginPage .login_box .login-form .login_content {
  margin-bottom: 20px;
}
.loginPage .login_box .login-form .login_content .title {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
}
.loginPage .login_box .login-form .login_content .inp_holder {
  margin-bottom: 15px;
}
.loginPage .login_box .login-form .login_content .inp_holder .login-label {
  margin-bottom: 6px;
  font-size: 11px;
  color: #959595;
  font-weight: 600;
}
.loginPage .login_box .login-form .login_content .inp_holder .login-inp {
  padding: 5px 13px !important;
  border-radius: 6px;
}
.loginPage .login_box .login-form .login_content .btn_holder .login-btn {
  transition: background-color 0.4s;
  width: 100%;
  color: white;
  text-align: center;
  margin-top: 15px;
  padding: 0.5rem 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #01b3e4;
}
.loginPage .login_box .login-form .login_content .btn_holder .login-btn:hover {
  background-color: #01abda;
}

.section-contact .contact_us {
  position: relative;
  width: 100%;
  max-height: 100%;
  height: 135px;
}
.section-contact .contact_us img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-contact .contact_us .box-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.section-contact .contact_us .box-text > h1 {
  color: #033b4a;
  font-weight: 600;
  margin-bottom: 5px;
}
.section-contact .contact_us .box-text > p {
  margin-bottom: 0%;
  color: #fff;
  font-size: 18px;
}
.section-contact .contact_way .box-content {
  text-align: center;
}
.section-contact .contact_way .box-content .icon_holder {
  margin: 0 auto 15px;
}
.section-contact .contact_way .box-content .icon_holder > i,
.section-contact .contact_way .box-content .icon_holder svg {
  font-size: 50px;
  color: #01b3e4;
}
.section-contact .contact_way .box-content p {
  margin: 0 0 15px;
  font-size: 15px;
  color: #9dabaf;
}
.section-contact .form_section .contact-title {
  text-align: center;
}
.section-contact .form_section .contact-title h3 {
  font-size: 25px;
  line-height: 35px;
  color: #033b4a;
}
.section-contact .form_section .contact-title p {
  margin: 0 0 20px;
  font-size: 15px;
  color: #9dabaf;
}
.section-contact .form_section .form-group .custom-form {
  display: block;
  width: 100%;
  height: calc(2em + 1rem + 2px);
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #033b4a;
  background-color: #f0f2f5 !important;
  background-clip: padding-box;
  border: none;
  direction: rtl;
  text-align: right;
  border-radius: 50rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-contact .btn-washla {
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 6px 25px;
  border-radius: 5px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
  background-color: #01b3e4;
  border: 1px solid #01b3e4;
  transition: all 0.3s ease-in-out 0s;
}
.section-contact .btn-washla:hover {
  color: white;
  background-color: #03a0cb;
  border: 1px solid #03a0cb;
}
.section-contact .map {
  width: 100%;
}
.section-contact .map iframe {
  width: 100%;
  height: 80vh;
}

.btn-main-sm {
  padding: 0.3rem 0.7rem;
  transition: 300ms;
  color: #fff;
  background: #409699;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  outline: none;
  border: 1px solid #409699;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.btn-main-sm::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  transition: 300ms;
  height: 100%;
  background-color: white;
  z-index: -1;
}
.btn-main-sm:hover {
  color: #409699;
  border: 1px solid #409699;
}
.btn-main-sm:hover::before {
  left: 0;
}

.btn-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #2e5789;
  background-color: #d2e6ff;
}
.btn-light .icon {
  width: 18px;
  height: auto;
}
.btn-light.btn-light-green {
  color: #33b469;
  background-color: #eafff3;
}
.btn-light.btn-light-orange {
  color: #ff731d;
  background-color: #fff1e8;
}
.btn-light.btn-light-red {
  color: #c80f0f;
  background-color: #ebc8c8;
}
.btn-light.btn-light-yellow {
  color: #ffc107;
  background-color: #ffecb4;
}
.btn-light.btn-light-purple {
  color: #8d1ee5;
  background-color: #f2e7fd;
}
.btn-light.sm-border {
  border-radius: 4px;
}

.btn-gradient-gold {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.35rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  font-weight: bold;
  font-size: 14px;
  background: linear-gradient(90deg, #dfaf37, #ffcc80);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 11px 0px;
  color: white;
}
.btn-gradient-gold:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 157, 13, 0.3098039216) !important;
}
.btn-gradient-gold:hover {
  color: white;
}
.btn-gradient-gold:hover svg {
  animation-play-state: running;
}
.btn-gradient-gold i,
.btn-gradient-gold svg {
  font-size: 15px;
  animation: move-arrow 0.7s linear infinite paused;
}

@keyframes move-arrow {
  0% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(-4px);
  }
}
.btn-icon-cr {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0.35rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: bold;
  color: #8b8b8b;
  background-color: #fff;
  transition: 0.3s;
  box-shadow: 0px 4px 25px 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.btn-icon-cr .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #409699;
  background-color: rgba(1, 179, 228, 0.07);
}
.btn-icon-cr .icon img {
  width: 14px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(69%) saturate(4137%) hue-rotate(157deg) brightness(98%) contrast(99%);
}
.btn-icon-cr:hover {
  color: #595656;
}

.btn-nav {
  color: #409699 !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-btn {
  color: white !important;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  white-space: nowrap;
  outline: none;
  display: flex;
  align-items: center;
  gap: 7px;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 8px 13px;
  background: #000;
}
.main-btn.btn-orange {
  background-color: #f99132;
}
.main-btn.btn-purple {
  background-color: #8d1ee5;
}
.main-btn.btn-blue {
  background-color: #1e88e5;
}
.main-btn.btn-main-color {
  background-color: #409699;
}
.main-btn .icon {
  width: 20px;
  height: auto;
}
.main-btn svg {
  font-size: 20px;
}
.main-btn .main-badge {
  position: absolute;
  left: -10px;
  top: -10px;
}

.main-heading {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.small-heading {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 5px;
  font-weight: bold;
}

.small-label {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 2px;
}

/* Footer */
.footer {
  background: #111827; /* gray-900 */
  color: #d1d5db; /* gray-300 */
  padding-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-section h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #d1d5db;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #facc15; /* yellow-400 */
}

/* Logo */
.footer .logo {
  width: 100px;
  margin-bottom: 15px;
}

/* Social Media */
.social {
  display: flex;
  gap: 15px;
  font-size: 22px;
}

.social a {
  color: #d1d5db;
  transition: 0.3s;
}

.social a:hover:nth-child(1) {
  color: #25d366; /* WhatsApp */
}

.social a:hover:nth-child(2) {
  color: #1877f2; /* Facebook */
}

.social a:hover:nth-child(3) {
  color: #1da1f2; /* Twitter */
}

.social a:hover:nth-child(4) {
  color: #e1306c; /* Instagram */
}

/* Bottom Bar */
.bottom-bar {
  border-top: 1px solid #374151; /* gray-700 */
  margin-top: 30px;
  padding: 15px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af; /* gray-400 */
}

/* Responsive */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}/*# sourceMappingURL=main.css.map */