/* fonts */
@font-face {
  font-family: "FuturaHeavy";
  src: url("assets/fonts/FuturaHeavyFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Define Futura Bk BT Book */
@font-face {
  font-family: "FuturaBkBTBook";
  src: url("assets/fonts/FuturaBkBTBook.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.cairo-font {
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

/* header */
/* Enable smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Language Popup Styling */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popup-container {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

.popup-container.show {
  transform: scale(1);
  opacity: 1;
}

.popup-container h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.popup-container p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-buttons button {
  padding: 10px;
  border: none;
  background: #00aade;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.popup-buttons button:hover {
  background: #008bb5;
}

/* Responsive Popup */
@media (max-width: 480px) {
  .popup-container {
    width: 95%;
  }
}

/* Header Styles */
.site-header {
  background-color: white;
  padding: 8px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
}

.logo-container-ar {
  width: 30%;
  padding-right: 3%;
}

.logo-en {
  height: 50px;
  transform: scale(3);
  padding-top: 5px;
}

.logo-ar {
  height: 50px;
  transform: scale(3);
  padding-top: 5px;
}

/* Navigation List */
.nav-list-en {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding-right: 0%;
}

.nav-list-ar {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding-left: 0%;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Navigation Links */
.nav-item a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #00aade;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 120px;
  z-index: 1001;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  color: #000;
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}

/* Show dropdown on hover for desktop */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* hide close button in big screen */

@media screen and (min-width: 769px) {
  .nav-close {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .nav-list-en {
    padding-right: 0px;
    gap: 15px;
  }

  .nav-list-ar {
    padding-left: 0px;
    gap: 15px;
  }

  .logo-en {
    transform: scale(3.5);
    padding-left: 12%;
  }

  .logo-ar {
    transform: scale(3.5);
    padding-right: 12%;
  }

  /* .logo-container-en {
    padding-left: 0px;
    width: 10%;
  } */

  .logo-container-ar {
    padding-right: 0px;
    width: 10%;
  }
  .navbar {
    padding: 0 2%;
  }
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 895px) {
  /* Show hamburger button */
  .menu-toggle {
    display: block;
  }

  /* Transform nav-list into a sidebar sliding from right */
  .nav-list-en {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    /* Sidebar width */
    height: 100%;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    transform: translateX(100%);
    /* Hidden off-screen to the right */
    transition: transform 0.3s ease;
    z-index: 1001;
  }

  .nav-list-ar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    /* Sidebar width */
    height: 100%;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    transform: translateX(-100%);
    /* Hidden off-screen to the right */
    transition: transform 0.3s ease;
    z-index: 1001;
  }

  /* When menu is open, slide in */
  .nav-list-en.open {
    transform: translateX(0);
  }

  .nav-list-ar.open {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    padding: 10px 0;
  }

  .nav-item a {
    width: 100%;
    display: block;
  }

  /* Adjust dropdown for mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }

  /* Close Button Styling */
  .nav-close {
    width: 100%;
    text-align: right;
  }

  .close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
  }

  /* .logo-container-en {
    padding-left: 0;
  } */

  .logo-container-ar {
    padding-right: 0;
  }
  .navbar {
    padding-left: 0;
  }
}

/* RESET (optional) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY STYLES */
body {
  font-family: "FuturaHeavy", "FuturaBkBTBook", sans-serif;
  background-color: #f5f5f5;
  /* Overall page background */
  color: #333;
}

/******************************************/
/* Slider SECTION                         */
/******************************************/
.slider {
  position: relative;
  width: 100%;
  height: 50vw;
  margin: 0 auto;
  overflow: hidden;
}

/* Slides Wrapper */
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Each Slide */
.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

/* Image Styling */
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the container without stretching */
  display: block;
}

/* Navigation Buttons - Stylish Circle */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  /* Circle size */
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  /* Dark semi-transparent background */
  color: #fff;
  border: none;
  border-radius: 50%;
  /* Makes it a circle */
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Button Hover Effect */
.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  transform: translateY(-50%) scale(1.1);
  /* Slight zoom effect */
}

/* Left & Right Positions */
.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots Navigation */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
}

/* Adjust for smaller screens */
@media screen and (max-width: 600px) {
  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* make slider heigher in small screen */
@media screen and (max-width: 769px) {
  .slider {
    height: 200vw;
  }
}

/******************************************/
/* HERO SECTION  */
/******************************************/
.hero-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background for hero */
  padding: 50px 0;
  /* Vertical space above/below */
}

/* Inner container to keep content centered */
.hero-container {
  max-width: 1200px;
  /* Limit width on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Horizontal padding for small screens */
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hero-text {
  flex: 1;
  margin-right: 30px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.hero-text h2 {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text p {
  line-height: 1.6;
  font-size: 1rem;
  color: #555;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive for hero */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-text {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

/******************************************/
/* SERVICES SECTION  */
/******************************************/
/******************************************/
/* SERVICES SECTION  */
/******************************************/
.services-section {
  width: 100%;
  background-color: #fff;
  padding: 40px 0;
}

.services-container-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.services-container-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #00aade;
}

.services-container-wrapper h3 {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* --- RESPONSIVE BREAKPOINTS FOR SERVICES --- */

/* Tablet View: 2 columns */
@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile View: 2 columns with adjusted card styling */
@media (max-width: 576px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    /* Reduced gap for tighter spacing */
  }

  .service-card {
    padding: 10px;
    /* Smaller padding for smaller screens */
  }

  .services-container-wrapper h2 {
    font-size: 1.5rem;
    /* Adjust heading size for mobile */
  }

  .service-card h4 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}
/******************************************/
/* COMMERCIAL SECTION  */
/******************************************/
.commercial-section {
  width: 100%;
  background-color: #fff;
  padding: 40px 0;
}

.commercial-container-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.commercial-container-wrapper h3 {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.commercial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.commercial-card {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.commercial-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.commercial-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.commercial-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet: 2 columns */
@media (max-width: 992px) {
  .commercial-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 2 columns with adjusted styling for a better fit */
@media (max-width: 576px) {
  .commercial-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    /* Reduced gap for tighter spacing */
  }

  .commercial-card {
    padding: 10px;
    /* Smaller padding for smaller screens */
  }

  .commercial-container-wrapper h3 {
    font-size: 1rem;
    /* Adjust heading size for mobile */
  }

  .commercial-card h4 {
    font-size: 1rem;
  }

  .commercial-card p {
    font-size: 0.9rem;
  }
}
/******************************************/
/* BUSINESS FUTURE SECTION (FULL WIDTH) */
/******************************************/
.business-future-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background */
  padding: 40px 0;
  /* Vertical spacing top & bottom */
  text-align: center;
}

.business-future-wrapper {
  max-width: 1200px;
  /* Constrain content on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Horizontal padding for smaller screens */
}

/* Icons Grid (5 columns on large screens) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  /* Space below the icons row */
}

/* Individual icon "cards" */
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon styles */
.benefit-item img {
  width: 60px;
  /* Adjust as needed */
  height: 60px;
  margin-bottom: 15px;
}

/* Icon text */
.benefit-item p {
  font-size: 1rem;
  color: #00aade !important;
  font-weight: 600;
  margin: 0;
}

/* Heading & Paragraphs under the icons */
.business-future-wrapper h2 {
  font-size: 2rem;
  color: #00aade;
  /* Teal/blue accent */
  margin-bottom: 20px;
}

.business-future-wrapper p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
/* Large Tablet: 3 columns */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Tablet: 2 columns */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/******************************************/
/* ROBO MANARA SECTION  */
/******************************************/
.robo-manara-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background */
  padding: 40px 0;
  /* Vertical spacing */
}

.robo-manara-wrapper {
  max-width: 1200px;
  /* Constrain content on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Side padding for smaller screens */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  /* Space between image & text */
}

/* LEFT: Image */
.robo-manara-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.robo-manara-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  /* Optional rounding of corners */
}

/* RIGHT: Text */
.robo-manara-text {
  flex: 1;
}

.robo-manara-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.robo-manara-text h3 {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.robo-manara-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 768px) {
  .robo-manara-wrapper {
    flex-direction: column;
    text-align: center;
    /* Center text on smaller screens */
  }

  .robo-manara-text {
    margin-top: 20px;
    /* Spacing above text when stacked */
  }
}

/******************************************/
/* ADVANCED TECHNICAL FEATURES SECTION */
/******************************************/
.advanced-features-section {
  width: 100%;
  background-color: #fff;
  padding: 40px 0;
  text-align: center;
}

.advanced-features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.advanced-features-wrapper h2 {
  font-size: 2rem;
  color: #00aade;
  margin-bottom: 30px;
}

/* Flex container for feature cards */
.advanced-features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Default card styling */
.feature-card {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Large screens: 
   First row (cards 1-3): approx. 1/3 width each (accounting for gaps)
   Second row (cards 4-5): approx. 1/2 width each */
@media (min-width: 993px) {
  .advanced-features-container .feature-card:nth-child(-n + 3) {
    flex: 0 0 calc((100% - 40px) / 3);
  }

  .advanced-features-container .feature-card:nth-child(n + 4) {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

/* Tablet: two columns for all cards */
@media (max-width: 992px) and (min-width: 577px) {
  .advanced-features-container .feature-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

/* Mobile: two columns with adjusted styling for a better fit */
@media (max-width: 576px) {
  .advanced-features-container {
    gap: 10px;
  }

  .advanced-features-container .feature-card {
    flex: 0 0 calc((100% - 10px) / 2);
  }

  .advanced-features-wrapper h2 {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 10px;
  }

  .feature-card h4 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/******************************************/
/* DESIGN INSPIRED SECTION (FULL WIDTH) */
/******************************************/
.design-tawaf-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background */
  padding: 40px 0;
  /* Vertical spacing */
  text-align: center;
}

.design-tawaf-wrapper {
  max-width: 1200px;
  /* Constrain content on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Side padding for smaller screens */
}

.design-tawaf-wrapper h2 {
  font-size: 2rem;
  color: #00aade;
  /* Teal/blue accent (adjust if needed) */
  margin-bottom: 20px;
}

.design-tawaf-wrapper p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.design-tawaf-wrapper h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

/******************************************/
/* SMART MARKET SECTION (TWO IMAGES) */
/******************************************/
.smart-market-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background */
  padding: 40px 0;
  /* Vertical spacing top & bottom */
  text-align: center;
  /* Center text by default */
}

.smart-market-wrapper {
  max-width: 1200px;
  /* Constrain content on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Side padding for smaller screens */
}

/* Two images side by side */
.smart-market-images {
  justify-content: center;
  /* Center them horizontally */
  gap: 20px;
  /* Space between images */
  margin-bottom: 30px;
  /* Spacing below the image group */
}

.image-cart {
  display: flex;
  gap: 20px;
}

.smart-market-images .image-cart-front {
  width: 70%;
  /* Adjust the width as needed */
  border-radius: 16px;
  /* Change the border radius */
}

.smart-market-images .image-cart-side {
  width: 28%;
  /* Adjust the width as needed */
  border-radius: 16px;
  /* Change the border radius */
}

/* Headings & Text */
.smart-market-wrapper h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.smart-market-wrapper h3 {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.smart-market-wrapper p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
/* On tablets & mobiles, stack images vertically */
@media (max-width: 768px) {
  .smart-market-images {
    flex-direction: column;
    align-items: center;
    /* Center images when stacked */
  }

  .smart-market-images img {
    width: 100%;
    /* Each image is full width when stacked */
    max-width: 500px;
    /* Optional: limit the max width if desired */
  }
}

/******************************************/
/* HOW DOES THE SMART STORE WORK? SECTION */
/******************************************/
.smart-store-work-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background */
  padding: 40px 0;
  /* Vertical spacing (top/bottom) */
  text-align: center;
}

.smart-store-work-wrapper {
  max-width: 1200px;
  /* Constrain content on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Side padding for smaller screens */
}

/* Section Heading */
.smart-store-work-wrapper h2 {
  font-size: 2rem;
  color: #00aade;
  /* Teal accent color */
  margin-bottom: 30px;
}

/* Flex container for cards */
.smart-store-work-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* Space between cards */
}

/* --- DEFAULT (EXTRA-LARGE SCREENS ABOVE 1200px) --- */
/*
  For extra-large screens we want:
  - Row 1: first three cards at one-third each.
  - Row 2: cards 4 and 5 at half each.
  We calculate widths to account for gaps:
    For 3 columns: (100% - 2 * 20px) / 3 = calc((100% - 40px) / 3)
    For 2 columns: (100% - 1 * 20px) / 2 = calc((100% - 20px) / 2)
*/
@media (min-width: 1201px) {
  .smart-store-work-container .work-card:nth-child(-n + 3) {
    flex: 0 1 calc((100% - 40px) / 3);
  }

  .smart-store-work-container .work-card:nth-child(n + 4) {
    flex: 0 1 calc((100% - 20px) / 2);
  }
}

/* --- MEDIUM SCREENS (1200px and below) --- */
/* Use a uniform 3‑column layout */
@media (max-width: 1200px) {
  .smart-store-work-container .work-card {
    flex: 0 1 calc((100% - 40px) / 3);
  }
}

/* --- SMALLER SCREENS (768px and below) --- */
/* Switch to a 2‑column layout */
@media (max-width: 768px) {
  .smart-store-work-container .work-card {
    flex: 0 1 calc((100% - 20px) / 2);
  }
}

/* --- EXTRA SMALL SCREENS (576px and below) --- */
/* Single-column layout */
@media (max-width: 576px) {
  .smart-store-work-container .work-card {
    flex: 0 1 100%;
  }
}

/* Individual card styling */
.work-card {
  background-color: #fff;
  border: 2px solid #00aade;
  /* Teal border */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

/* Card title in teal */
.work-card h4 {
  font-size: 1.2rem;
  color: #00aade;
  margin-bottom: 10px;
}

/* Card text */
.work-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/******************************************/
/* EXCEPTIONAL CHOICE SECTION (FULL WIDTH) */
/******************************************/
.exceptional-choice-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background */
  padding: 40px 0;
  /* Vertical spacing top & bottom */
  text-align: center;
  /* Center headings & paragraphs */
}

.exceptional-choice-wrapper {
  max-width: 1200px;
  /* Constrain content on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Side padding for smaller screens */
}

.exceptional-choice-wrapper h2 {
  font-size: 2rem;
  color: #00aade;
  /* Teal accent for the heading */
  margin-bottom: 30px;
}

/* Paragraph styling */
.exceptional-choice-wrapper p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Bold portion (strong) can stay black or be styled differently if desired */
.exceptional-choice-wrapper p strong {
  color: #333;
  /* Darker color for subheading text */
}

/* --- RESPONSIVE BREAKPOINTS (optional) --- */
/* Example: on smaller devices, you might want to reduce heading size */
@media (max-width: 768px) {
  .exceptional-choice-wrapper h2 {
    font-size: 1.75rem;
  }
}

/******************************************/
/* WHY FUTURE OF RETAIL SECTION */
/******************************************/
.why-future-section {
  width: 100%;
  background-color: #fff;
  /* Full-width white background */
  padding: 40px 0;
  /* Vertical spacing top & bottom */
  text-align: center;
  /* Center heading & items */
}

.why-future-wrapper {
  max-width: 1200px;
  /* Constrain content on large screens */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 20px;
  /* Side padding for smaller screens */
}

/* Section heading */
.why-future-wrapper h2 {
  font-size: 2rem;
  color: #00aade;
  /* Teal accent color */
  margin-bottom: 30px;
}

/* Container for the 5 items */
.why-future-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 columns on desktop */
  gap: 20px;
  /* Space between items */
}

/* Individual feature item */
.future-item {
  background-color: #fff;
  /* White background (or #f5f5f5 if you prefer) */
  padding: 10px;
  /* Slight padding around content */
  text-align: center;
  /* Center text & icon */
}

/* Icons */
.future-item img {
  width: 60px;
  /* Adjust icon size as needed */
  height: 60px;
  margin-bottom: 15px;
}

/* Item heading */
.future-item h4 {
  font-size: 1.1rem;
  color: #00aade;
  margin-bottom: 10px;
}

/* Item description */
.future-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet: 2 or 3 columns might look good. We'll go with 3 columns here. */
@media (max-width: 992px) {
  .why-future-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile: 1 or 2 columns. We'll use 2 columns for mid-range and then 1 column for smaller. */
@media (max-width: 768px) {
  .why-future-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Very small devices: 1 column */
@media (max-width: 576px) {
  .why-future-container {
    grid-template-columns: 1fr;
  }
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/******************************************/
/* Whatsapp  */
/******************************************/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  /* Distance from the bottom */
  right: 20px;
  /* Distance from the right side */
  z-index: 999;
  /* Ensure it appears on top */
  background-color: #1bbd36;
  border-radius: 50%;
}

.whatsapp-float img {
  width: 60px;
  /* Adjust size as desired */
  height: 60px;
  border-radius: 50%;
  /* Make it circular if your icon is square */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  /* Optional shadow */
  padding: 5px;
}

/* --- Media Query for Smaller Screens (e.g., max-width: 576px) --- */
@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 10px;
    /* move it slightly up */
    right: 10px;
    /* move it slightly left */
  }

  .whatsapp-float img {
    width: 50px;
    /* slightly smaller icon */
    height: 50px;
  }
}

/* FOOTER GENERAL STYLING */
.site-footer {
  background-color: #222;
  color: #ccc;
  padding: 20px 0;
  font-family: "FuturaBkBTBook" !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-container h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #fff;
}

/* Footer Columns */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: white;
}

.footer-col {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

/* Style for grouped locations */
.location {
  margin-bottom: 10px;
}

.location h5 {
  margin: 0;
  font-size: 1rem;
  color: #ddd;
  font-weight: bold;
}

.location p {
  font-size: 0.875rem;
  color: #ccc;
  margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #aaa;
}

.footer-bottom span {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container h3 {
    text-align: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    flex: 1 1 50px;
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
}
/* CONTACT US SECTION */
.contact-section {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00aade;
  /* Adjust if you want a different heading color */
}

/* Contact Form Layout */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* A row to hold .form-group columns side-by-side */
.form-row {
  display: flex;
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
  gap: 20px;
}

/* Basic form-group styling */
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Half-width columns for name & email side-by-side */
.form-group.half {
  flex: 0 1 calc((100% - 20px) / 2);
}

/* Full-width columns for subject & message */
.form-group.full {
  flex: 0 1 100%;
}

/* Inputs and textarea styling */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  color: black;
  outline: none;
  /* Use your page's font */
}

/* Submit Button */
.send-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background-color: #008bb5;
  /* Green color */
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  align-self: center;
  /* Centers the button horizontally within the form */
  transition: background-color 0.3s ease;
}

.send-btn:hover {
  background-color: #218838;
  /* Darker green on hover */
}

/* Responsive Adjustments (Optional) */
@media (max-width: 576px) {
  /* Stack name & email vertically on very small screens */
  .form-group.half {
    flex: 0 1 100%;
  }
}

/* Join us section */

.label-joinus {
  margin-bottom: 8px;
  color: #5e5873;
  font-size: 0.857rem;
}
.joinus-content {
  margin-bottom: 40px;
  font-family: sans-serif;
  font-weight: 500;
  text-align: left;
  @media (max-width: 767px) {
    text-align: center !important;
  }
}
.outline-none {
  outline: none;
}
.contact-container .joinus-header {
  color: black;
  font-size: 31px;
  font-family: sans-serif;
  text-align: left;
  @media (max-width: 767px) {
    text-align: center !important;
  }
}
.inline-p20 {
  @media (max-width: 767px) {
    padding-inline: 20px !important;
  }
}

/* Hide the default input */
input[type="file"] {
  display: none;
}

/* Style for the custom file label */
.file-label {
  display: inline-block;
  background-color: #f1f1f1;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
.notice {
  margin-top: 10px;
  font-size: 12px;
  font-family: sans-serif;
  text-align: left;
}

/* Style for the file name */
.file-name,
.file-video-name {
  margin-left: 10px;
  font-size: 14px;
  color: #666;
}
.resume-video {
  @media (max-width: 1025px) {
    flex-direction: column;
  }
}
.hidden-image {
  @media (max-width: 767px) {
    display: none;
  }
}
/* When a file is selected, update the text */
input[type="file"]:valid + .file-name {
  color: #333;
}

.file-input {
  flex-direction: row;
  align-items: center;
  padding: 0;
  border: 1px solid #eee;
  height: 40px;
}

.select-container {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
}
.select-container {
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%;
}

.custom-select-country,
.custom-select-city,
.custom-select-job {
  position: relative;
  width: 100%;
}

.select-box {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 150px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}

.option {
  padding: 10px;
  cursor: pointer;
}

.option:hover {
  background-color: #f0f0f0;
}

.custom-select-country.open .options-list,
.custom-select-city.open .options-list,
.custom-select-job.open .options-list {
  display: block;
}

.error-message {
  font-size: 12px;
  color: red;
  margin-top: 5px;
  text-align: left;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #4caf50;
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 2%;
  bottom: 50px;
  font-size: 17px;
}

.toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 50px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 50px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 50px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 50px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

.ltr {
  margin-right: auto;
}

.rtl {
  margin-left: auto;
}

/* Circular Spinner */
.spinner {
  border: 4px solid #f3f3f3; /* Light gray background */
  border-top: 4px solid #3498db; /* Blue color for the spinning part */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

/* Animation for the spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Disabled Button Styles */
.send-btn[disabled] {
  background-color: #218838;
  opacity: 0.7;
  color: #fff;
  cursor: auto;
}

.send-btn[disabled] .spinner {
  display: inline-block;
}

.send-btn[disabled] .button-text {
  display: none; /* Hide button text while disabled */
}

.footer {
  background-color: #191919;
  direction: rtl;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex: 1;
}

.about-section {
  text-align: right;
  flex: 1;
  font-family: cairo;
  font-size: 22px;
}

.about-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
}

.company-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
  margin-top: 18px;
  font-weight: 500;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.contact-info a {
  color: #a0a0a0;
  text-decoration: none;
  margin-left: 10px;
}

.email-icon {
  color: #a0a0a0;
}

.logo-section {
  text-align: left;
  flex-shrink: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo h1 {
  font-size: 80px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1;
}

.tagline {
  font-size: 16px;
  color: #a0a0a0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Main Content Styles */
main {
  margin-bottom: 40px;
}

.locations {
  width: 100%;
}

.locations h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
  text-align: right;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.location-column {
  flex: 1;
  min-width: 280px;
}

.location {
  margin-bottom: 25px;
}

.location h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: white;
  font-weight: 500;
}

.location p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #797979;
  line-height: 1.5;
}

.bullet {
  margin-inline: 5px;
  color: #d9d9d9;
}

/* Styles for medium screens (tablets landscape) */
@media (min-width: 769px) and (max-width: 960px) {
  .locations {
    text-align: center;
  }

  .locations h2 {
    text-align: center;
  }

  .locations-grid {
    justify-content: center;
  }

  .location-column {
    flex: 0 1 calc(50% - 15px);
    min-width: 250px;
    max-width: 350px;
  }
}

/* Styles for tablets and mobile */
@media (max-width: 768px) {
  .locations {
    text-align: center;
  }

  .locations h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
  }

  .locations-grid {
    justify-content: center;
    gap: 20px;
  }

  .location-column {
    flex: 0 1 100%;
    max-width: 400px;
    padding: 0 15px;
  }

  .location {
    margin-bottom: 20px;
  }

  .location h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .location p {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

/* Styles for mobile phones */
@media (max-width: 480px) {
  .locations h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .location-column {
    padding: 0 10px;
  }

  .location {
    margin-bottom: 15px;
  }

  .location h3 {
    font-size: 15px;
  }

  .location p {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* Footer Styles */
footer {
  background-color: #191919;
  direction: rtl;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}

footer .logo {
  width: 300px;
}
.all-rights {
  text-align: center;
  background-color: #191919;
  color: #797979;
  border-top: 1px solid #797979;
  font-size: 16px;
  padding: 12px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .logo-section {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo {
    align-items: center;
    width: auto;
  }

  .logo h1 {
    text-align: center;
  }

  .tagline {
    text-align: center;
    margin: 0;
  }

  .about-footer {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .about-section {
    text-align: center;
    margin-bottom: 20px;
  }

  .company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    justify-content: center;
  }

  .locations h2 {
    text-align: center;
  }

  .locations-grid {
    justify-content: center;
  }

  .location-column {
    text-align: center;
    padding: 0;
  }

  .location {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }

  .logo h1 {
    font-size: 40px;
    text-align: center;
  }

  .tagline {
    font-size: 14px;
    text-align: center;
    margin: 0;
  }

  .about-section h2,
  .company-info h3 {
    font-size: 20px;
  }

  .location-column {
    min-width: 100%;
  }

  .all-rights {
    font-size: 14px;
  }

  .logo-section {
    padding: 0;
  }
}
