* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.contact{
    margin-bottom: 0%;
}
body {
    color: #333;
    line-height: 1.6;
    text-align: center;
    margin: 0%;
    padding: 0;
 
  height: 100%;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #6b46c1;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #6b46c1;
    font-weight: 500;
}

.sign-up {
    padding: 10px 20px;
    background: #e9d8fd;
    text-decoration: none;
    color: #6b46c1;
    border-radius: 5px;
}
.hero {
  display: flex;
  background: #f7f5ff;
  padding: 50px 20px;
  height: 100vh;
}

.hero-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  background: linear-gradient(90deg, #6366f1, #ec4899);
background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  font-size: 48px;
  font-weight: 800;
}

.hero p {
  font-size: 18px;
  color: #718096;
  margin-bottom: 30px;
  text-align: left;
}
.stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stats span {
  color: #6b46c1;
  font-weight: bold;
}

.hero-image {
  flex: 1;
  overflow: hidden;
 
}

.hero-image img{
  width: 80%;
  height: 80%;
  object-fit: cover;
   border-radius: 10%;
  transition: transform 
  0.3 ease-in-out;
display: inline-block;
}
.hero-image img:hover {
  transform: scale(1.1);
  transform: rotate(15deg);
}


.stats span {
    color: #6b46c1;
    font-weight: bold;
}



.features {
    padding: 50px 20px;
}

.features h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 10px;
}

.features p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 20%;
    text-align: left;
}

.card .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 10px;
    color: #2d3748;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 10px;
}



.pricing {
    padding: 50px 20px;
    background: #f7f5ff;
}

.pricing h2, .pricing p {
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pricing .card {
    width: 25%;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.price {
    font-size: 24px;
    color: #2d3748;
    margin: 20px 0;
}

.price span {
    font-size: 14px;
    color: #718096;
}

ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

ul li {
    margin: 10px 0;
    color: #718096;
}



.highlighted ul li {
    color: #e9d8fd;
}

.testimonials {
    padding: 50px 20px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-cards .card {
    width: 30%;
    text-align: left;
    padding: 40px;
    background: #fff;
    color: #ed64a6;
    font-size: 10px;
    border: 1px solid #e2e8f0;
    overflow-wrap: break-word;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    height: 10px;
    width: 10%;
}

.author img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}



.call-to-action {
    background: linear-gradient(to right, #6b46c1, #ed64a6);
    padding: 90px 90px;
    color: #fff;
    min-height: 300px;
    margin: 0%;
}

.call-to-action h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.start-free, .schedule-demo {
    padding: 15px 30px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.start-free {
    background: #fff;
    color: #6b46c1;
}

.schedule-demo {
    background: #ed64a6;
    color: #fff;
}

footer {
    background: #2d3748;
    color: #fff;
    padding: 50px 20px;
    text-align: left;
    margin-bottom: 0%;
   
}

.footer-top {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 150px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #e9d8fd;
}

.footer-section a {
    display: block;
    color: #e9d8fd;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-section input {
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    border: 1px solid #4a5568;
    border-radius: 5px;
}

.footer-section button {
    padding: 10px 20px;
    background: #6b46c1;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

.icons {
    margin-right: 10px;
   
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
}

.footer-bottom a {
    color: #e9d8fd;
    text-decoration: none;
    margin: 0 10px;
}


.tech-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;       /* مسافة كبيرة بين الأيقونات */
  padding: 60px 0;
  flex-wrap: wrap;
}

.tech-icons img {
  height: 40px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.tech-icons img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.icon{
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      margin-bottom: 10px;
       transition: transform 0.6s ease;
    }

     .hero-text h1 span {
      color: #6366f1;
      background: linear-gradient(90deg, #6366f1, #ec4899);
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
.logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-wrapper {
      width: 24px;
      height: 24px;
      animation: spin 2s linear infinite;
    }

    .icon-wrapper img {
      width: 100%;
      height: 100%;
      display: block;
      animation: spin 2s linear infinite;
    }
    @keyframes spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .text {
      font-size: 20px;
      font-weight: bold;
    }

     
.get{
    padding: 15px 30px;
    background: linear-gradient(90deg, #6b46c1, #9f7aea);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
    font-size: 16px;
    font-weight: bold;
    transition: all 0.4s ease;
}

/* Hover عام على الأزرار */
button:hover,
.get:hover,
.sign-up:hover,
.start-free:hover,
.schedule-demo:hover {
    opacity: 0.9;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}



/* عند hover على الكارد، الأيقونة تلف */
.icon:hover {
    transform: rotateY(180deg);
}

.lo:hover {
    transform: rotateY(180deg);
}
.footer-section a {
    display: block;
    color: #e9d8fd;
    text-decoration: none;
    margin-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-section a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #e9d8fd;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section a:hover::after {
    width: 100%;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #6b46c1;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6b46c1, #9f7aea);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #9f7aea;
}

nav a:hover::after {
    width: 100%;
}

.card {
    transition: all 0.4s ease;
}

.card:hover {
    border: 2px solid #6b46c1;
    background: linear-gradient(135deg, #f3e8ff, #e9d8fd);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.2);
}




/* الخط اللي فوق */
.testimonial-cards .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #6b46c1, #060509);
  transition: width 0.4s ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* يظهر عند hover */
.testimonial-cards .card:hover::after {
  width: 100%;
}