@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-0: hsl(60, 79%, 68%);
  --primary: hsl(56, 96%, 85%);
  --primary-2: hsl(60, 79%, 90%);
  --primary-3: #fbed28;
  --gradient-1: linear-gradient(to top, var(--primary-3), var(--primary));
  --gradient-2: linear-gradient(to top, var(#000), var(--text));
  --bg-light: hsl(0, 0%, 95%);
  --bg: hsl(0, 0%, 90%);
  --bg-dark: hsl(0, 0%, 85%);
  --bg-dt-dark: hsl(0, 0%, 15%);
  --bg-dt: hsl(0, 0%, 25%);
  --bg-dt-light: hsl(0, 0%, 35%);
  --text: hsl(0, 0%, 5%);
  --text-muted: hsl(0, 0%, 30%);
  --text-dt: hsl(0, 0%, 95%);
  --text-dt-muted: hsl(0, 0%, 70%);
  /* shadows */
  --shadow-s: inset 0 1px 2px #ffffff30, /* top highlight */ 0 1px 2px #00000030,
    /* dark shadow */ 0 2px 4px #00000015; /* soft shadow */
  --shadow-m: inset 0 1px 2px #ffffff50, /* top highlight */ 0 2px 4px #00000030,
    /* dark shadow */ 0 4px 8px #00000015; /* soft shadow */
  --shadow-l: inset 0 1px 2px #ffffff70, /* top highlight */ 0 4px 6px #00000030,
    /* dark shadow */ 0 6px 10px #00000015; /* soft shadow */
  --font: "Montserrat", sans-serif;
  /* RING STYLES */
  --size: 25em; /* outer diameter */
  --size-s: 80vw; /* outer diameter */
  --thickness: 0.2em; /* ring thickness (slightly thinner) */
  --duration: 3s;
  /* --stop-a: hsl(56 96% 57%); */
  --stop-a: hsl(0, 0%, 0%);
  /* --stop-b: hsla(48, 100%, 45%, 1); */
  --stop-b: hsl(56, 96%, 57%);
}

/* UNIVERSAL STYLES */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid rgb(220, 21, 21); */
}

html {
  scroll-behavior: smooth;
}

.montserrat-.fonter {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

body {
  /* background-color: var(--primary-3); */
  font-family: sans-serif;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Prevent background scrolling when menu is active */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

body::before {
  content: "";
  background-color: var(--primary-3);
  z-index: -2;
  width: 100%;
  height: 20em;
  position: absolute;
  top: 0;
  pointer-events: none;
}

body#event-promotions {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* background-attachment: fixed; */
}

a {
  text-decoration: none;
  color: black;
}

a:active {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

button:active {
  scale: 0.95;
  transition: scale 0.5s ease-in-out;
}

.section-heading {
  font-size: 3rem;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1em;
  margin-bottom: 0.75em;
  font-family: var(--font);
  font-weight: 800;
}

.class-1-icon {
  height: 1cap;
  width: auto;
  padding: 0 0.5em;
}

.button-black {
  width: 12em;
  margin: 0 auto 0 auto;
  margin-top: 1em;
  padding: 0.5em 1em;
  font-size: 1.2rem;
  background-color: black;
  color: white;
  border: none;
  /* border-radius: 0.5em; */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-black:hover {
  background-color: var(--bg-dt-dark);
  /* color: #000; */
  /* border: 1px solid #fbed23; */
}

/* NAVBAR */

.navbar {
  background-color: var(--primary-3);
  /* background: url(/bgs/w.png); */
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: 50%; */
  display: flex;
  gap: 1em;
  text-decoration: none;
  padding: 1.5em 1em 0.5em 1em;
  align-items: center;
  justify-content: center;
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); */
  z-index: 200;
  /* position: sticky; */
  /* top: 0; */
  height: 10em;
  overflow: visible;
  font-size: 0.8em;
}

.navbar.index {
  background: none;
}

/* .navbar::before {
  content: "";
  background-color: var(--primary-3);
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
} */

.navbar .text {
  display: flex;
  flex-direction: row;
  gap: 1em;
  margin-top: 1em;
  padding: 1em;
  justify-content: space-evenly;
  align-items: center;
  font-family: var(--font);
  letter-spacing: -0.03em;
  font-weight: 500;
  /* border: 1px solid black; */
  border-radius: 10em;
  box-shadow: var(--shadow-s);
  background: black;
}

.navbar ul,
.navbar li {
  text-decoration: none;
  list-style: none;
}

.navbar .nav-item {
  font-size: 1rem;
  padding: 0.5em 0.25em;
  color: #fff;
  border-radius: 5em;
  z-index: 601;
}

.navbar .nav-item:hover {
  background-color: var(--bg-dt);
  box-shadow: var(--shadow-s);
}

.navbar .nav-item.contact-us {
  background-color: black;
  color: var(--primary-3);
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  border-radius: 3em;

  padding: 0.5em;
  border: 1px solid white;
  width: 10em;
  font-size: 1rem;
  box-shadow: var(--shadow-s);
}

/* .navbar .nav-item div {
  display: flex;
  align-items: center;
  gap: 0.2em;
} */

.navbar .nav-item .icon {
  height: 0.8cap;
  width: auto;
  cursor: pointer;
}

.navbar .nav-item .bigger {
  height: 1.2cap;
  width: auto;
}

.navbar .nav-item.active {
  background-color: hsl(56, 96%, 92%);
  box-shadow: var(--shadow-s);
  color: var(--bg-dt-dark);
  padding: 0.5em;
  min-width: 4em;
  border-radius: 3em;
  text-align: center;
  font-weight: 500;
}

.navbar .nav-item.group-list {
  position: relative;
}

.navbar .nav-item.group-list a {
  color: white;
}

.navbar .nav-item.group-list .active {
  color: var(--bg-dt-dark);
}

.navbar .group-list:hover .dropdown {
  display: flex; /* Show when hovering over the parent */
}

.navbar .group-list:hover .dropdown:hover {
  display: flex; /* Show when hovering over the parent */
}

/* .navbar .nav-item.group-list:hover {
  .navbar .dropdown {
    display: flex;
  }
} */

.navbar .dropdown {
  /* border: 1px solid black; */
  border-radius: 0 0.5em 0.5em 0.5em;
  width: 15em;
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 0em;
  text-align: left;
  align-items: flex-start;
  top: 2em;
  z-index: 999;
  background-color: var(--bg-dt-dark);
  box-shadow: var(--shadow-m);
  /* padding: 0.5em; */
}

.navbar .dropdown.active {
  display: flex;
}

.navbar .group-list a {
  width: 100%;
}

.navbar a .fd-menu-item,
.navbar a .ep-menu-item {
  position: relative;
  padding: 0.5em 0.75em;
  width: 100%;
  border-bottom: 1px solid black;
}

.navbar .group-list .dropdown a:last-of-type .fd-menu-item,
.navbar .group-list .dropdown a:last-of-type .ep-menu-item {
  border: none;
  border-radius: 0 0 0.5em 0.5em;
}

.navbar .group-list .dropdown a:first-of-type .fd-menu-item,
.navbar .group-list .dropdown a:first-of-type .ep-menu-item {
  border-radius: 0em 0.5em 0 0;
}

.navbar .fd-menu-item:hover,
.navbar .ep-menu-item:hover {
  background-color: var(--bg-dt);
  box-shadow: var(--shadow-s);
}

.navbar .logo {
  width: 14em;
  padding-top: 1em;
}

/* HERO SECTION */

.hero {
  display: flex;
  flex-direction: row;
  gap: 0em;
  justify-content: center;
  align-items: center;
  background: var(--primary-3);
  height: auto;
  z-index: 1;
  position: relative;
  padding: 0 8vw;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: -0.05em;
  width: 100vw;
  height: 40em;
  background-color: #000;
  clip-path: polygon(0 100%, 100% 85%, 100% 100%, 0 100%);
  z-index: -1;
}

.hero.index {
  /* background: url(/bgs/w.png); */
  background-repeat: no-repeat;
  /* background-position: center; */
  background-size: cover;
}

.hero .ww {
  display: flex;
  flex-direction: row;
  gap: 0em;
  justify-content: center;
  max-width: 80vw;
  margin: auto;
}

.hero.centered .content {
  width: 100%;
  align-items: center;
  text-align: center;
}

.hero.centered .media {
  display: none;
}

.hero-cover::before {
  content: "";
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -4;
  width: 100%;
  height: 110vh;
  position: absolute;
  top: 10em;
}

#hero-cover::before {
  content: "";
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -4;
  width: 100%;
  height: 110vh;
  position: absolute;
  top: 10em;
}

.hero .content {
  width: 60%;
  padding: 2em 3% 2em 3%;
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: -5em;
  justify-self: flex-start;
}

.hero .media {
  width: 40%;
  /* position: absolute; */
  /* background-color: black; */
  /* clip-path: polygon(0 0, 20em 0, 22em 2em, 22em 18em, 20em 20em); */
}

.hero .media img {
  width: 100%;
}

.hero h1 {
  font-family: var(--font);
  letter-spacing: -0.03em;
  font-weight: 900;
  line-height: 1em;
  font-size: 3.9rem;
  /* color: var(--bg-dt-dark); */
  color: #000;
}

.hero h3 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.03em;
  font-size: 1rem;
  font-weight: 360;
  margin-bottom: 1em;
  /* background-color: var(--bg-dt-dark); */
  color: var(--bg-dt-dark);
  padding: 0.25em;
  width: 20em;
  border: 0.5px solid var(--bg-dt-dark);
  /* box-shadow: var(--shadow-s); */
  border-radius: 1em;
  text-align: center;
}

.hero .subtitle {
  font-family: "Ubuntu", sans-serif;
  color: var(--text-muted);
  padding: 0.8em 0.1em 0em 0.1em;
}

.hero .buttons {
  display: flex;
  gap: 0.5em;
  font-family: "Montserrat", sans-serif;
  margin: 0.8em 0 4em 0;
}

.hero button {
  padding: 0.5em;
  border: none;
  border-radius: 5em;
  width: 10em;
  font-size: 1rem;
  box-shadow: var(--shadow-s);
}

.hero .buttons .icon {
  height: 1.25cap;
}

.hero .learn-more {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}

.hero .get-in-touch {
  /* background-color: var(--bg-dt-dark); */
  color: white;
  background-color: #000;
  display: flex;
  flex-direction: row;
  width: auto;
  gap: 0.2em;
  padding: 0.5em 1em;
  align-items: center;
  justify-content: center;
  min-width: 13em;
}

body {
  background-color: var(--bg-dark);
  font-family: sans-serif;
}

/* SLIDER SECTION */

.slider-container {
  position: absolute;
  width: 450px; /* Adjust width */
  height: 450px; /* Adjust height */
  overflow: hidden;
  top: 5em;
  right: 9em;
  z-index: 500;
  /* border-radius: 2em; */
  /* box-shadow: var(--shadow-l); */
  /* animation: dance 1.5s ease-in-out infinite; */
}

/* Gradient fade on edges */
.slider-container::before,
.slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px; /* fade size */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* .slider-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
} */

/* .slider-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
} */

.slider {
  display: flex;
  width: max-content;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slider img {
  width: 450px; /* Same as container width */
  height: 450px;
  object-fit: contain;
  margin-top: 1em;
}

.slider.small img {
  width: 450px; /* Same as container width */
  height: 450px;
  object-fit: contain;
  padding: 0 2em;
}

/* LOGOS */

.carousel-container {
  background: black;
  margin: 0;
  min-height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 2em;
}

.carousel-container h2 {
  color: white;
  font-family: var(--font), sans-serif;
  font-size: 2rem;
  padding-top: 1em;
  letter-spacing: -0.03em;
}

@keyframes moveBg {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 1134px 50%;
  }
}

@keyframes moveBg-2 {
  from {
    background-position: -1134px 50%;
  }
  to {
    background-position: 0 50%;
  }
}

.carousel:nth-of-type(1) {
  --blur: 6px;
  --contrast: 105%;
  --speed: 20s;
  height: 100px;
  max-width: 80vw;
  width: 100%;
  position: relative;

  .mask {
    position: absolute;
    inset: 0;
    background: #0000;
    /* backdrop-filter: blur(var(--blur)) contrast(var(--contrast)); */
    /* -webkit-backdrop-filter: blur(var(--blur)) contrast(var(--contrast)); so it works on Safari */
    -webkit-mask: linear-gradient(
      90deg,
      #000 50px,
      #0000 175px calc(100% - 175px),
      #fff calc(100% - 50px)
    );
    pointer-events: none;
  }

  .logos {
    animation: moveBg var(--speed) linear infinite;
    position: absolute;
    inset: 0;
    background: url(/assets/web-images/logos-expanded.png) 0 50% / 1134px 75px
      repeat-x;
    -webkit-mask: linear-gradient(
      90deg,
      #0000 5px,
      #000 50px calc(100% - 50px),
      #0000 calc(100% - 5px)
    );
  }
}

/* make the second carousel larger icons and more blur*/
.carousel:nth-of-type(2) {
  --blur: 9px;
  --contrast: 125%;
  --speed: 13s;
  height: 100px;
  max-width: 700px;
  width: 100%;
  position: relative;

  .mask {
    position: absolute;
    inset: 0;
    background: #0000;
    backdrop-filter: blur(var(--blur)) contrast(var(--contrast));
    -webkit-backdrop-filter: blur(var(--blur)) contrast(var(--contrast)); /* so it works on Safari */
    -webkit-mask: linear-gradient(
      90deg,
      #000 50px,
      #0000 175px calc(100% - 175px),
      #fff calc(100% - 50px)
    );
    pointer-events: none;
  }

  .logos {
    animation: moveBg-2 var(--speed) linear infinite;
    position: absolute;
    inset: 0;
    background: url(https://assets.codepen.io/1506195/brands2.webp) 0 50% /
      1134px 150px repeat-x;
    -webkit-mask: linear-gradient(
      90deg,
      #0000 5px,
      #000 50px calc(100% - 50px),
      #0000 calc(100% - 5px)
    );
  }
}

/* ABOUT US SECTION */

.about-us {
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  margin: 2em;
  padding: 2em;
  gap: 2em;
  border-radius: 1em;
  box-shadow: var(--shadow-l);
  position: relative;
  max-width: 100vw;
}

.about-us.m-large {
  margin-top: 4em;
}

.about-us .section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
}

.about-us .section-content {
  width: 60%;
  padding-right: 3em;
}

.about-us .section-content .main-points {
  display: grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px; /* Space between grid items */
  height: auto; /* Set a height for the grid */
  width: 100%; /* Full width */
}

.about-us .section-content .main-points .point {
  display: flex;
  gap: 0.5em;
  align-items: center;
  border: 1px solid #fff; /* White border */
}

.about-us .section-content .main-points .icon-tick {
  height: 2cap;
}

.about-us .section-image {
  width: 40%;
  height: auto;
}

.about-us .section-image .image {
  width: 30em;
  margin: auto;
  padding-left: 3em;
}

.about-us .section-image {
  flex: 1;
  background-image: url("/path/to/your/image.jpg"); /* Add a background image */
  background-size: cover;
  background-position: center;
  border-radius: 0.5em;
  height: 300px;
  margin-right: 2em;
}

.about-us .section-content {
  flex: 1;
  max-width: 600px;
}

.about-us .section-content > p {
  padding-bottom: 0.5em;
}

.about-us h2 {
  font-family: var(--font);
  font-size: 2.5rem;
  margin-bottom: 0.25em;
  color: var(--text);
  line-height: 1em;
  font-weight: 900;
  letter-spacing: -0.02em;
  z-index: 600;
}

.about-us button {
  width: 12em;
  margin: auto;
  margin-top: 1em;
  padding: 0.5em 1em;
  font-size: 1.2rem;
  background-color: black;
  color: white;
  border: none;
  /* border-radius: 0.5em; */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.about-us button:hover {
  background-color: var(--bg-dt-dark);
  /* color: #000; */
  /* border: 1px solid #fbed23; */
}

.donut-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40%;
}

.donut-container img {
  /* position: absolute; */
  width: 100%;
  /* top: 38%;
  transform: translateY(-50%); */
}

.donut {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(
    from 0turn,
    var(--stop-a),
    var(--stop-b),
    var(--stop-a)
  );
  animation: spin var(--duration) linear infinite;
  -webkit-mask: radial-gradient(
    circle,
    transparent calc(50% - var(--thickness)),
    black calc(50% - var(--thickness))
  );
  mask: radial-gradient(
    circle,
    transparent calc(50% - var(--thickness)),
    black calc(50% - var(--thickness))
  );
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.06) inset;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.about-us .floater {
  position: absolute;
  width: 12em;
  height: 3em;
  background-color: var(--bg-light);
  top: 36%;
  left: 4%;
  box-shadow: var(--shadow-s);
  border-radius: 0.25em;
  animation: dance 3s ease-in-out infinite; /* Apply the dance animation */
  padding: 0.25em;
  display: flex;
  gap: 0.25em;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  display: none;
}

.about-us .floater .icon-tick {
  height: 100%;
}

.about-us .floater-2 {
  position: absolute;
  width: 13em;
  height: 3em;
  background-color: var(--bg-light);
  top: 74%;
  left: 24%;
  box-shadow: var(--shadow-s);
  border-radius: 0.25em;
  animation: dance-2 3s ease-in-out infinite; /* Apply the dance animation */
  padding: 0.25em;
  display: flex;
  gap: 0.25em;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  display: none;
}

.about-us .floater-2 .icon-tick {
  height: 100%;
}

@keyframes dance {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px); /* Move up */
  }
  50% {
    transform: translateY(2px); /* Move down */
  }
  75% {
    transform: translateY(-1px); /* Move up slightly */
  }
  100% {
    transform: translateY(0); /* Return to original position */
  }
}

@keyframes dance-2 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-1px); /* Move up */
  }
  50% {
    transform: translateX(3px); /* Move down */
  }
  75% {
    transform: translateX(-2px); /* Move up slightly */
  }
  100% {
    transform: translateX(0); /* Return to original position */
  }
}

/* STATS SECTION */

.stats {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--primary-3);
  padding-top: 3em;
}

.stats > h2 {
  font-family: var(--font);
  font-size: 2.5rem;
  margin-bottom: 0.75em;
  color: var(--text);
  line-height: 0.9em;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 auto 0.75em auto;
}

/* .stats::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  background-color: var(--primary-3);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  top: 0;
  left: 0;
  height: 110%;
  z-index: -2;
} */

.stats::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  background-color: var(--primary-3);
  background-repeat: no-repeat;
  width: 100%;
  top: -30vh;
  left: 0;
  height: 110%;
  z-index: -1;
}

.stats > p {
  margin-bottom: 0.75em;
}

.stats .cards {
  display: flex;
  gap: 1em;
}

.stats .statcard {
  border-left: 1px solid black;
  border-top: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 5px solid black;
  border-radius: 0.25em;
  padding: 0.5em;
  height: 10em;
  width: 10em;
  box-shadow: var(--shadow-s);
}

.stats .statcard h2 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
}

.stats .statcard p {
  font-family: var(--font);
  line-height: 1em;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  font-weight: 500;
  text-align: center;
}

/* ACTIONS SECTION */

.actions-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5em 2em 2em 2em;
  justify-content: space-evenly;
  position: relative;
  max-width: 100vw;
}

.actions-section > p {
  margin-bottom: 0.75em;
}

.actions-section::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  background-color: var(--primary-3);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  top: 0;
  left: 0;
  height: 110%;
  z-index: -2;
}

.actions-section::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  background-color: var(--primary-3);
  /* background: url(/bgs/w.png); */
  background-repeat: no-repeat;
  width: 100%;
  top: -30vh;
  left: 0;
  height: 110%;
  z-index: -1;
}

.actions-section .cards-container {
  display: flex;
  gap: 1em;
  justify-content: center;
}

.actions-section .cards-container .card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  /* justify-content: center; */
}

.actions-section .cards-container .card-image .icon-pi {
  height: 60%;
  justify-self: center;
  align-self: center;
}

.actions-section .cards-container .design .card-image {
  /* background: url(/assets/pic-1.webp); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.actions-section .cards-container .print .card-image {
  /* background: url(/assets/pic-3.webp); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.actions-section .cards-container .distribute .card-image {
  /* background: url(/assets/pic-4.webp); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.actions-section .card {
  height: auto;
  width: 25%;
  background: var(--bg-light);
  border-radius: 0.5em;
  box-shadow: var(--shadow-s);
  padding: 1em;
}

.actions-section .section-heading {
  font-family: var(--font);
  font-size: 3rem;
  margin-bottom: 0.75em;
  color: var(--text);
  line-height: 0.9em;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 auto 0.75em auto;
}

.card-image {
  background-color: white;
  height: 8em;
  border-radius: 0.5em;
}

.card .text {
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: auto;
}

.card .text h2 {
  text-align: center;
  font-family: var(--font);
  line-height: 1.2em;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 0.5em;
  margin-top: 0.25em;
}

.actions-section .text p {
  margin-bottom: 0.5em;
  color: var(--text-muted);
  text-align: center;
}

.actions-section .text button {
  justify-self: flex-end;
  margin-bottom: 0.5em;
  margin-top: 0.25em;
  width: 100%;
  box-shadow: var(--shadow-s);
}

/* DISTRIBUTION SECTION */

.distribution-means {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2em 7em;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.distribution-means .section-heading {
  color: #222;
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
}

.section-heading::after {
  content: "";
  display: block;
  width: 5em;
  height: 4px;
  background: var(--primary-3);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-heading-2::after {
  content: "";
  display: block;
  width: 5em;
  height: 4px;
  background: black;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-conten {
  display: flex;
}

.section-conten .img {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-conten .cards-info {
  width: 60%;
}

.section-conten .card {
  box-shadow: var(--shadow-s);
}

.section-conten .img img {
  width: 150%;
}

.cards-info {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.cards {
  display: flex;
  gap: 0.5em;
}

.cards.two {
  padding: 0 0 0 5em;
}

.cards.three,
.cards.one {
  padding: 0 5em 0 0;
}

.distribution-means .card {
  background: var(--bg);
  width: 50%;
  border-radius: 0.25em;
  padding: 0.5em;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  justify-content: space-between;
  cursor: pointer;
  /* border-top: 6px solid hsl(56, 96%, 57%); */
}

.distribution-means .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.section-conten .card img {
  width: 3em;
  justify-self: top;
}

.distribution-means .card.odd .top {
  flex-direction: column;
}

.distribution-means .card.even .top {
  flex-direction: column;
}

.distribution-means .card h3 {
  font-size: 1.1rem;
  /* margin-bottom: 15px; */
  color: black;
  text-align: left;
  font-family: var(--font);
  line-height: 0.9em;
  text-align: center;
}

.distribution-means .card p {
  font-size: 0.95rem;
  color: #555;
  /* margin-bottom: 20px; */
  flex-grow: 1;
  text-align: center;
  align-self: center;
}

.distribution-means .card a {
  display: block;
  width: 100%;
}

.distribution-means .card button {
  padding: 0.5em;
  border: none;
  background: var(--primary-3);
  color: black;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.distribution-means .card button:hover {
  background: var(--primary-3);
}

/* TESTIMONIALS */

@import url(//cdn.rawgit.com/rtaibah/dubai-font-cdn/master/dubai-font.css);

.testim {
  padding: 5vh 5vw;
  width: 100%;
  position: relative; /* Changed */
  /* top: 50%;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  transform: translatey(-50%); */
  /* background-color: var(--bg-dt-dark); */
  display: flex;
  background-color: #000;
  /* background: url(/bgs/bg-black-2.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: column;
  align-items: center;
}

.testim > p {
  padding-top: 2em;
  color: white;
  letter-spacing: 0.1em;
}

.testim h2 {
  padding-top: 0.25em;
  color: var(--primary-3);
  text-align: center;
  font-family: var(--font);
  letter-spacing: -0.02em;
  font-weight: 850;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  /* padding: 20px 20px; */
  margin: auto;
}

.testim .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #eee;
  cursor: pointer;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--primary-3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 22222222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: var(--primary-3);
  background-color: rgba(0, 0, 0, 0.9);
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.testim .arrow.left {
  left: 20px;
}

.testim .arrow.right {
  right: 20px;
}

.testim .arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
  padding-top: 1em;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: var(--primary-3);
  border-color: var(--primary-3);
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale 0.5s ease-in-out forwards;
  -moz-animation: testim-scale 0.5s ease-in-out forwards;
  -ms-animation: testim-scale 0.5s ease-in-out forwards;
  -o-animation: testim-scale 0.5s ease-in-out forwards;
  animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: var(--primary-3);
  font-size: 1rem;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15rem;
  color: #eee;
  width: 80%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show 0.5s ease-in-out forwards;
  -moz-animation: testim-show 0.5s ease-in-out forwards;
  -ms-animation: testim-show 0.5s ease-in-out forwards;
  -o-animation: testim-show 0.5s ease-in-out forwards;
  animation: testim-show 0.5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in 0.4s ease-in-out forwards;
  -moz-animation: testim-content-in 0.4s ease-in-out forwards;
  -ms-animation: testim-content-in 0.4s ease-in-out forwards;
  -o-animation: testim-content-in 0.4s ease-in-out forwards;
  animation: testim-content-in 0.4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in 0.5s ease-in-out forwards;
  -moz-animation: testim-content-in 0.5s ease-in-out forwards;
  -ms-animation: testim-content-in 0.5s ease-in-out forwards;
  -o-animation: testim-content-in 0.5s ease-in-out forwards;
  animation: testim-content-in 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide 0.5s ease-in-out forwards;
  -moz-animation: testim-hide 0.5s ease-in-out forwards;
  -ms-animation: testim-hide 0.5s ease-in-out forwards;
  -o-animation: testim-hide 0.5s ease-in-out forwards;
  animation: testim-hide 0.5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out 0.4s ease-in-out forwards;
  -moz-animation: testim-content-out 0.4s ease-in-out forwards;
  -ms-animation: testim-content-out 0.4s ease-in-out forwards;
  -o-animation: testim-content-out 0.4s ease-in-out forwards;
  animation: testim-content-out 0.4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out 0.5s ease-in-out forwards;
  -moz-animation: testim-content-out 0.5s ease-in-out forwards;
  -ms-animation: testim-content-out 0.5s ease-in-out forwards;
  -o-animation: testim-content-out 0.5s ease-in-out forwards;
  animation: testim-content-out 0.5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -webkit-box-shadow: 0px 0px 10px 5px var(--primary-3);
    box-shadow: 0px 0px 10px 5px var(--primary-3);
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px var(--primary-3);
    box-shadow: 0px 0px 0px 0px var(--primary-3);
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -moz-box-shadow: 0px 0px 10px 5px var(--primary-3);
    box-shadow: 0px 0px 10px 5px var(--primary-3);
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px var(--primary-3);
    box-shadow: 0px 0px 0px 0px var(--primary-3);
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -ms-box-shadow: 0px 0px 10px 5px var(--primary-3);
    box-shadow: 0px 0px 10px 5px var(--primary-3);
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px var(--primary-3);
    box-shadow: 0px 0px 0px 0px var(--primary-3);
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -o-box-shadow: 0px 0px 10px 5px var(--primary-3);
    box-shadow: 0px 0px 10px 5px var(--primary-3);
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px var(--primary-3);
    box-shadow: 0px 0px 0px 0px var(--primary-3);
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px var(--primary-3);
  }

  100% {
    box-shadow: 0px 0px 0px 0px var(--primary-3);
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}

/* CALL TO ACTION SECTION */

.call-to-action {
  height: auto;
  padding: 3em;
  background-color: var(--primary-3);
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  align-items: center;
  background: url(/assets/web-images/office-730681_1920.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  /* border-top: 2px solid black; */
}

.call-to-action .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(251, 237, 40, 0.9);
}

.call-to-action.no-pic .bg-overlay {
  background-color: rgba(251, 237, 40, 1);
}

.call-to-action h2 {
  font-size: 2.2rem;
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  color: black;
  margin-bottom: 0.25em;
  z-index: 2;
}

.call-to-action form {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.call-to-action p {
  z-index: 2;
}

.call-to-action p:nth-of-type(1) {
  color: var(--text-muted);
}

.call-to-action p:nth-of-type(2) {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.25em;
  color: var(--text-muted);
}

.call-to-action input {
  background-color: var(--primary-2);
  padding: 0.5em;
  border: none;
  font-size: 1.125rem;
  outline: none;
  border: 1px solid var(--bg-dt-light);
  width: 100%;
  /* box-shadow: var(--shadow-s); */
}

.call-to-action input:focus {
  outline: 1px solid var(--bg-dt-dark);
}

.call-to-action form {
  width: 30vw;
}

.call-to-action button {
  background-color: var(--bg-dt-dark);
  color: var(--primary);
  padding: 0.5em 2em;
  margin-top: 0.5em;
  border: none;
  font-size: 1.125rem;
  /* border: 1px solid black; */
  box-shadow: var(--shadow-m);
  width: 100%;
}

/* FOOTER SECTION */

.footer {
  /* background: url(/bgs/bg-black.jpg); */
  background-color: var(--primary-3);
  background-size: cover;
  background-repeat: no-repeat;
  /* background: linear-gradient(135deg, #000 0%, #111 100%); */
  padding: 3em 2em;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  display: flex;
  justify-content: center;
  gap: 4em;
}

.footer .section {
  padding: 1em;
}

.footer .section.info p {
  color: #000;
}

.footer .logo {
  width: 160px;
  margin-bottom: 1em;
}

.footer .section h3 {
  margin-bottom: 1em;
  color: black;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer .section.form h3 {
  color: var(--primary-3);
}

.footer .section.links h3 {
  padding-top: 1em;
}

.footer .section li {
  list-style: none;
  margin-bottom: 0.5em;
  color: #252525;
  transition: color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.footer .section li:hover::before {
  content: "";
  width: 100%;
  background-color: #000;
  border-radius: 1em;
  height: 1px;
  position: absolute;
  bottom: -0.2em;
}

.footer .contacts {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  margin-bottom: 0.8em;
}

.footer .contacts p {
  margin: 0;
  font-size: 0.95rem;
  color: #eee;
}

.footer .contacts .icon {
  width: 20px;
  /* filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(93deg)
    brightness(105%) contrast(105%); */
}

.footer .section.form {
  background: #1a1a1a;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.footer .section.form form {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.footer textarea {
  resize: none;
  font-family: var(--font), sans-serif;
  font-size: 1.1rem;
}

.footer .section.form input,
.footer .section.form textarea {
  width: 100%;
  padding: 0.8em;
  background: #111;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
}

.footer .section.form input::placeholder,
.footer .section.form textarea::placeholder {
  color: #bbb;
}

.footer .section.form input:focus,
.footer .section.form textarea:focus {
  outline: none;
  border: 1px solid hsl(56, 96%, 57%);
}

.footer .section.form button {
  padding: 0.8em;
  background: hsl(56, 96%, 57%);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer .section.form button:hover {
  background: hsl(56, 96%, 50%);
  transform: scale(1.05);
}

/* ABOUT US PAGE */
/* --- About Us Modern --- */
.about-modern {
  font-family: "Poppins", sans-serif;
  color: #222;
  overflow: hidden;
}

/* Hero */
.about-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}
.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(56, 96%, 57%) 0%, #ff8c00 100%);
  opacity: 0.4;
}
.about-hero .hero-text {
  position: absolute;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 10%;
}
.about-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.about-card img {
  height: 60px;
  margin-bottom: 1rem;
}
.about-card:hover {
  transform: translateY(-8px);
}

/* Gallery */
.about-gallery {
  padding: 4rem 10%;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}
.fade-in.delay-1 {
  animation-delay: 0.2s;
}
.fade-in.delay-2 {
  animation-delay: 0.4s;
}
.fade-in.delay-3 {
  animation-delay: 0.6s;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 0.8s forwards;
}
.zoom-in.delay-1 {
  animation-delay: 0.2s;
}
.zoom-in.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===========================
   MOBILE SIDEBAR MENU
   =========================== */

.mobile-menu {
  display: none;
  width: 100vw;
  padding-top: 1em;
  z-index: 999;
  position: sticky;
  top: -1em;
}

.menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-3);
  padding: 1em;
  position: relative;
  z-index: 998;
  width: 100%;
  border-bottom: 1px solid black;
  /* box-shadow: var(--shadow-m); */
}

.menu-logo {
  width: 12em;
}

.menu-toggle {
  background: none;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 80%;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding-top: 3em;
  transition: left 0.4s ease;
  z-index: 1000;

  overflow-y: auto;
  overscroll-behavior: contain;

  /* ✅ Hide scrollbar while keeping scroll */
  scrollbar-width: none; /* Firefox */
}
.side-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.side-menu a {
  padding: 1em 2em;
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.side-menu a:hover {
  background-color: #f8f8f8;
  color: var(--text-muted);
}

/* Show side menu when active */
.side-menu.active {
  left: 0;
}

.side-menu .side-logo {
  padding: 0 2em 0 2em;
}

/* ===========================
   OVERLAY BACKGROUND
   =========================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* Show overlay when active */
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar appears above overlay */
.side-menu {
  z-index: 1000;
}

/* ===========================
   SUBMENU STYLING
   =========================== */
.menu-item {
  display: flex;
  flex-direction: column;
}

.submenu-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1em 2em;
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease, color 0.3s ease;
}

.submenu-toggle:hover {
  background-color: #f8f8f8;
  color: var(--text-muted);
}

/* The dropdown section (hidden by default) */
.submenu {
  display: none;
  flex-direction: column;
  background-color: #fafafa;
  border-left: 3px solid black;
  animation: fadeIn 0.3s ease;
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sub-menu.active {
  max-height: 500px; /* adjust if needed */
}

.submenu a {
  padding: 0.8em 2.5em;
  font-size: 0.95em;
  border-bottom: 1px solid #eee;
}

.submenu a:hover {
  background-color: #f0f0f0;
  color: #f05a28;
}

/* Show submenu when active */
.menu-item.active .submenu {
  display: flex;
}

/* Rotate arrow indicator when expanded */
.menu-item.active .submenu-toggle::after {
  transform: rotate(180deg);
}

/* Add small down-arrow indicator */
.submenu-toggle::after {
  content: "▾";
  float: right;
  transition: transform 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.copyrights {
  display: flex;
  margin: 0 auto;
  padding: 1em 1em;
  font-size: 0.6rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background-color: var(--primary-3);
}

/* .copyrights a {
  color: var(--my-orange);
} */

.copyrights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0.5px;
  width: 40%;
  background-color: black;
}
