/* *************** */
/* *************** */
/* Global*/
/* *************** */
/* *************** */
html {
  line-height: 1.15;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family: "Roboto", sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}
.bg-white {
  background-color: white !important;
}
p,
li,
ul,
pre,
div,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
figcaption {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

:root {
  /* MEW COLORS */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --color-primary: #0a3b63;
  --color-secondary: #004e93;
  --color-third: #0768af;
  --color-forth: #73aeee;
  --color-fifth: #3b82f6;
  --color-on-primary: #ffffff;
  --color-on-secondary: #ffffff;
  --color-surface: #fefefe;
  --color-surface-elevated: color-mix(in oklab, var(--color-surface) 92%, var(--sec-color));
  --color-on-surface: #0f1720;
  --color-on-surface-secondary: #3b82f6;
  --color-border: #d1d6da;
  --color-outline: #d1d6da;
  --divider-value: 1px solid var(--color-border);
  --font-size-xs: clamp(0.69rem, 0.7rem + 0.1vw, 0.8rem);
  --font-size-sm: clamp(0.85rem, 0.9rem + 0.15vw, 0.95rem);
  --font-size-base: 1rem;
  --font-size-lg: clamp(1.1rem, 1.05rem + 0.6vw, 1.25rem);
  --font-size-xl: clamp(1.4rem, 1.3rem + 0.9vw, 1.6rem);
  --font-size-2xl: clamp(1.75rem, 1.6rem + 1.1vw, 2rem);
  --font-size-3xl: clamp(2.2rem, 2rem + 1.6vw, 2.6rem);
  --font-size-4xl: clamp(3rem, 2.6rem + 2.2vw, 4rem);
  --font-family-body: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-family-heading: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-weight-body: 400;
  --font-weight-medium: 500;
  --font-weight-heading: 600;
  --line-height-body: 1.6;
  --line-height-heading: 1.25;
  --letter-spacing-body: 0.03em;
  --letter-spacing-heading: 0.02em;
  --font-style-heading: normal;
  --font-style-subheading: normal;
  --text-transform-heading: none;
  --content-max-width: 62rem;
  --border-radius-sm: 2px;
  --border-radius-md: 4px;
  --border-radius-control: var(--border-radius-sm);
  --border-radius-full: 9999px;
  --shadow-level-1: none;
  --bg-color: #e1ddd6;
  --secbg-color: #b9b4ab;
  --main-color: #a1a1a1;
  --sec-color: #374b3b;
  --third-color: #333333;
}
.bg-color {
  background-color: #e1ddd6 !important;
}
.secbg-color {
  background-color: #b9b4ab !important;
}
.thirdbg-color {
  background-color: #1e1e1e !important;
}
.main-color {
  color: #333333 !important;
}
.sec-color {
  color: #4a5d4e !important;
}
.third-color {
  color: #a1a1a1 !important;
}
.qr.hide-in-web {
  padding-top: 40px;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.hover\:bg-white\/10:hover {
  background-color: var(--main-color) !important;
}

.hover-prem:hover {
  color: var(--main-color) !important;
}

.text-prem {
  display: inline-block;
  -webkit-transition: color 0.5s, -webkit-transform 0.5s;
  transition: color 0.5s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, color 0.5s;
  transition: transform 0.5s, color 0.5s;
  transition: transform 0.5s, color 0.5s, -webkit-transform 0.5s;
}

.text-prem:hover {
  color: var(--sec-color) !important;
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}

.container {
  margin: 0 auto;
  max-width: 1250px;
  padding: 0 1rem;
  overflow: hidden !important;
}

.p-0 {
  padding: 0 !important;
}
.bg-prem {
  background-color: var(--main-color);
}
.bg-prem-5:hover {
  background-color: grayde;
}
.mt-5 {
  margin-top: 30px !important;
}

.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-grow {
  flex-grow: 1;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.col-span-full {
  grid-column: 1 / -1;
}
.md\:col-span-2 {
  grid-column: span 2 / span 2;
}
.md\:col-span-3 {
  grid-column: span 3 / span 3;
}

.gap-2 {
  gap: 0.5rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pt-8 {
  padding-top: 2rem;
}
.p-0 {
  padding: 0;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.col-md-7 {
  width: 60% !important;
}

.col-md-5 {
  width: 40% !important;
}
.py-3 {
  padding-top: 1.5rem !important;
}

.w-8 {
  width: 2rem;
}
.h-8 {
  height: 2rem;
}
.max-w-2xl {
  max-width: 42rem;
}

.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-slate-800 {
  color: #1f2937;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.bg-gray-100 {
  background-color: #f3f4f6;
}
.bg-gray-300 {
  background-color: #d1d5db;
}

.border-b {
  border-bottom-width: 1px;
  border-color: #e0e0e0;
}
.border-t {
  border-top-width: 1px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-gray-100 {
  border-color: #f3f4f6;
}
.rounded {
  border-radius: 0.25rem;
}

.hidden {
  display: none;
}
.transition {
  transition: all 0.2s ease-in-out;
}

.hover\:text-prem-600:hover {
  color: var(--main-color);
}
.group-hover\:bg-prem:hover {
  background-color: var(--main-color);
}

.group {
  position: relative;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.h-1 {
  height: 0.25rem;
}

.group:hover .group-hover\:bg-prem {
  background-color: var(--main-color);
}

.pt-16 {
  padding-top: 4rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-gray-800 {
  border-color: #1f2937;
}

.text-white {
  color: #ffffff;
}
.ftco-section a {
  text-decoration: none;
  color: gray;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.block-23 ul li,
.block-23 ul li > a {
  display: table;
  line-height: 1.5;
  margin-bottom: 15px;
}
.block-23 ul li .icon {
  width: 40px;
  font-size: 18px;
  padding-top: 2px;
}
.mb-5.hide-in-mobile {
  flex-wrap: nowrap !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li a {
  text-decoration: none !important;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.8rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.8rem * var(--tw-space-y-reverse));
}

.mr-4 {
  margin-right: 1rem;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.inline {
  display: inline;
}
.mt-100 {
  margin-top: 80px;
}
footer .grid-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.flex {
  display: flex;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}
.gap-6 {
  gap: 1.5rem;
}

.overflow-x-auto {
  overflow-x: auto;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.filter-scroll {
  scroll-behavior: smooth;
}

.pb-5 {
  padding-bottom: 1.2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.text-xs {
  font-size: 0.75rem;
}
.z-10 {
  z-index: 10 !important;
}
.absolute {
  position: absolute;
}
.overflow-hidden {
  overflow: hidden !important;
}
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}
.aspect-square {
  aspect-ratio: 1 / 0.8;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.px-5 {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.py-5 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
}
.top-80px {
  top: 80px;
}
@media (max-width:550px){
  .top-80px{
  top: 35px !important;

  }
}

.group {
  position: relative;
}
.rounded-2xl {
  border-radius: 1rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}
.gap-4 {
  gap: 1rem;
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
p {
  line-height: 1.5;
}
.filter-btn:focus {
  outline: none !important;
}
.filter-btn {
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.qr {
  max-width: 200px !important;
}
.qr img {
  max-height: 100px !important;
}

.bold {
  font-weight: bold;
}

.container {
  width: 90%;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.mb-5 {
  margin-bottom: 40px;
}

.col-md-3 {
  width: 25%;
  padding: 10px;
}

.dbox {
  text-align: center;
}
p {
  margin-top: 0;
  margin-bottom: 1rem !important;
}
a {
  text-decoration: none;
  background-color: transparent;
}
.ml-4 {
  margin-left: 8px;
}
.mb-4 {
  margin-bottom: 20px;
}
.mb-5 {
  margin-bottom: 25px;
}
.mb-6 {
  margin-bottom: 30px;
}
.mb-7 {
  margin-bottom: 40px;
}
.col-md-6 {
  width: 50%;
  padding: 10px;
}
.col-md-12 {
  width: 100%;
  padding: 10px;
}
.relative {
  position: relative;
}
.h-100 {
  height: 100%;
}

.scroll-anim {
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  -o-transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

.scroll-anim.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* *************** */
/* *************** */
/* Scroller */
/* *************** */
/* *************** */

::-webkit-scrollbar {
  width: 10px;
}
.home-page::-webkit-scrollbar {
  width: 0;
}
::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}

.filter-scroll::-webkit-scrollbar {
  height: 4px;
}

.filter-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.filter-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
}

/* *************** */
/* *************** */
/* bUTTON*/
/* *************** */
/* *************** */

.btn {
  gap: var(--spacing-xs);
  border: 1px solid transparent;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-base);
  -webkit-box-shadow: var(--shadow-level-1);
  box-shadow: var(--shadow-level-1);
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-body);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  border-radius: var(--border-radius-control);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-outline);
  outline-offset: 2px;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.btn-primary {
  border-color: color-mix(in oklab, var(--main-color) 90%, var(--color-surface));
  color: color-mix(in oklab, var(--main-color) 90%, var(--color-surface));
}

.btn-primary:hover:not(:disabled) {
  background: black;
  color: white;
}

.btn-outline {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background-color: var(--color-surface);
}

.btn-outline:hover:not(:disabled) {
  color: var(--color-on-primary);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-md);
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-xl);
}

/* *************** */
/* *************** */
/* Hero Section*/
/* *************** */
/* *************** */
.carousel-item {
  position: relative;
}
.carousel-img {
  position: relative;
  z-index: 0;
}
.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.09) 2%, rgba(0, 0, 0, 0.1) 50%);
  z-index: 1;
}

.showcase-section {
  overflow: visible;
  position: relative;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
.containerLanding {
  margin: 0 !important;
  overflow: hidden !important;
}
.showcase-section .container {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  margin: 0 !important;
  width: 100% !important;
}
.w-100 {
  max-width: 100%;
  width: 100%;
}
.showcase-carousel-wrapper {
  width: 100% !important;
  position: relative;
  height: 100vh;
}

.carousel-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  width: 100% !important;
}

.carousel-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  height: 62vh;
  position: relative;
  min-height: 475px;
  max-width: 100% !important;
  height: 100vh;
}

.carousel-img {
  width: 100%;
  height: 100%;
  opacity: 1;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100% !important;
}

.carousel-caption {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 18%;
  right: 50%;
  bottom: 1%;
  z-index: 3;
  width: 35%;
  max-width: 60%;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 1rem 1.25rem;
  border-radius: 15px;
}

.carousel-controls {
  gap: var(--spacing-xl);
  right: 50%;
  bottom: var(--spacing-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 4;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  max-width: 100% !important;
}

.carousel-btn {
  color: white !important;
  width: 48px;
  border: none;
  cursor: pointer;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent !important;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: var(--border-radius-full);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.carousel-btn:hover {
  color: var(--color-on-primary);
  background: var(--main-color);
}
.carousel-btn i {
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* *************** */
/* *************** */
/* Product page */
/* *************** */
/* *************** */
.carousel-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  width: 100%;
}

.carousel-btn {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 0;
  padding: 0.5rem;
  font-size: 1.25rem;
  border-radius: 6px;
  cursor: pointer;
}

.carousel-controls i {
  font-size: 35px;
}

.carousel-section {
  padding: 3rem 0;
  min-height: auto;
}

.product-carousel {
  padding: 2rem 1rem;
  min-height: auto;
}

.product-carousel .card {
  background: #fff;
  margin: 0 12px;
  padding: 15px;
  border-radius: 8px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: 380px;
}

.product-carousel .card:hover {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-carousel .card img {
  width: 70%;
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  margin: auto;
}

.product-carousel .card .category {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.product-carousel .card .title {
  font-weight: 700;
  padding: 0.5rem 0 1rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  line-height: 1.4;
}

.slick-list {
  padding: 30px 0 !important;
}

.product-carousel .slick-slide {
  height: auto;
  background-color: #eee !important;
}

.product-carousel .slick-slide > div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-carousel .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.filter-btn.active {
  color: white !important;
  font-weight: 900;
  background-color: var(--main-color) !important;
  font-size: 13px;
}

.product-card {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.fifth {
  margin-top: 30px;
}
.product-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  background: #fff;
  padding: 0.3rem 0.3rem 1rem !important;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .bg-prem {
  z-index: 10;
}
.edit {
  border-left: 0 !important;
  border-bottom: 5px solid var(--main-color) !important ;
}
.product-card:hover img {
  transition: transform 0.4s ease;
  transform: scale(1.08);
}
.product-card img {
  height: 100%;
  width: 88%;
  margin: 15px auto;
  border-radius: 15px;
}
/* ************* */
/* ************* */
/* projectddetails  */
/* ************* */
/* ************* */

.project-showcase {
  display: flex;
  max-width: 1250px;
  margin: 130px auto 8px;
  gap: 24px;
  padding: 0 20px;
  align-items: flex-start;
}

.thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 200px;
  flex-shrink: 0;
  max-height: 635px;
  overflow-y: auto;
  padding: 3px;
}

.thumbs-col::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.thumbs-col::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.thumbs-col img {
  width: 100%;
  height: 150px; /* ارتفاع ثابت للصور المصغرة */
  object-fit: cover; /* يمنع تشويه الصورة */
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6; /* شفافية للصور غير المحددة */
}

.thumbs-col img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.thumbs-col img.active {
  opacity: 1;
  border-color: var(--sec-color);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}

.main-view-col {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.main-image-box {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}

.main-image-box img {
  height: 100%;
  object-fit: contain;
  border-radius: 10px !important;
  margin: auto;
}

.project-info-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-info-box h1 {
  margin: 0 0 10px 0;
  font-size: 2.2rem;
  color: #1e293b;
}

.info-divider {
  width: 60px;
  height: 4px;
  background: var(--sec-color);
  margin-bottom: 20px;
  border-radius: 2px;
}

.project-info-box p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .project-showcase {
    flex-direction: column-reverse;
    gap: 15px;
    margin-top: 100px;
  }

  .main-image-box {
    height: 350px;
  }

  .thumbs-col {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .thumbs-col img {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
  }
}
/* *************** */
/* *************** */
/* Company page */
/* *************** */
/* *************** */

.company-section {
  padding: 8rem 0 4rem;
}

.company-container {
  max-width: 1250px;
  margin: auto;
  padding: 1rem;
}

.company-header {
  text-align: center;
  margin-bottom: 3rem;
}

.company-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.company-divider {
  display: block;
  width: 70px;
  height: 4px;
  background: var(--sec-color);
  margin: 1rem auto;
  border-radius: 10px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.company-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.company-card {
  background: var(--sec-color);
  padding: 2rem;
  border: 10px solid var(--main-color);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.company-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: white;
}

.company-card ul li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 18px;
  color: white;
}

.company-card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.services-stats {
  background: #f9f9f9;
}

.company-stats .company-container {
  padding: 3rem;
}

.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 2rem;
}

.company-stat h4 {
  font-size: 2rem;
  color: var(--main-color);
}

.company-projects -grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.company-product {
  padding: 1.2rem;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: default;
}

.company-product:hover {
  transform: translateY(-6px);
  color: var(--main-color);
}

.company-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: center;
}

.company-app-grid span {
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.company-cta {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.company-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #fff;
  color: var(--main-color);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.company-btn:hover {
  transform: scale(1.05);
}

:root {
  --company-main: var(--main-color);
  --company-gradient: linear-gradient(#e6440a 0%, #f07a0a 20%, #fbb905 50%, #f07a0a 80%, #e6440a 100%);
}

.company-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--sec-color);
}

.company-intro,
.company-sector,
.company-applications {
  padding: 4rem 0;
}

.company-highlight-text,
.company-note {
  font-weight: 600;
  margin-top: 1rem;
}

.company-projects {
  margin-top: 64px;
}

.company-projects li {
  background: #fff;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.company-text-inline {
  line-height: 1.8;
  font-weight: 500;
  padding-top: 30px;
}

.company-final-note {
  margin-top: 1.5rem;
  font-weight: 600;
}
.related-projects {
  margin-top: 65px;
}
.company-contact {
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #f9f9f9, #ffffff);
}

.company-contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.company-contact-header p {
  color: #666;
  max-width: 500px;
  margin: 0.5rem auto 0;
}

.company-contact-form {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 3.5rem;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-top: 6px solid var(--main-color);
}

.company-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.company-form-full {
  margin-top: 2rem;
}

.company-form-group {
  display: flex;
  flex-direction: column;
}

.company-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.company-form-group input,
.company-form-group textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid #e0e0e0;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
  background: var(--bg-color);
}

.company-form-group input::placeholder,
.company-form-group textarea::placeholder {
  color: #aaa;
}

.company-form-group input:focus,
.company-form-group textarea:focus {
  border-color: var(--main-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(234, 101, 18, 0.12);
}

.company-submit-btn {
  width: 100%;
  margin-top: 2.5rem;
  padding: 16px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(#e6440a 0%, #f07a0a 20%, #fbb905 50%, #f07a0a 80%, #e6440a 100%);
  transition: all 0.3s ease;
}

.company-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(234, 101, 18, 0.35);
}

.company-images {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: auto;
}

.company-images .img {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.company-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* الصورة الأساسية */
.img-main {
  position: relative;
  width: 100%;
  height: 300px;
  top: -140px;
  z-index: 1;
}

/* الصورة اللي فوق */
.img-top {
  width: 60%;
  height: 180px;
  top: 75px;
  left: -20px;
  z-index: 2;
  animation: floatUp 6s ease-in-out infinite;
}

/* الصورة اللي تحت */
.img-bottom {
  width: 40%;
  height: 250px;
  bottom: -30px;
  right: -20px;
  z-index: 2;
  animation: floatDown 6s ease-in-out infinite;
}
.company-images {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

/* يخلي الصور تحس بالـ depth */
.company-images .img {
  transform: translateZ(0);
}

/* عمق مختلف لكل صورة */
.img-main {
  transform: translateZ(30px);
}

.img-top {
  transform: translateZ(60px);
}

.img-bottom {
  transform: translateZ(40px);
}
/* حركة هادية */
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Hover effect خفيف */
.company-images .img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .company-images {
    max-width: 320px;
    margin-top: 40px;
  }

  .img-main {
    height: 240px;
  }

  .img-top,
  .img-bottom {
    width: 65%;
    height: 140px;
  }
}

/* *************** */
/* *************** */
/* Contact Page */
/* *************** */
/* *************** */
.ftco-section {
  padding: 80px 0 0px;
  background: #f6f7fb;
  font-family: "Roboto", sans-serif;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  background-color: var(--secbg-color);
}
.icon span {
  /* color: var(--color-fifth); */
  font-size: 18px;
}

.dbox p {
  font-size: 14px;
  color: #666;
}

.ftco-section > .container > .row {
  margin: 10px 0 35px;
}
.wrapper {
  background: var(--main-color);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.no-gutters {
  display: flex;
  flex-wrap: wrap;
}

.contact-wrap {
  padding: 40px;
}

.contact-wrap h3 {
  margin-bottom: 25px;
}

.label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  height: 45px;
  font-size: 14px;
  outline: none;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.form-control:focus {
  border-color: #4db7c5;
}

.btn-primary {
  background: var(--sec-color);
  padding: 12px 25px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 15px;
  border: 0;
}

.contact-wrap h2 {
  color: var(--third-color);
}
.btn-primary:hover {
  background: #3aa2b0;
}

.info-wrap {
  height: 100%;
  min-height: 450px;
  background-size: cover;
  background-position: center;
}

/* ****************** */
/* ****************** */
/* services page  */
/* ****************** */
/* ****************** */

.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  margin-bottom: 2rem;
}
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}
.grid-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  gap: 1rem;
}

.grid-thumbs .thumb {
  grid-column: span 2;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.grid-thumbs .thumb:nth-child(4),
.grid-thumbs .thumb:nth-child(5) {
  grid-column: span 3;
}

.grid-thumbs .thumb img {
  width: 100%;
  height: 26vh;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.grid-thumbs .thumb:hover img {
  transform: scale(1.05);
}
.grid-thumbs .thumb.active {
  border-top: 3px solid var(--sec-color);
}

main {
  margin-top: 17vh;
}
.myFillter {
  box-shadow: 0 0 10px #e9e9e9 !important;
  padding: 1rem !important;
}
.grid-thumbs .thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--third-color);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bg-color);
}

.services {
  margin: 16vh auto 10vh !important;
}

/* --- تنسيقات الـ Modal وتأثير الانبثاق --- */
body.ath-modal-open > *:not(#athServiceModal) {
  filter: blur(8px);
  transition: filter 0.4s ease;
}
/* --- التنسيق النهائي للمودال - الضربة القاضية --- */
.ath-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.85) !important;
  z-index: 999999 !important;

  /* الحل هنا: Display Flex دايماً والتحكم بالظهور عن طريق Opacity */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  /* حالة الإخفاء */
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  backdrop-filter: blur(0px);

  /* سرعة التلاشي */
  transition: opacity 0.5s ease, visibility 0.5s ease, backdrop-filter 0.5s ease !important;
}

/* حالة الظهور */
.ath-modal-overlay.ath-show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  backdrop-filter: blur(8px) !important;
}

.ath-modal-content {
  background: var(--bg-color) !important;
  width: 90% !important;
  max-width: 850px !important;
  border-radius: 20px !important;
  padding: 40px !important;
  position: relative !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;

  /* أنميشن الانبثاق (Pop-up) */
  transform: scale(0.7) translateY(50px) !important;
  opacity: 0 !important;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease !important;
}

/* الأنميشن لما المودال يفتح */
.ath-modal-overlay.ath-show .ath-modal-content {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
}

/* أنميشن الصورة الداخلي */
.ath-modal-image img {
  transform: translateX(-30px) !important;
  opacity: 0 !important;
  transition: all 0.7s ease 0.3s !important; /* تأخير بسيط عشان المودال يفتح الأول */
}

.ath-modal-overlay.ath-show .ath-modal-image img {
  transform: translateX(0) !important;
  opacity: 1 !important;
}
.ath-modal-text {
  flex: 1;
  min-width: 280px;
  color: #333;
  text-align: right;
}

.ath-modal-text h2 {
  color: var(--third-color);
  margin-bottom: 15px;
  font-size: 24px;
}

.ath-modal-text p {
  line-height: 1.6;
  font-size: 16px;
  min-height: 100px; /* يحافظ على مساحة النص أثناء الكتابة */
}
.ath-modal-content {
  will-change: transform, opacity;
}
.ath-modal-overlay {
  will-change: opacity;
}
.ath-modal-content {
  transform: translateZ(0) scale(0.5) translateY(100px);
}

@media (max-width: 768px) {
  .ath-modal-content {
    width: 95%;
    padding: 25px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .ath-modal-body {
    flex-direction: column;
    text-align: center;
  }
  .ath-modal-text {
    text-align: center;
  }
}

/* **************** */
/* **************** */
/* About us */
/* **************** */
/* **************** */

.team-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.team-group-image {
  text-align: center;
  margin-bottom: 100px;
}

.team-group-image img {
  width: 100%;
  border-radius: 20px;
}

.team-caption {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.team-sub {
  font-size: 14px;
  color: #777;
}

.team-category {
  margin-bottom: 80px;
}

.team-category h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.team-grid.single {
  justify-content: center;
  max-width: 300px;
  margin: auto;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s ease;
}

.team-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transition: 0.4s ease;
}

.team-overlay h4 {
  margin: 0;
  font-size: 18px;
}

.team-overlay span {
  font-size: 13px;
  opacity: 0.8;
}

.team-card:hover {
  box-shadow: 0px 0px 50px rgb(168, 168, 168);
  transition: 0.6s ease;
}
.team-card:hover img {
  transform: scale(1.05);
}

.team-card:hover .team-overlay {
  bottom: 0;
}

.myBoxShadow {
  border-color: rgb(10 59 99 / 0.1);
  border-width: 0.8px;
  border-radius: 16px;
  padding: 1.4rem;
  --tw-shadow: 0px 18px 50px -10px #00000033;
  --tw-shadow-colored: 0px 18px 50px -10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* CORPORATE WORLD MAP COMPONENT */

.corpmap-section {
  padding: 80px 20px;
  background: #ffffff;
}

.corpmap-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  /* background-color: var(--bg-color); */
}

.corpmap-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
}

.corpmap-wrapper {
  width: 80%;
  max-height: 500px;
  margin: 0 auto;
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.corpmap-svg {
  width: 100%;
  display: block;
  height: 550px !important;
}
.block-23.mb-3 > ul > li span:first-child {
  margin-right: 18px;
}
.block-23.mb-3 span {
  position: relative;
  display: flex;
}

.block-23.mb-3 .icon::before {
  display: flex;
  justify-content: center;
  line-height: 2;
}
.corpmap-legend {
  margin-top: -40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}

.legend-color {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-block;
}

.active-region {
  background-color: var(--secbg-color); /* نفس لون selected */
}

.other-region {
  background-color: #e2e8f0; /* نفس لون initial */
  border: 1px solid #cbd5e1;
}
.jvm-container {
  height: 100px;
}

.corpmap-svg svg {
  max-height: 325px;
  top: -20px;
  position: absolute;
  left: -25px;
  transition: 3s;
}

/* *************** */
/* *************** */
/* Media Query */
/* *************** */
/* *************** */

@media (max-width: 768px) {
  .logo-width {
    max-width: 90px;
  }
  footer .grid-footer > div {
    grid-column: auto;
  }
}

@media (max-width: 991px) {
  .logo {
    height: auto !important;
    width: 20%;
  }
  .navigation-desktop-menu {
    gap: var(--spacing-lg);
  }

  .navigation-links-list {
    gap: var(--spacing-md);
  }
  .navigation-actions {
    display: none;
  }
  .cont {
    padding-bottom: 60px;
  }
  .carousel-caption {
    padding: 0.4rem !important;
    left: 50%;
    right: 50%;
    bottom: 30%;
    width: 70%;
  }
  .carousel-caption h2 {
    font-size: 13px;
    padding-bottom: 5px;
  }
  .carousel-caption p {
    font-size: 10px;
  }
  .carousel-item,
  .carousel-item img,
  .carousel-track {
    height: 100vh;
    min-height: 100vh;
  }
  .carousel-controls {
    bottom: 2%;
  }
  .navigation-mobile-actions {
    margin: auto 0;
  }
  .showcase-section {
    margin: 0;
  }
  .home-page .showcase-section .container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  nav ul li a {
    color: white !important;
  }
  .navigation-link.active {
    color: var(--color-forth) !important;
    border-bottom: 2px solid var(--color-forth) !important;
  }
  .hero-box h5 {
    font-size: 22px !important;
  }

  .hero-box p {
    font-size: 14px !important;
  }
  .mission article:nth-child(2) {
    border-left-width: 0;
    border-right-width: 4px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .mission article:nth-child(2) span,
  .mission article:nth-child(2) h3 {
    text-align: right;
  }
  .mission article P {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .hide-in-web {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .navigation-mobile-toggle {
    display: block;
  }

  .company-intro,
  .company-sector,
  .company-applications {
    padding: 1rem 0 !important    ;
  }
  .company-title {
    font-size: 1.5rem !important;
  }
  .company-projects li,
  .company-text-inline {
    font-size: 0.8rem;
  }

  .related-projects {
    margin-top: 40px !important;
  }
  .company-text p {
    font-size: 14px;
  }
  .hero-box {
    padding: 20px 10px 0 !important;
  }
  .hide-in-mobile {
    display: none !important;
  }
  .navigation-links-list {
    gap: var(--spacing-xs);
  }
  .navigation-link {
    font-size: 15px !important;
  }
}

@media (max-width: 991px) {
  .product-carousel .card img {
    width: 86% !important;
    height: 73%;
  }
  .company-stats .company-container {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 1rem !important;
  }
  .carousel-item,
  .carousel-item img,
  .carousel-track {
    width: auto !important;
  }
  .carousel-item img {
    margin: auto !important;
  }
  .carousel-track {
    text-align: center;
    align-self: center;
  }
  .hide-in-mobile {
    display: none !important;
  }
  .showcase-carousel-wrapper {
    width: 65% !important;
    margin: auto;
  }
  .carousel-item {
    background-color: #d9d9d9;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
  }

  .mobile-bottom-bar ul {
    display: flex;
    justify-content: space-around;
    background: var(--bg-color);
    color: var(--sec-color);
  }
  .mobile-bottom-bar ul a {
    min-width: 70px;
  }
}

@media (max-width: 767px) {
  footer .grid .gap-6 {
    gap: 3px;
  }
  footer .grid {
    row-gap: 50px;
  }
  footer .text-xl {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1250px) {
  .container {
    max-width: 1250px !important;
  }
}
@media (max-width: 768px) {
  .mt-5 {
    margin-top: 20px;
  }
  .col-6 {
    width: 50% !important;
  }
  .col-12 {
    width: 100% !important;
  }
}
/* تحسين استجابة قسم التواصل على الموبايل */
@media (max-width: 900px) {
  /* السماح للأعمدة (الفورم + الخريطة) إنها تنزل تحت بعض */
  .row.no-gutters {
    flex-wrap: wrap !important;
  }

  /* تأكد إن الفورم والخريطة بياخدوا العرض الكامل في الموبايل */
  .ftco-section .col-md-7,
  .ftco-section .col-md-5 {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 768px) {
  footer .grid-footer {
    grid-template-columns: repeat(9, 1fr);
  }

  footer .grid-footer .main {
    grid-column: span 3;
  }

  footer .grid-footer .second,
  footer .grid-footer .third,
  footer .grid-footer .four {
    grid-column: span 2;
  }
  footer span,
  footer .flex div {
    align-self: center !important;
  }
}

.md\:flex-wrap {
  @media (min-width: 768px) {
    flex-wrap: wrap;
  }
}

.md\:justify-center {
  @media (min-width: 768px) {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 500px) {
  .carousel-item img {
    height: 300px !important ;
  }
  .navigation-wrapper img {
    max-width: 100%;
  }
  .carousel-item img {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .company-contact-form {
    padding: 2.5rem 1.5rem;
  }

  .company-form-grid {
    grid-template-columns: 1fr;
  }
  .showcase-carousel-wrapper {
    width: 100% !important;
  }
  .carousel-item,
  .carousel-item img,
  .carousel-track {
    height: 400px !important ;
  }
  .carousel-item img {
    padding: 2px;
  }
  .carousel-caption {
    bottom: 15% !important;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:text-5xl {
    font-size: 3rem;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .col-md-3 {
    width: 50%;
    margin-bottom: 20px;
  }

  .col-md-7,
  .col-md-5 {
    width: 100%;
  }

  .info-wrap {
    min-height: 300px;
  }
}

@media (max-width: 500px) {
  .col-md-3 {
    width: 100%;
  }
  .slider {
    height: 30vh !important;
  }
  .myBoxShadow {
    padding: 0.6rem !important;
  }
  .grid-thumbs .thumb img {
    height: 10vh;
  }
  .mb-sm-5 {
    margin-bottom: 2rem !important;
  }
  .mt-lg-5 {
    margin-top: 2rem !important;
  }
}

@media (max-width: 600px) {
  .grid-thumbs .thumb {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
  }
  .services {
    margin: 12vh auto 10vh !important;
  }
  .grid-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .corpmap-legend {
    z-index: 1000000000 !important;
    position: relative !important;
    background-color: white !important;
    padding-top: 25px !important;
  }
  .navigation-links-list li.dropdown .dropdown-menu {
    top: -70px !important;
    left: -15px !important;
    font-size: 11px !important;
  }
}
/* موبايل */
@media (max-width: 991px) {
  /* منيو موبايل احترافية كأوفرلاي */
  .navigation-desktop-menu {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top, rgba(115, 174, 238, 0.25), transparent 55%), rgba(5, 31, 52, 0.97);
    padding: 90px 24px 40px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(18px);
  }

  .ftco-section .btn.btn-primary {
    width: 100% !important;
  }
  .contact-wrap {
    padding: 15px;
  }
  .container {
    padding: 0;
  }
  .company-section {
    padding: 4rem 0 4rem;
  }
  .corpmap-svg.jvm-container {
    scale: 7.5 !important;
    left: 50px;
  }
  .corpmap-wrapper {
    width: 100% !important;
    max-height: 280px !important;
  }
  .navigation-desktop-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navigation-links-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .navigation-links-list li {
    width: 100%;
    text-align: center;
  }

  .navigation-link {
    color: #f9fafb;
    font-size: 15px !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .navigation-link.active {
    color: var(--color-forth);
    border-bottom-color: transparent;
  }

  /* خلي البرجر يظهر */
  .burger {
    display: flex;
  }

  /* أنيميشن أيقونة البرجر */
  .home-page .burger span {
    background: black !important;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .dropdown-menu {
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  /* في الموبايل: خليه بسيط داخل قائمة البرجر مش منبثق مطلق */
  .navigation-links-list li.dropdown .dropdown-menu {
    position: absolute;
    top: -150%;
    left: -155%;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 4px 0 0;
    min-width: auto;
    align-items: flex-start;
  }

  .navigation-links-list li.dropdown .dropdown-menu::before {
    display: none;
  }

  .navigation-links-list li.dropdown .dropdown-menu li a {
    padding: 10px 0 !important;
    border-radius: 0;
    font-size: 12px !important;
    letter-spacing: normal;
    text-transform: none;
  }
}
@media (max-width: 991px) {
  .burger {
    display: flex !important;
  }
}
