body {
  margin: 0;
  font-family: system-ui;
  background: #f5f6fa;
}



.nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 15px 20px;
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

/* Desktop nav */
.nav nav {
  display: flex;
  gap: 25px;
}

.nav nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav nav a:hover {
  color: #38bdf8;
}

/* Menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0f172a;
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav nav a {
    padding: 15px 0;
  }

  .nav nav.active {
    max-height: 300px;
  }
}


main {
  padding: 20px;
  min-height: 80vh;
}

footer {
  text-align: center;
  padding: 15px;
  background: #e5e7eb;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  padding: 10px ;
}

/* Image */
.hero-image img {
width: 100%;
 
 
  border: 3px solid red;
}

/* Content */
.hero-content{
     width: 100%;
     
     padding: 15px;
}
.hero-content h1 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #0f172a;
  color: white;
  text-decoration: none;
  border-radius: 10px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
     
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    max-width: 100%;
  }
}

.problems-section {
  padding: 80px 40px;
  background: #f8fafc;
}

.problems-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.problems-intro {
  max-width: 700px;
  margin-bottom: 50px;
  color: #475569;
  line-height: 1.6;
}

.problems-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.problem-item {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.problem-item h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.problem-item p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .problems-section {
    padding: 60px 20px;
  }

  .problems-section h2 {
    font-size: 1.6rem;
  }
}

.solutions-section {
  padding: 80px 40px;
}

.solutions-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.solutions-intro {
  max-width: 720px;
  margin-bottom: 50px;
  color: #475569;
  line-height: 1.6;
}

.solutions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.solution-item {
  background: #f8fafc;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.solution-item h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.solution-item p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .solutions-section {
    padding: 60px 20px;
  }

  .solutions-section h2 {
    font-size: 1.6rem;
  }
}
.cta-section {
  background: linear-gradient(90deg, #38bdf8, #0f172a);
  color: white;
  padding: 80px 40px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #0f172a;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-3px);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}
.contact-form-section {
  padding: 80px 40px;
  background: #f1f5f9;
  border-radius: 16px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-form-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #475569;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  float: right;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
}

.form-btn {
  display: inline-block;
  background: #0f172a;
  color: white;
  font-weight: bold;
  padding: 16px 36px;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
   
}

.form-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 20px;
  }

  .contact-form-section h2 {
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }

  .form-btn {
    width: 100%;
    text-align: center;
     
  }
}
/* جميع الأزرار (CTA + Form) */
button, .cta-btn, .hero-btn, .form-btn {
  transition: all 0.3s ease; /* smooth effect */
}

/* Hover effect */
button:hover, .cta-btn:hover, .hero-btn:hover, .form-btn:hover {
  transform: translateY(-3px); /* يطلع شوية */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* ظل خفيف */
}

/* CTA button خاص */
.cta-btn:hover {
  background: #2563eb; /* Gradient أو لون جديد عند Hover */
  color: white;
}
.cta-btn, .hero-btn, .form-btn {
  transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

 html {
  scroll-behavior: smooth;
}

.about-section {
  padding: 20px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.about-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-intro {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

/* Stats */
.about-stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.stat-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 1rem;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-intro,
  .about-section p {
    font-size: 1rem;
  }

  .stat-item strong {
    font-size: 2rem;
  }
}


.services-section {
  padding: 0 20px 20px 20px;
  background: #f8fafc;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-item {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: right;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #1e293b;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

/* Optional icon style if you add icons later */
.service-item::before {
  content: "✔";
  display: inline-block;
  margin-left: 8px;
  color: #2563eb;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 15px;
  }

  .services-section h2 {
    font-size: 1.8rem;
  }

  .service-item {
    padding: 25px 20px;
  }
}

.contact-section {
  padding: 80px 20px;
  background: #0f172a;
  color: #ffffff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5f5;
}

.contact-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #38bdf8;
}

.contact-box p {
  font-size: 1.05rem;
  color: #e0e7ff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-section h2 {
    font-size: 1.8rem;
  }

  .contact-intro {
    font-size: 1rem;
  }
}
