* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* body{
  padding-top: 10vh;
} */

:root {
  --dark-blue-color: #1d324f;
  --back-ground-color: #faf9fa;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

/* Mobile version start */

.hero__section {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  padding-top: 10vh;
}


.nav__bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  padding: 0 36px;
  background-color: rgba(255, 255, 255, 0.4); /* light white with 40% opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.language-switcher {
  /* position: absolute; */
  top: 20px;
  right: 20px; /* For Arabic, switch to `left: 20px` if needed */
  z-index: 1000;
}

.flag-icon {
  width: 28px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.flag-icon:hover {
  transform: scale(1.1);
}
.nav__logo {
  width: 6rem;
}

.menu__toggle {
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  z-index: 1002;
  transition: transform 0.3s ease;
}

.menu__toggle::before {
  content: "☰";
  color: var(--dark-blue-color);
}

.menu__toggle.active::before {
  content: "✖";
  color: var(--dark-blue-color);
}

.nav__overlay {
  position: absolute;
  top: 10vh;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: var(--back-ground-color);
  z-index: 999;
  transition: height 0.5s ease;
}


.curve-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1000;
  fill: var(--back-ground-color);
}

.nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 40px 0 80px;
  list-style: none;
}

.nav__links li a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.nav__links li a:hover {
  color: #c0392b;
}

.middle__section {
  height: 80vh;
  width: 100vw;
  background-image: url("assets/mobileHeroImage.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.middile__main__text {
  display: block;
  color: var(--back-ground-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.main__text__support {
  display: block;
  padding-left: 36px;
  padding-right: 36px;
  font-size: 0.625rem;
  color: var(--back-ground-color);
}

.marquee__text {
  width: 100vw;
  overflow: hidden;
  background-color: var(--back-ground-color);
  height: 10vh;
  display: flex;
  align-items: center;
  font-size: 3rem;
  white-space: nowrap;
  position: relative;
}

.marquee__inner {
  display: flex;
  animation: scroll-left 20s linear infinite;
  will-change: transform;
}

.marquee__inner span {
  display: inline-block;
  padding-right: 4rem; /* spacing between duplicates */
  color: var(--dark-blue-color);
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* .nav__bar ul {
  display: none;
} */

/* Hide toggle & overlay on desktop */
@media (min-width: 769px) {
  .menu__toggle {
    display: none;
  }

  .nav__overlay {
    display: none;
  }

  .nav__bar ul {
    display: flex;
    gap: 20px;
  }
}

.about__us {
  min-height: 100vh;
  background-color: var(--back-ground-color);
  padding-right: 36px;
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  color: var(--dark-blue-color);
}

.line {
  height: 1px;
  background-color: #000000;
  margin-top: 29px;
  opacity: 0.2;
}
.abt__header h1 {
  color: var(--dark-blue-color);
  font-size: 1.375rem;
  margin-top: 128px;
  text-align: center;
}

.abt__text h2 {
  color: var(--dark-blue-color);
  font-size: 1.25rem;
  font-weight: 200;
  margin-top: 29px;
  text-align: center;
}

.services {
  min-height: 100vh;
  background-color: var(--dark-blue-color);
  padding-top: 10vh;
  padding-right: 36px;
  padding-left: 36px;
}

.services__header h1 {
  color: var(--back-ground-color);
  font-size: 1.375rem;
  text-align: center;
}

.line_ {
  height: 1px;
  background-color: var(--back-ground-color);
  margin-top: 29px;
  opacity: 0.2;
}

.services h2 {
  color: var(--back-ground-color);
  font-size: 1.25rem;
  font-weight: 200;
  margin-top: 29px;
  text-align: center;
}

.partner__co {
  min-height: 100vh;
  background-color: var(--back-ground-color);
  padding-top: 10vh;
  padding-right: 36px;
  padding-left: 36px;
}

.part__header h1 {
  color: var(--dark-blue-color);
  font-size: 1.375rem;
  text-align: center;
}

.box {
  height: 214px;
  width: 358px;
  background-color: white;
  margin-top: 47px;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text__box h2 {
  color: var(--dark-blue-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 200;
}

.shipping__header h1 {
  color: var(--dark-blue-color);
  font-size: 1.375rem;
  margin-top: 60px;
}

/* .shipping__info{
  display: flex;
} */

.images h2 {
  color: var(--dark-blue-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 200;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.images img {
  width: 358px;
  height: 500px;
  object-fit: cover;
}

.book__call {
  height: 100vh;
  background-color: var(--back-ground-color);
  padding-left: 36px;
  padding-right: 36px;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
}

.form-container {
  width: 100%;
  max-width: 500px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1c1c1c;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  color: var(--dark-blue-color);
}

textarea {
  resize: none;
}

button {
  width: 130px;
  padding: 12px 0;
  background-color: #1c1c1c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #333;
}

footer.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--dark-blue-color);
  color: var(--back-ground-color);
}
.contact-info {
  line-height: 1.6;
}
.contact-info h2 {
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}
.contact-info strong {
  display: block;
  margin-top: 8px;
}

.contact__info {
  font-size: 0.625rem;
}
.divider {
  width: 1px;
  height: 200px;
  background: var(--back-ground-color);
  margin: 0 30px;
}
.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.join-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 10px;
  cursor: default;
  transform: rotate(180deg);
}
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.social-icons button {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}
.social-icons button:hover {
  background-color: white;
  color: #2a2a2a;
}
.social-icons button svg {
  width: 20px;
  height: 20px;
}

/* Mobile version end here */

/* Tab version start */

@media (min-width: 769px)  {
  
  .hero__section {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  /* padding-top: 10vh; */
}

  .nav__bar ul {
    display: flex;
    gap: 30px;
  }

   .nav__links {
    flex-direction: row;
    gap: 25px;
    padding: 0;
  }

  .menu__toggle,
  .nav__overlay {
    display: none;
  }


.nav__bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  padding: 0 100px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav__logo {
  width: 6rem;
}

.language-switcher {
  position: absolute;
  top: 38px;
  right: 20px; /* For Arabic, switch to `left: 20px` if needed */
  z-index: 1000;
}

.flag-icon {
  width: 28px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.flag-icon:hover {
  transform: scale(1.1);
}

.nav__links li a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-blue-color);
  transition: color 0.3s ease;
}

.nav__links li a:hover {
  color: #c0392b;
}

.middle__section {
  height: 80vh;
  width: 100%;
  background-image: url("assets/desktopHeroImg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.middile__main__text {
  display: block;
  color: var(--back-ground-color);
  font-size: 4rem;
  margin-bottom: 20rem;
}

.main__text__support {
  display: block;
  padding-left: 36px;
  padding-right: 36px;
  font-size: 1rem;
}

.marquee__text {
  width: 100vw;
  overflow: hidden;
  background-color: var(--back-ground-color);
  height: 10vh;
  display: flex;
  align-items: center;
  font-size: 3rem;
  white-space: nowrap;
  position: relative;
}

.marquee__inner {
  display: flex;
  animation: scroll-left 20s linear infinite;
  will-change: transform;
}

.marquee__inner span {
  display: inline-block;
  padding-right: 4rem;
  color: var(--dark-blue-color);
}

  .about__us {
  min-height: 100vh;
  background-color: var(--back-ground-color);
  padding-right: 100px;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  color: var(--dark-blue-color);
  justify-content: center; 
  align-items: center;     
  
}

.line {
  height: 1px;
  background-color: #000000;
  margin-top: 50px;
  opacity: 0.2;
  width: 100%; /* add width so line spans the container */
}

.abt__header h1 {
  color: var(--dark-blue-color);
  font-size: 1.375rem;
  text-align: center;
}

.abt__text h2 {
  color: var(--dark-blue-color);
  font-size: 1.25rem;
  font-weight: 200;
  margin-top: 50px;
  text-align: center;
  
}
  footer.footer {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 30px 30px;
    max-width: 100%;
    gap: 30px;
    justify-content: space-around;
    align-items: flex-start;
  }

  .contact-info {
    line-height: 1.6;
    max-width: 300px;
  }

  .contact-info h2 {
    font-size: 18px;
  }

  .contact__info {
    font-size: 0.75rem;
  }

  .divider {
    display: none; 
  }

  .social {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
  }

  .join-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1rem;
    position: relative;
    display: block;
    left: 250px;    
  }

  .social-icons {
    flex-direction: row;
    gap: 16px;
  }

  .social-icons button {
    width: 36px;
    height: 36px;
  }

  .social-icons button svg {
    width: 18px;
    height: 18px;
  }

  .social-icons button:hover {
  background-color: white;
  color: #2a2a2a !important; 
}
.social-icons button svg {
  width: 20px;
  height: 20px;
}

  .services {
  min-height: 100vh;
  background-color: var(--dark-blue-color);
  padding-top: 10vh;
  padding-right: 100px;
  padding-left: 100px;
}

.services__header h1 {
  color: var(--back-ground-color);
  font-size: 1.375rem;
  text-align: center;
}

.line_ {
  height: 1px;
  background-color: var(--back-ground-color);
  margin-top: 29px;
  opacity: 0.2;
}

.services h2 {
  color: var(--back-ground-color);
  font-size: 1.25rem;
  font-weight: 200;
  margin-top: 29px;
  text-align: center;
}

.partner__co {
  min-height: 100vh;
  background-color: var(--back-ground-color);
  padding-top: 10vh;
  padding-right: 100px;
  padding-left: 100px;
}

.part__header h1 {
  color: var(--dark-blue-color);
  font-size: 1.375rem;
  text-align: center;  
}

.box__tab__top{
  display: flex;
  justify-content: space-between;
}

.box__tab__bottom{
  display: flex;
  justify-content: space-between;
}

.box {
  height: 214px;
  width: 358px;
  background-color: white;
  margin-top: 47px;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text__box h2 {
  color: var(--dark-blue-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 200;
}

.shipping__info{
  display: flex;
  justify-content: space-between;
}

}