html {
  scroll-behavior: smooth;
}
:root {
  --primary-bg: #f4f8fc;
  --accent-blue: #0088ff;
  --accent-cyan: #00f0ff;
  --text-dark: #1e293b;
  --text-muted: #000000;

  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 8px 32px 0 rgba(0, 136, 255, 0.08);
  --glass-blur: blur(16px);

  --gradient-accent: linear-gradient(135deg, #0088ff 0%, #00f0ff 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --transition-fast: 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
  
}
/* Background Floating Orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.6;
  animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 240, 255, 0.25);
  top: -50px;
  right: -50px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(0, 136, 255, 0.15);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 50px) scale(1.1);
  }
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  border: 1px solid var(--glass-border);
}
.btn-glass:hover {
  background: #ffffff;
  transform: translateY(-2px);
}
section {
  padding: 110px 30px;
  width: 100%;
  height: auto;
}
/* Header */
header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.Navactive {
  opacity: 1;
  pointer-events: painted;
}
nav {
  width: 90%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 30px;
  margin: auto 20px;
  padding: 15px;
  border-radius: 25px;
  align-items: center;
  z-index: 10;
}
.menu-btn {
  display: none;
}
.logo {
  font-size: 26px;
}
.logo-accent {
  color: var(--accent-blue);
}
header ul {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  transition: ease-in-out 0.5s;
}
header ul li {
  list-style: none;
}
header ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
}
header ul li a:hover {
  color: var(--accent-blue);
}
.btn-nav {
  width: 180px;
  padding: 15px;
  font-size: 18px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-fast);
}
/* section 1 */
.sec-1 {
  display: flex;
  justify-content:center;
  gap: 100px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(0, 136, 255, 0.1);
  color: var(--accent-blue);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}
.sec-1-d-text {
  align-content: center;
  width: 500px;
  padding: 10px;
}
.sec-1-d-text h1 {
  font-size: 45px;
}
.sec-1-d-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.sec-1-btns {
  display: flex;
  gap: 30px;
}
.sec-1-btns a {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 30px;
  margin: 5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  font-size: 0.95rem;
  box-shadow: var(--glass-shadow);
}
.sec-1-btns-social {
  margin-top: 5px;
padding: 5px 20px;
display: flex;
gap: 40px;

}
.sec-1-btns-social a {
  border-radius: 50%;
  transition: var(--transition-fast);

}
.sec-1-btns-social a i{
   width: 40px;
  height: 40px;
text-align: center;
align-content: center; 
border-radius:50%;
  font-size: 20px;
  background-color: var();
}

.sec-1-btns-social a:first-child:hover {
  color: rgb(1, 190, 1);
  transform: translateY(-2px);
  cursor: pointer;
}
.sec-1-btns-social a:last-child:hover {
  color: blue;
  transform: translateY(-2px);
  cursor: pointer;
}
.sec-1-d-imge {
  width: 600px;
  background-color: var(--glass-bg);
  padding: 15px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.sec-1-d-imge img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.image-overlay-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
}
/* section 2 About */
.sec-2-About {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec-2-About-text {
  text-align: center;
  margin: 10px;
  padding: 10px;
}
.sec-2-About-text h2 {
  font-size: 40px;
}
.sec-2-About-text p {
  font-size: 20px;
  word-spacing: 3px;
}
.About-cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.About-card {
  max-width: 400px;
  padding: 25px;
  text-align: center;
  align-content: center;
  margin: 10px;
transition: var(--transition-fast);
}
.About-card:hover{
transform: translateY(-5px);
box-shadow: var(--glass-shadow);
}
.About-card div {
  font-size: 40px;
}
.About-card h3 {
  font-size: 25px;
  font-weight: 800;
}
.About-card p {
  font-size: 17px;
}
/* Gallery Section */
.sec-3-Gallery {
  height: auto;
  text-align: center;
}
.section-title h2 {
  font-size: 30px;
}
.section-title p {
  font-size: 17px;
}
.gallery-item-bar {
  margin-bottom: 30px;
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.btn-gallery-item {
  width: 100px;
  border-radius: 25px;
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
  padding: 5px;
  text-align: center;
  transition: 0.5s ease-in-out;
  border: none;
}
.btn-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
  cursor: pointer;
}
/* Cards */
.gallery-products {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: start;
  gap: 30px;
}
    .product-card {
      overflow: hidden;
      transition: var(--transition-fast);
      width: 350px;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .card-img {
      width: 100%;
      height: 280px;
      position: relative;
      overflow: hidden;
    }

    .img-slider-card {
      display: flex;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    /* إخفاء شريط التمرير (Scrollbar) */
    .img-slider-card::-webkit-scrollbar {
      display: none;
    }
    .img-slider-card {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .card-img .img-slider-card img {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      scroll-snap-align: start;
    }

    .zoom-btn {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      z-index: 5;
    }

    .zoom-btn:hover {
      background: rgba(0, 0, 0, 0.8);
      transform: scale(1.1);
    }

    .card-info {
      padding: 20px;
    }

    .card-info h3 {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 15px;
      color: #222;
    }

    .specs-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .specs-list li {
      margin-bottom: 8px;
    }
    /* Zoom Div */
    .image-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(8px);
      justify-content: center;
      align-items: center;
    }

    .image-modal.active {
      display: flex;
    }

    .modal-content {
      max-width: 90%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.2s ease;
      line-height: 1;
    }

    .modal-close:hover {
      color: #ccc;
    }
    /* Scroll Bar */
.gallery-scroll-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  height: 30px;
  align-items: center;
  padding: 20px;
  margin-top: 15px;
  direction: ltr;
}
.scroll-bar-circle {
  width: 20px;
  height: 20px;
  background-color: var(--accent-blue);
  border-radius: 50%;
}
.gallery-scroll-bar button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  text-align: center;
  transition: 0.5s ease-in-out;
}
.gallery-scroll-bar button:hover {
  cursor: pointer;
}
/* Specs Section */
.se-3-specs {
  width: 100%;
  align-content: center;
}
.specs-container {
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.colors-flex {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.time-card {
  background: rgba(255, 255, 255, 0.5);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

/* section Numbers */
.stat-num.plus::before {
  content: "+";
}

.stat-num.percent::after {
  content: "%";
}
.sec-Stats{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
position: relative;
}
.sec-Stats h1{
position: absolute;
top:0;
}
.sec-Stats-d{
  width: 300px;
  height: auto;
  padding: 20px;
  align-content: center;
  text-align: center;
  background-color: var(--glass-bg);
  transition: var(--transition-fast);
}
.sec-Stats-d:hover{
transform: translateY(-2px);
box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}
.sec-Stats-d i{
  font-size:25px;
  color: var(--text-dark);
}
.sec-Stats-d h1{
  color: var(--text-muted);
}
.sec-Stats-d p{
font-size: 25px;
font-weight: 800;
color: var(--accent-blue);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.contact-form-card,
.contact-info-card {
  padding: 40px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
}
.btn-submit {
  padding: 10px;
  border: none;
  border-radius: 30px;
  font-size: large;
  width: 90%;
}
.info-item {
  margin: 20px 0;
  color: var(--text-muted);
}

.map-placeholder {
  height: 150px;
  position: relative;
  /* background: rgba(0, 136, 255, 0.05); */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--accent-blue);
  /* color: var(--accent-blue); */
  font-weight: 700;
}
/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Media */
@media (max-width: 1023px) {
  .menu-btn {
    display: block;
  }
  header ul {
    opacity: 0;
    margin: 0px auto;
    position: absolute;
    top: 95px;
    width: 90%;
    padding: 15px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    pointer-events: none;
  }
  .sec-1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .sec-1-btns {
    justify-content: center;
  }
  .sec-1-btns-social {
    justify-content: center;
  }
    .gallery-products {
    position: relative;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    direction: ltr;
    padding: 5px;
  }
  .product-card {
    width: 300px;
    flex-shrink: 0;
    direction: rtl;
  }
  .gallery-products::-webkit-scrollbar {
    display: none;
  }

  .gallery-scroll-bar {
    display: none;
  }
    .sec-Stats{
  justify-content: center;
  gap:15px;
}
}
/* Phone */
@media (max-width: 768px) {
  header ul li a {
    font-size: 15px;
  }

  .btn-nav {
    width: 100px;
  }
  .sec-1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .sec-1-d-text {
    align-content: center;
    width: 75%;
    padding: 10px;
  }
  .sec-1-d-imge {
    width: 90%;
  }
  .sec-1-d-text h1 {
    font-size: 35px;
  }
  .sec-1-d-text p {
    font-size: 15px;
  }
  .image-overlay-badge {
    right: 25%;
    left: 25%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-products {

  }

  .specs-container {
    flex-wrap: wrap;
  }
  
}

@media (max-width: 501px) {
  section {
    padding: 97px 0px;
    width: 100%;
    height: auto;
  }
  header nav {
    justify-content: center;
  }

  header ul {
    top: 77px;
    width: 100%;
padding: 11px;
  }
  .menu-btn {
    position: absolute;
    right: 10px;
  }
  .btn-nav {
    display: none;
  }
  .sec-1-d-text {
    align-content: center;
    width: auto;
    padding: 10px;
  }
  .sec-1-btns-social {
    justify-content: center;
  }
  .sec-1-d-text h1 {
    font-size: 28px;
  }

  .sec-1-btns a {
    width: auto;
    font-size: small;
  }
.section-title p {
  font-size: 15px;
  text-wrap: wrap;
}

}
