/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=Readex+Pro:wght@160..700&display=swap');

* {
  font-family: "Readex Pro", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2.5rem;
  max-width: 100%;
  direction: rtl; /* added RTL globally */
}

/* Variables */
:root {
  --main-color: #ace9fa;          /* orange accent */
  --second-color: #000000;        /* darker orange */
  --yellow-color: #ace9fa;        /* lighter orange */
  --yellow-alter: #331a00;        /* dark orange background variant */
  --text-color: #dbf7ff;          /* main accent text */
  --bg-color: #000000;            /* very dark background */
  --text-neutral: #dbf7ff;           /* light gray text */
  --text-neutral-2: #000000;         /* dark gray for borders */
  --text-neutral-3: #000000;         /* near black backgrounds for cards */
}


body, html {
  color: var(--text-neutral);
  background-color: var(--bg-color);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* this line fixes the left-right scroll */
}

/* Basic Styling */
a {
  text-decoration: none;
}
img {
  width: 100%;
}
section {
  padding: 3rem 0 2rem;
  background: transparent;
}

/* Container */
.container {
  max-width: 1070px;
  margin: auto;
  width: 100%;
}

/* Header */
header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 200;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 13, 13, 0.5); /* semi-transparent */
  padding: 13px 20px;
  border-radius: 5rem;
  border: 1px solid #57bedb;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

.logo img {
  width: 230px;
  filter: brightness(1.2);
}

.navbar {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  padding-left: 9rem; /* Add this line to push links to the right */
}

.nav-link {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-link:hover {
  color: #00a6d4;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-right {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.nav-right i {
  font-size: 18px;
  background: var(--text-neutral-3);
  color: white;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.nav-right i.ri-shopping-cart-2-line {
  font-size: 18px;
  background: #ace9fa;
  color: white;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.nav-right i.ri-search-2-line {
  font-size: 18px;
  background: #ace9fa;
  color: white;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.nav-right i.ri-heart-fill {
  font-size: 18px;
  background: #ace9fa;
  color: white;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.nav-right i:hover {
  background: var(--main-color);
  color: var(--bg-color);
}

.login-btn {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 8px 14px;
  border-radius: 5rem;
  font-size: 0.9rem;
  transition: background 0.4s ease-in-out;
}
.login-btn:hover {
  background: var(--yellow-color);
}
.mobile-login {
  display: none;
}

/* Background glow circles */
   /* Glow effect */
.glow {
  position: fixed; /* stays on screen when scrolling */
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.5;
  z-index: 0; /* behind everything */
}

.glow1 { background: #00b7ff; top: 10%; left: 15%; }
.glow2 { background: #00b7ff; top: 50%; left: 70%; }
.glow3 { background: #00b7ff; top: 20%; left: 50%; }
.glow4 { background: #00b7ff; top: 80%; left: 30%; }
.glow5 { background: #00b7ff; top: 60%; left: 10%; }

.menu-icon {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: #ace9fa;
  border-radius: 50%;
  z-index: 200;
  transition: 0.3s;
}
.menu-icon div {
  display: block;
  background: white;
  height: 2px;
  width: 20px;
  transition: 0.3s;
}
.move .line1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.move .line2 {
  opacity: 0;
}
.move .line3 {
  transform: rotate(45deg) translate(-5px, -5px);
}


/* Hero Section with glowing circle background */
.hero {
  position: relative;
  overflow: visible;
  width: 100%;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,145,0,0.6) 15%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.orange-text {
  color: #ff9100; /* orange */
}
.hero-content {
  margin-top: 4rem !important;
  text-align: center;
  color: var(--main-color);
}
.hero-content h2 {
  font-size: 5rem;
  text-shadow: 0 0 10px #95e8ff;
  color: white; /* rest of text white */
  margin-top: 6rem; /* increase/decrease as you like */
}
@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 2rem;
  }
}
.hero-content h2 span {
  color:rgb(255, 255, 255);
  
}
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0.5rem;
}
.btn {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  background: skyblue;
  color: white;
  padding: 8px 14px;
  border-radius: 0.9rem;
  margin-top: 2rem; /* increase/decrease as you like */
  margin-bottom: 3rem;
  transition: background 0.4s ease-in-out;
}
.btn span {
  font-size: 1.2rem;
}
.btn img {
  width: 20px;
}
.btn:hover {
  background: var(--yellow-color);
  color: white;
}
.hero-img {
  position: relative;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  animation: floatY 6s ease-in-out infinite alternate;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: visible; /* <--- IMPORTANT */
  }

  .hero-img img {
    width: 120%;      /* bigger image */
    max-width: none;
    display: block;
    margin: 0 auto;
    animation: floatY_mobile 6s ease-in-out infinite alternate;
  }
}


@keyframes floatY_mobile {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}


/* Desktop animation */
@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}



/* Swiper buttons */
.swiper-btn {
  display: flex;
  justify-content: center;
  margin-top: 1rem !important;
}
.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  margin: 0 0 0 10px !important;
  filter: invert(85%) sepia(100%) saturate(500%) hue-rotate(10deg);
}
.swiper-button-next {
  background: url(../images/right-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev {
  background: url(../images/left-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}
.swiper-button-prev::after {
  display: none;
}

/* Product section */
.product-desc {
  max-width: 80%;
  width: 100%;
  text-align: center;
  margin: auto auto 2rem auto;
  color: var(--text-neutral);
}
.product-content {
  display: grid;
  grid-template-columns: repeat(3, 250px);
  justify-content: space-between;
  gap: 2rem;
  background: var(--text-neutral-3);
  border-radius: 1.7rem;
  padding: 40px 60px;
}
.product-box {
  background: #ace9fa41; 
  padding: 20px;
  border-radius: 1.7rem;
  position: relative;
}
.product-box span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--main-color);
  color: w;
  font-size: 0.88rem;
  padding: 4px 10px;
  border-radius: 2rem;
  border: 4px solid var(--second-color);
  z-index: 2;
}
.product-box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.product-box h2 {
  font-size: 1.075rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-align: center;
}
.rating {
  display: flex;
  align-items: center;
  color: var(--yellow-color);
  margin: 10px 0;
}
.p-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price p {
  color: #b2b4c2;
  font-size: 0.94rem;
  text-decoration: line-through;
  margin-bottom: 5px;
}
.price h3 {
  color: var(--main-color);
}
.product-box a i {
  background: var(--text-neutral-3);
  color: var(--text-color);
  padding: 8px;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.product-box a i:hover {
  background: var(--main-color);
  color: var(--bg-color);
}
/* Backpack Section */
.backpack {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  /* background-color removed to blend with page */
}

.backpack-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  color: var(--text-neutral);
}

.backpack-images {
  position: relative;
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatY 6s ease-in-out infinite alternate;
}

.backpack-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  z-index: 1;
}

.backpack-grid {
  width: 70px;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
}

.backpack-text {
  flex: 1 1 300px;
  padding: 20px;
}

.backpack-text h2 {
  font-size: 2.4rem;
  color: white;
  text-shadow: 0 0 10px #67d4ff;
  margin-bottom: 1rem;
}

.backpack-text h2 span {
  color: white;
  text-transform: uppercase;
  position: relative;
}

.backpack-text h2 span::after {
  content: "";
  width: 100%;
  background: var(--second-color);
  border-radius: 10px;
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.backpack-text p {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
}

@media screen and (max-width: 900px) {
  .backpack {
    padding: 0.5rem 1rem; /* minimal top/bottom padding */
  }

  .backpack-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem; /* minimal gap between image and text */
  }

  .backpack-images,
  .backpack-text {
    flex: unset; /* remove min-height constraints */
    width: 100%; /* take full width */
    padding: 0;  /* remove extra padding */
  }

  .backpack-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem; /* very small spacing under heading */
  }

  .backpack-text p {
    margin: 0; /* remove spacing under paragraph */
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .backpack-grid {
    display: none; /* keep decorative element hidden */
  }
}


/* Selling Section */
.selling-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.selling-heading .btn {
  background: var(--main-color);
}
.selling-heading .btn:hover {
  background: var(--yellow-color);
}
.selling .product-box {
  border: 1px solid var(--text-neutral-2);
}

/* Swiper Pagination */
.slides-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.swiper-pagination {
  position: static !important;
  margin: 0 0 0 auto;
  text-align: left !important;
}
.selling .swiper-btn {
  margin-top: 0 !important;
}
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 0.2rem !important;
  background: var(--text-neutral-2) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  width: 1.5rem !important;
  background: var(--text-color) !important;
}

/* General headings */
.heading {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--main-color);
}

/* Brands Section */
.brand-container {
  background: #1a1a1a;
  padding: 50px 0;
}
.brand-content {
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  gap: 1rem;
}
.brand-box {
  background: var(--bg-color);
  border-radius: 1.5rem;
  display: grid;
  justify-content: center;
}
.brand-box img {
  width: 100px;
  height: 85px;
  object-fit: contain;
}

/* Tips Section */
.tips-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.blogs {
  display: grid;
  gap: 1rem;
}
.blog-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--text-neutral-2);
  padding: 10px;
  border-radius: 1rem;
  color: var(--text-neutral);
}
.blog-box img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 1rem;
}
.blog-info span {
  background: var(--second-color);
  color: var(--main-color);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.88rem;
}
.blog-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0 1rem;
  cursor: pointer;
  color: var(--main-color);
}
.read {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-neutral);
}
.read p {
  font-size: 0.9rem;
}

/* Single Post */
.single-post {
  position: relative;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.single-post img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.single-post-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--bg-color);
  padding: 20px;
  background: linear-gradient(
    1deg,
    hsl(128 26% 55% / 100%) 14%,
    hsl(128 24% 49% / 4%) 64%
  );
  backdrop-filter: blur(2px);
}
.post-data h2 {
  font-size: 0.94rem;
  margin-bottom: 6px;
  color: var(--bg-color);
}
.post-data .read {
  color: var(--bg-color);
}
.single-post a i {
  color: var(--bg-color);
  padding: 8px;
  border: 1px solid var(--bg-color);
  border-radius: 50%;
}

/* Links */
.links {
  width: 100%;
  display: grid;
  justify-content: space-between;
  gap: 8px;
}
.link-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--text-neutral-2);
  padding: 8px 14px;
  border-radius: 1.5rem;
  color: var(--text-neutral);
}
.link-box h3 {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--main-color);
}
.link-box a i {
  background: var(--second-color);
  color: var(--main-color);
  padding: 8px;
  border-radius: 8px;
  font-size: 18px;
}
.link-box a i:hover {
  background: var(--text-color);
  color: var(--bg-color);
  transition: all 0.4s ease-in-out;
}

/* Footer */
.footer {
  padding: 50px 0;
  color: skyblue;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer-box {
  display: flex;
  flex-direction: column;
}
.footer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: rgb(0, 174, 255);
}
.footer-box h3 span {
  color: white;
}
.footer-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  position: relative;
  padding-left: 1rem;
}
.footer-link::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-link:hover {
  color: var(--main-color);
  transition: 0.3s;
}
.footer-center {
  display: grid;
  justify-items: center;
  gap: 1rem;
  color: var(--text-neutral);
}
.footer-center p {
  text-align: center;
  margin-bottom: 1.2rem;
}
.social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social a i {
  background: var(--main-color);
  color: var(--bg-color);
  font-size: 18px;
  padding: 8px;
  border-radius: 12px;
}
.social a i:hover {
  background: var(--yellow-color);
  transition: background 0.4s ease-in-out;
}

/* Making Responsive */
@media (max-width: 1080px) {
  .container {
    width: 90%;
    margin: 0 auto;
  }
  .product-content {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
  }
}
@media (max-width: 920px) {
  section {
    padding: 2rem 0;
  }
  .product-content,
  .tips-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .links {
    display: flex;
    flex-direction: column;
  }
  .link-box {
    padding: 1rem;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 795px) {
  header {
    top: 15px;
  }
  .menu-icon {
    display: flex;
  }
  .login-btn {
    display: none;
  }
  .navbar {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%);
    width: 90vw;
    background: #ace9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-radius: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .open-menu {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .nav-link {
    display: block;
    margin: 1rem 0;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem;
    
  }
  .mobile-login {
    display: initial;
  }
}
@media (max-width: 768px) {
  .nav {
    justify-content: flex-end;
    padding-right: 1px; /* super close to the edge */
  }

  .logo {
    margin-left: auto;
  }

  .logo img {
    width: 160px;
  }
}

@media (max-width: 685px) {
  .product-content {
    padding: 20px;
  }
  .backpack {
    grid-template-columns: repeat(1, 1fr);
  }
  .backpack-content {
    order: 2;
  }
  .backpack-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .backpack-grid {
    width: 50px;
    top: -20px;
    left: 12px;
  }
}
@media (max-width: 605px) {
  .product-content,
  .tips-content,
  .footer-container {
    grid-template-columns: 1fr;
  }
  .single-post {
    height: 380px;
  }
  .footer-center {
    order: 3;
  }
}
@media (max-width: 400px) {
  .logo img {
    width: 100px;
  }
  .category-content {
    margin-top: 2rem;
  }
  .selling-heading h2,
  .heading {
    font-size: 1.2rem;
  }
}

.sika-btn {
  background: var(--main-color);
  color: var(--bg-color);
  border: none;
  padding: 6px 14px;
  border-radius: 1.5rem;
  font-size: 1rem;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.sika-btn:hover {
  background: var(--yellow-color);
  color: var(--bg-color);
}


/* About Us Section */
.about-us {
  padding: 4rem 0;
  background: transparent; /* removed the dark box */
  border-radius: 0;        /* no rounded corners */
  overflow: visible;       /* allow floating image animation outside */
  position: relative;
}

.about-us-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}


.about-text {
  flex: 1 1 400px;
  color: var(--text-neutral);
}

.about-text h2 {
  font-size: 2.5rem;
  color: white;
  text-shadow: 0 0 10px #67d4ff;
  margin-bottom: 1rem;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 80px;
  background: var(--yellow-color);
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: white;
}

.about-text .btn {
  background: var(--main-color);
  padding: 8px 16px;
  border-radius: 1rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}

.about-text .btn:hover {
  background: var(--yellow-color);
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 85%;  /* smaller than full width on larger screens */
  height: auto;
  border-radius: 1.5rem;
  animation: floatY 6s ease-in-out infinite alternate;
}

/* Mobile fix */
@media (max-width: 900px) {
  .about-us-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1rem;
  }

  .about-image {
    flex: unset;              /* remove flex shrinking */
    width: 100%;              /* take full width */
    margin-bottom: 1rem;
  }

  .about-image img {
    max-width: 90%;           /* make it larger relative to screen */
  }

  .about-text h2 {
    font-size: 2rem;
  }
}
/* Section Title */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
  font-weight: bold;
  text-shadow: 0 0 10px #95e8ff;
  color: rgb(255, 255, 255); /* rest of text white */
}
.product-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: bold;
  text-shadow: 0 0 10px #95e8ff;
  color: white; /* rest of text white */
}
/* Section Title */
.section-cat {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: bold;
  text-shadow: 0 0 10px #95e8ff;
  color: rgb(255, 255, 255); /* rest of text white */
}

/* Search Bar */
.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 10px;
}
.search-bar input {
  padding: 10px 15px;
  border: 1px solid #ff9900;
  border-radius: 10px;
  width: 300px;
  outline: none;
}
.search-bar .btn1 {
  padding: 10px 20px;
  color: #ffffff;
  background-color: #cc7700;
  font-weight: bold;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Category Card */
.category-card {
  border-radius: 15px;
  background-color:rgba(0, 115, 160, 0.19);
  box-shadow:rgb(57, 199, 255);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.6s forwards;
}
.category-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease; /* smooth transition */
}

.category-card img:hover {
  transform: scale(1.1); /* zoom in slightly */
}
.category-card h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
}
.category-card p {
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #aaaaaa;
}
.category-card .btn {
  display: inline-block;
}

/* Hover Effect */
.category-card:hover {
  transform: scale(1.05);
  box-shadow: rgb(81, 243, 255);
}

/* Staggered animation delays */
.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.3s; }
.category-card:nth-child(3) { animation-delay: 0.5s; }

/* Keyframes */
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* On phones (max-width ~600px) → 2x2 grid */
@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* smaller gap for mobile */
  }
}

/* On phones */
@media (max-width: 600px) {
  .category-card h3 {
    font-size: 0.9rem; /* smaller on small screens */
  }
}
/* Remove margin bottom under the button */
.category-card .btn {
  display: inline-block;
  margin-bottom: 0;
}

/* If there's still space, also remove margin from the paragraph above */
.category-card p {
  font-size: 0.8rem;
  margin-bottom: 0; /* Changed from 5px to 0 */
  color: #aaaaaa;
}

.about-subtext {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 0 10px #ff9100;
  font-weight: 700;
  margin-top: 2rem;
  padding: 0.5rem 1rem; /* adds some space around text */
  background: rgba(255, 145, 0, 0.164); /* subtle neon background */
  border-radius: 8px; /* rounded edges for background */
  
  display: inline-block; /* so background fits text only */
  position: relative;
}

.about-subtext::after {
  content: "";
  width: 50px;
  background: #ff9100;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -8px;
  box-shadow: 0 0 8px #ff9100;
}

@media (max-width: 768px) {
  .about-subtext {
    font-size: 0.9rem; /* smaller text */
    padding: 0.3rem 0.6rem; /* adjust padding */
  }

  .about-subtext::after {
    width: 35px; /* shorter underline */
    bottom: -6px; /* adjust spacing */
  }
}

.about-logo {
  width: 40px;      /* adjust size as needed */
  height: auto;
  vertical-align: middle; /* aligns with text */
  margin-left: 8px; /* space between text and logo */
}




/* Contact Us Section */
.contact-us {
  padding: 4rem 0;
  background: transparent;
  color: var(--text-neutral);
}

.contact-subtext {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  flex: 1 1 400px;
  background: rgba(13, 13, 13, 0.5); /* semi-transparent */
  padding: 2rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-form h3, .contact-info h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.contact-form form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  background: transparent;
  color: rgb(255, 255, 255);
  outline: none;
}

.contact-form form textarea {
  resize: none;
}

.contact-form form .sika-btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--text-neutral);
}

.contact-info a {
  color: var(--main-color);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--yellow-color);
}

.contact-info .social {
  margin-top: 1rem;
}

.contact-info .social a i {
  font-size: 20px;
  background: var(--main-color);
  color: var(--bg-color);
  padding: 8px;
  border-radius: 10px;
  margin-right: 5px;
}

.contact-info .social a i:hover {
  background: var(--yellow-color);
  transition: 0.3s;
}

/* Contact Us Section - Full Width Cards on Mobile */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 0.5rem; /* tiny horizontal padding */
  }

  .contact-form, .contact-info {
    width: 100%;           /* full width */
    max-width: 100%;       /* remove max width */
    padding: 2rem;         /* maintain padding */
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
  }

  .contact-form h3, .contact-info h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .contact-subtext {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .contact-form form label {
    font-size: 1rem;
  }

  .contact-form form input,
  .contact-form form textarea {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .contact-form form .sika-btn {
    font-size: 1rem;
    padding: 14px 0;
  }

  .contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;          /* space between icon and text */
  margin-bottom: 1rem;
  color: var(--text-neutral);
  flex-wrap: nowrap;   /* prevent wrapping to next line */
  font-size: 12px;
}

.contact-info p i {
  flex-shrink: 0;      /* icon stays its size */
  font-size: 20px;
}


  .contact-info .social {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-info .social a i {
    margin: 0;
  }
}

/* Reveal animation for Contact Us section */
.contact-us .reveal {
  opacity: 0;
  transform: translateY(50px);
  animation: revealAnimation 1s ease forwards;
}

/* Add delay for different elements */
.contact-us .reveal:nth-child(1) {
  animation-delay: 0.2s;
}
.contact-us .reveal:nth-child(2) {
  animation-delay: 0.4s;
}
.contact-us .reveal:nth-child(3) {
  animation-delay: 0.6s;
}
.contact-us .reveal:nth-child(4) {
  animation-delay: 0.8s;
}
.contact-us .reveal:nth-child(5) {
  animation-delay: 1s;
}

@keyframes revealAnimation {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.who-we-are {
  padding: 4rem 2rem;
  text-align: center;
  background: transparent;
  color: var(--text-neutral);
}

.who-we-are h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff; /* عدل حسب الثيم */
}

.who-we-are p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.highlight {
  color: #f1c40f;
  font-weight: bold;
}

.who-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.who-images img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.who-images img:hover {
  transform: scale(1.05);
}


/* Dropdown Search Bar - Glass Effect */
.search-dropdown {
  display: none;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  width: 100%;
  backdrop-filter: blur(12px); /* strong glass effect */
  -webkit-backdrop-filter: blur(12px); /* for Safari */
  border-radius: 1rem;
  position: relative; /* under header */
  z-index: 10;
}

.search-dropdown input {
  width: 95%;
  max-width: 400px;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent input */
  color: #fff;
}

.search-dropdown input::placeholder {
  color: #ffffff;
}

/* Mobile Only */
@media (max-width: 768px) {
  .search-wrapper {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
  }
}


/* Wrapper to position icon inside input */
.search-input-wrapper {
  position: relative;
  width: 95%;
  max-width: 400px;
}

.search-input-wrapper input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem; /* extra space for icon */
  border-radius: 2rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.search-input-wrapper i.search-submit {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
}

.search-results div {
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 0.5rem;
}
.search-results div:hover {
  background: rgba(255,255,255,0.1);
}


.search-input-wrapper button.search-submit {
  position: absolute;
  left: 0.5rem; /* moved from right to left */
  top: 50%;
  transform: translateY(-50%);
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 2rem;
  background: rgb(253, 147, 48);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.search-input-wrapper button.search-submit:hover {
  background: rgb(255, 153, 0);
}

  .suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 0.5rem;
    margin-top: 0.3rem;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 20;
  }
  .suggestions div {
    padding: 0.5rem;
    cursor: pointer;
  }
  .suggestions div:hover {
    background: rgba(255, 255, 255, 0.1);
  }


  /* Product Showcase Section */
.product-showcase {
  padding: 4rem 0;
}

.product-showcase-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.product-images {
  flex: 1 1 350px;
  text-align: center;
}

.product-images .main-img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  padding: 1rem;
  animation: floatY 6s ease-in-out infinite alternate;
}

.product-images .thumbs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.product-images .thumbs img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #ffefba;
  padding: 0.5rem;
  border-radius: 0.7rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-images .thumbs img:hover {
  transform: scale(1.1);
}

.product-text {
  flex: 1 1 400px;
  color: var(--text-neutral);
}

.product-text h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1rem;
}

.product-text h2 span {
  color: var(--main-color);
}

.product-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: white;
}

.product-text ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-text ul li {
  margin-bottom: 0.6rem;
  padding-right: 1.2rem;
  position: relative;
}

.product-text ul li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: var(--main-color);
}


/* Cart Section */
.cart-section {
  max-width: 900px;
  margin: 8rem auto 50px auto;
  background: #ffefba;
  padding: 25px;
  border-radius: 12px;
  color: #eb9d31;
  backdrop-filter: blur(12px);
  direction: rtl; /* ensures RTL flow for Arabic */
}

.cart-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #eb9d31; /* match your orange accent */
}

/* Table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right; /* header and cells aligned right */
  margin-bottom: 20px;
}

.cart-table th, .cart-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Header */
.cart-table th {
  color: #eb9d31;
}

/* Product cell: image + name */
.cart-table td.product-cell {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* image on right, name after it */
  gap: 10px; /* space between image and name */
  text-align: right;
}

/* Product image */
.cart-table td.product-cell img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

/* Buttons inside table */
.cart-table button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cart-table button:hover {
  background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-table th, .cart-table td {
    font-size: 0.9rem;
    padding: 8px;
  }

  .cart-table td.product-cell img {
    width: 40px;
    height: 40px;
  }
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.features .heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 10px #67d4ff;
}

.features .heading span {
  color: var(--main-color);
}

.section-subtext {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-neutral);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: rgba(172, 233, 250, 0.1);
  padding: 2rem;
  border-radius: 1.7rem;
  text-align: center;
  border: 1px solid rgba(172, 233, 250, 0.3);
  transition: all 0.4s ease-in-out;
  backdrop-filter: blur(10px);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 183, 255, 0.3);
  border-color: var(--main-color);
}

.feature-box i {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 1.5rem;
  display: block;
}

.feature-box h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-box p {
  color: var(--text-neutral);
  line-height: 1.6;
  font-size: 1rem;
}

/* Reveal animation for features */
.features .reveal {
  opacity: 0;
  transform: translateY(50px);
  animation: revealAnimation 1s ease forwards;
}

.features .reveal:nth-child(1) {
  animation-delay: 0.2s;
}

.features .reveal:nth-child(2) {
  animation-delay: 0.4s;
}

.features-grid .reveal:nth-child(1) {
  animation-delay: 0.6s;
}

.features-grid .reveal:nth-child(2) {
  animation-delay: 0.8s;
}

.features-grid .reveal:nth-child(3) {
  animation-delay: 1s;
}

@keyframes revealAnimation {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features .heading {
    font-size: 2rem;
  }
  
  .section-subtext {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-box {
    padding: 1.5rem;
  }
  
  .feature-box i {
    font-size: 2.5rem;
  }
  
  .feature-box h3 {
    font-size: 1.3rem;
  }
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.faq .heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 10px #67d4ff;
}

.faq .heading span {
  color: var(--main-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-box {
  background: rgba(172, 233, 250, 0.1);
  border-radius: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(172, 233, 250, 0.3);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  backdrop-filter: blur(10px);
}

.faq-box:hover {
  border-color: var(--main-color);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(172, 233, 250, 0.1);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: white;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: var(--main-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.faq-answer p {
  color: var(--text-neutral);
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1.5rem;
}

/* Active FAQ state */
.faq-box.active .faq-question i {
  transform: rotate(45deg);
}

.faq-box.active .faq-answer {
  max-height: 200px;
}

/* Reveal animation for FAQ */
.faq .reveal {
  opacity: 0;
  transform: translateY(50px);
  animation: revealAnimation 1s ease forwards;
}

.faq .reveal:nth-child(1) {
  animation-delay: 0.2s;
}

.faq .reveal:nth-child(2) {
  animation-delay: 0.4s;
}

.faq-container .reveal:nth-child(1) {
  animation-delay: 0.6s;
}

.faq-container .reveal:nth-child(2) {
  animation-delay: 0.8s;
}

.faq-container .reveal:nth-child(3) {
  animation-delay: 1s;
}

.faq-container .reveal:nth-child(4) {
  animation-delay: 1.2s;
}

.faq-container .reveal:nth-child(5) {
  animation-delay: 1.4s;
}

@keyframes revealAnimation {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq .heading {
    font-size: 2rem;
  }
  
  .section-subtext {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
}


.background-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* clicks go through */
  z-index: 0; /* behind content */
  overflow: hidden;
}

.bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* center */
  width: 80vw; /* very big, adjust as needed */
  height: auto;
  opacity: 0.02; /* very subtle */
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.05));
  pointer-events: none;
  user-select: none;
}

/* Optional: rotate slowly for effect */
@keyframes rotateLogo {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.bg-logo {
  animation: rotateLogo 120s linear infinite;
}

/* Hide background logo on mobile devices */
@media (max-width: 768px) {
  .bg-logo {
    display: none;
  }
}

@media (max-width: 480px) {
  .bg-logo {
    display: none;
  }
}



/* WHO WE ARE SECTION */
.who-we-are {
  padding: 5rem 0;
  background: transparent; /* or match your site's section background */
  color: white;
  position: relative;
  overflow: visible;
}

.who-we-are .section-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-shadow: 0 0 10px #67d4ff;
}

.who-we-are .section-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #ddd;
}

/* Grid layout */
.who-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Cards */
.who-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  flex: 1 1 250px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.who-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Icons */
.who-icon {
  font-size: 3rem;
  color: #67d4ff;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card Titles */
.who-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Card Text */
.who-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
  .who-grid {
    flex-direction: column;
    align-items: center;
  }

  .who-card {
    width: 90%;
    margin-bottom: 2rem;
  }
}

/* Reveal animation when card becomes visible */
.who-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger the cards using nth-child */
.who-card:nth-child(1).reveal {
  transition-delay: 0.2s;
}
.who-card:nth-child(2).reveal {
  transition-delay: 0.4s;
}
.who-card:nth-child(3).reveal {
  transition-delay: 0.6s;
}


