@import url("https://fonts.googleapis.com/css2?family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Winky Rough", sans-serif;
}
body {
}
:root {
  --gold: #d4af37;
  --gold-light: #e8c872;
  --gold-dark: #b8860b;
  --gold-accent: #ffd700;
  --gold-bg: #fff9e6;
  --light: #f8f9fa;
  --dark: #333;
  --gray: #6c757d;
  --border-radius: 12px;
  --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
a {
  text-decoration: none;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #36454f;
  color: #d4af37;
  font-weight: 600;
  height: 40px;
  padding: 0 20px;
}
.nav-right a {
  font-size: 20px;
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.9),
    rgba(184, 134, 11, 0.9)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 3px;
}
.call-us {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.9),
    rgba(184, 134, 11, 0.9)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 15px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
header img {
  width: 90px;
}
.header-center a {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  font-size: 23px;
  color: #36454f;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.header-center a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0;
  height: 10px;
  border-radius: 25px;
  background: #d4af37;
  transform: translateX(-50%);
  z-index: -1;
  transition: 0.4s ease;
}
.header-center a.active::after {
  width: 90%;
}
.header-center a:hover::after {
  width: 90%;
}
.header-left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us {
  font-size: 18px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.9),
    rgba(184, 134, 11, 0.9)
  );
  color: white;
  padding: 5px 10px;
  display: inline-block;
  border: 1px solid;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s ease;
}
.contact-us:hover {
  transform: scale(1);
  box-shadow: 0 2px 5px rgba(212, 175, 55, 0.9);
  background: linear-gradient(
    20deg,
    rgba(212, 175, 55, 0.9),
    rgba(184, 134, 11, 0.9)
  );
}
.menu-icon {
  display: none;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .menu-icon {
    display: block;
    padding: 2px 8px;
    font-size: 25px;
    cursor: pointer;
    background: linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.9),
      rgba(184, 134, 11, 0.9)
    );
    color: white;
    border-radius: 7px;
  }
  .header-center {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    position: absolute;
    top: 108px;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 15px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    border-radius: 0 0 8px 8px;
    animation: slideDown 0.3s ease forwards;
  }

  .header-center.show {
    display: flex;
  }
  .header-center a.active::after,
  .header-center a:hover::after {
    display: none;
  }
  .contact-us {
    display: none;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End Header */
/* Landing */
.landing {
  position: relative;
  background-image: radial-gradient(
    circle farthest-corner at -24.7% -47.3%,
    rgba(6, 130, 165, 1) 0%,
    rgba(34, 48, 86, 1) 66.8%,
    rgba(15, 23, 42, 1) 100.2%
  );
  background-size: cover;
  background-position: center;
  height: 100vh;
  align-items: center;
  justify-content: center;
  color: white;
}
.landing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* التعتيم */
  z-index: 1;
}
.landing-content {
  position: relative;
  z-index: 2;
}
.landing-content h2 {
  padding-top: 90px;
  font-size: 40px;
  color: #fff;
  text-align: center;
  z-index: 1000;
}

.type-effect {
  color: #d4af37;
  white-space: nowrap;
  overflow: hidden;
}
.landing_p {
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .landing-content p {
    padding: 10px;
  }
  .landing-content h2 {
    padding-top: 50px;
    font-size: 20px;
  }
}
.swiper {
  width: 100%;
  padding: 50px 0;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 35px;
  overflow: hidden;
  width: 70%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px,
    rgba(255, 255, 255, 0.1) 0px 0px 8px;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.slide-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.buttons a {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: 0.2s;
  font-weight: 600;
}

.order-btn {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.9),
    rgba(184, 134, 11, 0.9)
  );
  color: white;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.5),
    rgba(184, 134, 11, 0.7)
  );
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0px 2px 5px rgba(184, 134, 11, 0.9);
}


.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
/*  */
/*  */
#counter-section {
  padding: 30px;
  background-image: linear-gradient(
    111.5deg,
    rgba(242, 246, 254, 1) 0.3%,
    rgba(227, 233, 252, 1) 99.1%
  );
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 50px;
  color:#b8860b;
  font-weight: bold;
  direction: rtl;
}

.counters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.counter-box {
  background-image: linear-gradient(
    111.5deg,
    rgba(242, 246, 254, 1) 0.3%,
    rgba(227, 233, 252, 1) 99.1%
  );
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.counter {
  font-size: 40px;
  color: #d4af37;
  font-weight: bold;
}

.counter-box p {
  margin-top: 10px;
  font-size: 18px;
  color: #555;
}

/*  */

.slider-track {
  display: flex;
  width: calc(250px * 10); /* 10 صور مكررين مرتين */
  animation: scroll 20s linear infinite;
}

.slider {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.slider:hover .slider-track {
  animation-play-state: paused;
}

.slide {
  width: 250px;
  flex-shrink: 0;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 150px;

  object-fit: contain;
  filter: grayscale(80%);
  transition: 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* End Landing */
/* Trusted */
.our-clients {
  background: white;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.our-clients-title {
  margin: 30px;
  font-size: 35px;
  display: inline-block;
  background: linear-gradient(10deg, var(--gold-dark), var(--gold-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.our-clients-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(10deg, var(--gold-dark), var(--gold-accent));
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}
/* End Trusted */
.products {
  background-image: linear-gradient(180deg, #ffffff 0%, #6b7d8635 100%);
}
.products-cards {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}
.product-card {
  width: 280px;
  background: #f7f7f7;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
  margin: 20px auto;
}
.product_title {
  font-size: 35px;
  background: linear-gradient(10deg, var(--gold-dark), var(--gold-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  font-weight: bold;
  margin: 40px 0;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: 0.3s ease;
}

.product-card:hover .product-image img {
  filter: brightness(0.9);
  transform: scale(1.02);
}

.product-content {
  padding: 10px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  min-height: 60px;
}

.product-button {
  display: inline-block;
  padding: 10px 50px;
  background: #333;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.product-button:hover {
  background: none;
  color: #d4af37;
  border: 1px solid #d4af37;
}
@media (max-width: 768px) {
  .product-card {
    width: 95%;
  }
  .product-button {
    padding: 10px 80px;
  }
}
/*  */

/* Trusted */
.trusted-partners {
  text-align: center;
  padding: 40px 15px;
  background-color: #fff;
}

.trusted_title {
  font-size: 35px;
  background: linear-gradient(10deg, var(--gold-dark), var(--gold-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  font-weight: bold;
  margin: 30px 0;
  position: relative;
}
.trusted_title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(10deg, var(--gold-dark), var(--gold-accent));
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}
.trusted-partners h2 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #333;
}

.partners-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partners-logo img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
}

.partners-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .trusted_title {
    font-size: 24px;
    margin: 20px 0;
  }

  .trusted-partners h2 {
    font-size: 18px;
  }

  .partners-flex {
    gap: 10px;
  }

  .partners-flex img {
    width: 90px;
    height: 60px;
    padding: 5px;
  }
}

/* End Trusted */
/* accordion */
.accordion-wrapper {
  display: flex;
  gap: 30px;
  padding: 40px;
  flex-wrap: wrap;
}

.accordion-left {
  flex: 1;
  min-width: 250px;
}

.accordion-item {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: 0.3s;
  font-weight: bold;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover,
.accordion-item.active {
  border-left: 4px solid #d4af37;
  background: #ffea0024;
}

.accordion-right {
  flex: 2;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-right img {
  max-width: 80%;
  max-height: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
  object-fit: cover;
}
.accordion-title {
  font-weight: bold;
  cursor: pointer;
  padding: 15px 20px;
  color: #333;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 400px;
  padding: 10px 20px 15px;
}
/* End accordion  */
/*  */
.business-values {
  padding: 20px 20px 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.values-title {
  font-size: 35px;
  background: linear-gradient(to right, #000000, #434343);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  font-weight: bold;
  margin: 30px 0;
  position: relative;
}
.values-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #000000, #434343);
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.value-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 40px;
  background: linear-gradient(290deg, var(--gold-dark), var(--gold-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.value-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
/*  */
/* Testimonial  */
.testimonial-section {
  background: linear-gradient(135deg, #232526, #414345);
  padding: 40px 20px;
  color: white;
  text-align: center;
  font-family: "Cairo", sans-serif;
}

.testimonial-title {
  font-size: 30px;
  background: linear-gradient(320deg, var(--gold-dark), var(--gold-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  font-weight: bold;
  margin: 30px 0;
  position: relative;
}
.testimonial-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(10deg, var(--gold-dark), var(--gold-accent));
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}
.testimonial-wrapper {
  max-width: 800px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 100px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 5px solid #ffcc00;
  box-sizing: border-box;
}

.testimonial-card p {
  font-size: 22px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-card p::before,
.testimonial-card p::after {
  content: '"';
  font-size: 48px;
  color: #ffcc00;
  position: absolute;
}

.testimonial-card p::before {
  top: -20px;
  left: -10px;
}

.testimonial-card p::after {
  bottom: -45px;
  right: -10px;
}

.testimonial-card span {
  display: block;
  text-align: left;
  font-size: 16px;
  color: #ccc;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffcc00;
  color: #000;
  border: none;
  font-size: 26px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s ease;
}

.testimonial-btn:hover {
  background: #ffd900;
}

.testimonial-prev {
  left: 10px;
}

.testimonial-next {
  right: 10px;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 50px;
  }
  .testimonial-card p {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* End Testimonial */
/*  */

/* Contact Section Styles */
.contact-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.contact-section h3 {
  font-size: 32px;
  margin-bottom: 10px;
  background: linear-gradient(10deg, var(--gold-dark), var(--gold-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 22px;
  color: var(--gold-dark);
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--gold-accent);
}

.contact-buttons {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-buttons .btn {
  display: inline-flex;
  align-items: center;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 25px;
  background: var(--gold-dark);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.contact-buttons .btn:hover {
  background: var(--gold-accent);
}

.contact-buttons .whatsapp {
  background: #25d366;
}

.contact-buttons i {
  margin-right: 8px;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 26px;
  }

  .contact-section p {
    font-size: 14px;
  }

  .social-links a {
    font-size: 20px;
    margin: 0 8px;
  }

  .contact-buttons .btn {
    font-size: 13px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons .btn {
    width: 80%;
    justify-content: center;
  }
}

/*  */
/*  */
.site-footer {
  background: #101820;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-accent, #d4af37);
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px 0 0;
  color: #fff;
  background: #b8860b;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 25px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: var(--gold-accent, #d4af37);
}

.footer-links h3,
.footer-contact h3 {
  color: var(--gold-accent, #d4af37);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--gold-accent, #d4af37);
}

.footer-contact p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--gold-accent, #d4af37);
}

.footer-bottom {
  background: #0b1217;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #999;
  border-top: 1px solid #222;
}

@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
