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

body {
  font-family: "Tajawal", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Cairo", sans-serif;
}

:root {
  --primary-color: #36a2cc;
  --secondary-color: #2e2e2e;
  --hover-color: #1e7fa3;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: var(--hover-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--hover-color);
}

/* ******************** start navbar style *********************************** */
.logo {
  width: 150px;
  height: auto;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.logo:hover {
  transform: scale(1.1) rotate(10deg);
}

.navbar {
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(5px);
}

.nav-link {
  color: #2e2e2e;
}

.nav-link:hover {
  color: #1e7fa3;
}

.nav-link:focus {
  color: #1e7fa3;
}

.nav-item {
  padding: 0 5px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background-color: #1e7fa3;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item:hover {
  cursor: pointer;
}

.nav-item.active::after {
  width: 100%;
}

.navbar-toggler-icon {
  color: #2e2e2e;
  font-size: 30px;
  padding: 10px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn {
  background: linear-gradient(45deg, #1e7fa3, #36a2cc);
  padding: 10px 30px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid transparent;
  font-size: 18px;
}

.cta-btn:hover {
  transform: scale(1.05);
  color: white;
  background: linear-gradient(45deg, #36a2cc, #1e7fa3);
}

.cta-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* ******************** start hero_section style *********************************** */
.hero_contant {
  background-image: url(../images/hero-img.png);
  background-size: cover;
  background-position: center;
  position: relative;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 2;
  padding-top: 150px;
}

.hero_contant::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: -1;
}

.hero-text-box {
  background: rgba(245, 244, 244, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 40px 50px;
  border-radius: 15px;
  max-width: 750px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--hover-color));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 20px;
  color: #baecff;
  margin-bottom: 25px;
  max-width: 650px;
}

.hero-cta {
  display: inline-block;
  margin-right: 10px;
  font-weight: 400;
  text-decoration: none;
  background: linear-gradient(45deg, var(--primary-color), var(--hover-color));
  padding: 10px 22px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid transparent;
}

.hero_contant .hero-cta {
  border-radius: 10px;
}

.hero-cta:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px) scale(1.05);
  border: 1px solid var(--primary-color);
}

.hero_section .hero-cta i:hover {
  color: var(--primary-color);
}

.hero-secondary-btn {
  display: inline-block;
  margin-right: 10px;
  font-weight: 400;
  text-decoration: none;
  background: white;
  padding: 10px 22px;
  border-radius: 10px;
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid transparent;
}

.hero-secondary-btn:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--hover-color));
  color: white;
  transform: translateY(-2px) scale(1.05);
  border: 1px solid white;
}

.hero-cta i,
.hero-secondary-btn i {
  margin-left: 8px;
}

.hero-trust {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: white;
  opacity: 0.85;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust i {
  color: var(--primary-color);
  font-size: 14px;
}

/* ******************** start about style *********************************** */
.about {
  background: linear-gradient(135deg, #e6f4fa, #ffffff);
  padding: 120px 20px;
}

.about-image {
  width: 550px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(30px);
  transition: all 1s ease;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.about-image::before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--hover-color) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 1;
}

.about-image::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -50px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--hover-color) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 1;
}

.about-text h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-text h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--secondary-color);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-highlights li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about .cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  margin: 20px auto;
}

/* ******************** start features style *********************************** */
.features {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff, #e6f4fa);
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.section-header p {
  color: #555;
  margin-bottom: 50px;
}

.feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  margin-bottom: 10px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f9fc;
  position: relative;
  font-size: 28px;
  color: var(--primary-color);
}

.icon-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px dashed var(--primary-color);
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.feature-card h3 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.feature-card p {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* card 1 */

.feature-card:nth-child(1) .icon-box {
  color: #36a2cc;
  background: #e8f6fc;
}

.feature-card:nth-child(1) .icon-box::before {
  border-color: #36a2cc;
}

/* card 2 */

.feature-card:nth-child(2) .icon-box {
  color: #7b6cf6;
  background: #f0eeff;
}

.feature-card:nth-child(2) .icon-box::before {
  border-color: #7b6cf6;
}

/* card 3 */

.feature-card:nth-child(3) .icon-box {
  color: #2bb6a8;
  background: #e8fbf9;
}

.feature-card:nth-child(3) .icon-box::before {
  border-color: #2bb6a8;
}

/* ******************** start challenge-solution style *********************************** */
.challenge-solution {
  background: linear-gradient(135deg, #e6f4fa, #ffffff);
  padding: 60px 20px;
}

.challenge-solution .section-header,
.process .section-header,
.faq .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.cs-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.cs-box:hover {
  transform: translateY(-6px);
}

.cs-box h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.challenges h3 {
  color: #e74c3c;
}

.solution h3 {
  color: var(--primary-color);
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #555;
}

.challenges i {
  color: #e74c3c;
  background: #fdecea;
  padding: 8px;
  border-radius: 50%;
}

.solution i {
  color: #2bb6a8;
  background: #e8fbf9;
  padding: 8px;
  border-radius: 50%;
}

.cs-box {
  position: relative;
}

.challenges {
  border-top: 4px solid #e74c3c;
}

.solution {
  border-top: 4px solid var(--primary-color);
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  color: #fff;
  font-size: 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(54, 162, 204, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(54, 162, 204, 0.4);
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.5s;
}

.cta-btn:hover::after {
  left: 100%;
}

/* responsive */

@media (max-width: 768px) {
  .cs-wrapper {
    flex-direction: column;
  }
}

/* ******************** start process style *********************************** */
.process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff, #e6f4fa);
}

.timeline {
  position: relative;
  margin-top: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.2;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item .content {
  width: 45%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.timeline-item .content:hover {
  transform: translateY(-5px);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.circle {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 15px rgba(54, 162, 204, 0.4);
}

.content h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* responsive */

@media (max-width: 768px) {
  .timeline::before {
    left: 0px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item .content {
    width: 100%;
    margin-left: 20px;
  }

  .circle {
    left: -20px;
    transform: none;
  }
}

/* ******************** start faq style *********************************** */
.faq {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e6f4fa, #ffffff);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: #e6f6fd;
}

.faq-question h3 {
  font-size: 20px;
  color: var(--secondary-color);
}

.faq-icon {
  font-size: 25px;
  color: var(--primary-color);
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  color: #555;
  padding: 10px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  /* يتحول + إلى × */
}

/* ******************** start  cta section style *********************************** */

.cta-split{
position:relative;
padding:100px 20px;
background:url("/images/cta-bg.jpg") center/cover no-repeat;
overflow:hidden;
color:#fff;
}

.cta-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(135deg, rgba(46,46,46,0.85), rgba(54,162,204,0.6));
z-index:1;
}

.cta-wrapper{
position:relative;
z-index:2;
display:flex;
gap:40px;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

.cta-left{
flex:1;
min-width:300px;
}

.cta-left h2{
font-size:2.5rem;
line-height:1.3;
margin-bottom:20px;
}

.cta-left p{
font-size:1.1rem;
color:#f1f1f1;
margin-bottom:25px;
}

.cta-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.cta-btn.primary{
background:var(--primary-color);
padding:12px 28px;
border-radius:30px;
color:#fff;
text-decoration:none;
box-shadow:0 8px 20px rgba(54,162,204,0.4);
transition:0.3s;
}

.cta-btn.primary:hover{
transform:translateY(-3px);
background:var(--hover-color);
}

.cta-btn.secondary{
border:2px solid #fff;
padding:12px 28px;
border-radius:30px;
color:#fff;
text-decoration:none;
transition:0.3s;
}

.cta-btn.secondary:hover{
background:#fff;
color:#000;
}

/* RIGHT FORM */

.cta-right{
flex:1;
min-width:300px;
}

.cta-form{
background:rgba(255,255,255,0.95);
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
color:#333;
}

.cta-form h3{
margin-bottom:5px;
color:var(--secondary-color);
}

.cta-form p{
font-size:0.9rem;
margin-bottom:15px;
color:#666;
}

.cta-form input,
.cta-form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:8px;
outline:none;
transition:0.3s;
}

.cta-form input:focus,
.cta-form textarea:focus{
border-color:var(--primary-color);
box-shadow:0 0 8px rgba(54,162,204,0.3);
}

.cta-form button{
width:100%;
padding:12px;
border:none;
border-radius:30px;
background:linear-gradient(135deg,var(--primary-color),var(--hover-color));
color:#fff;
font-size:1rem;
cursor:pointer;
transition:0.3s;
}

.cta-form button:hover{
transform:translateY(-3px);
}
.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup-box{
background:#fff;
padding:30px;
border-radius:15px;
text-align:center;
max-width:350px;
width:90%;
animation:pop 0.3s ease;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.popup-icon{
font-size:40px;
margin-bottom:10px;
}

.popup-box h2{
color:var(--secondary-color);
margin-bottom:10px;
}

.popup-box p{
color:#666;
margin-bottom:20px;
}

.popup-box button{
padding:10px 20px;
border:none;
border-radius:25px;
background:var(--primary-color);
color:#fff;
cursor:pointer;
transition:0.3s;
}

.popup-box button:hover{
background:var(--hover-color);
}

@keyframes pop{
from{
transform:scale(0.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

/* ******************** start  footer style *********************************** */
.footer {
  background: linear-gradient(135deg, #ffffff, #e6f4fa);
  padding: 70px 20px 20px;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-col p {
  color: black;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col h3 {
  margin-bottom: 15px;
}

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

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

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

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #444;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

/* Facebook */

.social-icons a:nth-child(1):hover {
  background: #1877f2;
}

/* Instagram */

.social-icons a:nth-child(2):hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* WhatsApp */

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

.social-icons a:hover {
  transform: translateY(-3px) scale(1.05);
}

.footer-note {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 0.9rem;
  color: black;
}

/* ******************** start whatsapp_section style *********************************** */

.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  direction: rtl;
}

.whatsapp-wrapper-en {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  direction: ltr;
}

.whatsapp-icon {
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.whatsapp-icon:hover {
  background-color: #1da851;
  color: white;
}

.whatsapp-text-box {
  background-color: #1da851;
  color: white;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.whatsapp-text-box:hover {
  background-color: #058c37;
  color: white;
}

/* ******************** start mediaQuery for responsive style *********************************** */

@media (max-width: 767px) {
  .navbar>.container-fluid {
    padding: 10px 10px;
  }

  .logo {
    width: 100px;
    height: auto;
  }

  .hero_contant {
    padding-top: 60px;
  }

  .hero-text-box {
    padding: 40px 10px;

  }

  .hero-title {
    font-size: 30px;
    font-weight: 200;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero_tag_container {
    flex-direction: column;
  }

  .hero_tag_container a {
    width: 100%;
    text-align: center;
  }


  .cta-btn {

    font-size: 16px;
    padding: 14px 30px;
  }

  .about-text h3 {
    font-size: 18px;
  }

  .about-image::after {
    right: -20px;
  }

  .about-image::before {
    left: -20px;

  }

  .section-header h2 {
    font-size: 28px;

  }

  .features,
  .faq {
    padding: 40px 20px;
  }

  .feature-card {
    margin-bottom: 20px;

  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-buttons a {
    width: 100%;
  }

}

@media (min-width: 768px) and (max-width: 991px) {}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .navbar {
    padding: 5px 15px;
  }
}