/* ====================================
   1. Font Faces & Root Variables
   ==================================== */
@font-face {
  font-family: 'Kepler';
  src: url('../fonts/KeplerStdRegular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Kepler';
  src: url('../fonts/KeplerStdBold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Kepler';
  src: url('../fonts/KeplerStdItalic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Brandon';
  src: url('../fonts/BrandonGrotesque-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Brandon';
  src: url('../fonts/BrandonGrotesque-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Brandon';
  src: url('../fonts/BrandonGrotesque-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Brandon';
  src: url('../fonts/BrandonGrotesque-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}



@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Hairline.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Thin.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'PingAR';
  src: url('../fonts/PingAR+LT-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Sakkal';
  src: url('../fonts/Sakkal Majalla.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}




.prim_dir {
  direction: ltr !important;
}

:root {
  --primary-color: #000;
  --secondary-color: #555;
  --bg-light: #f6f6f6;
  --accent-gold: #2680EB;
  --border-radius: 20px;
  --light-gray: #eee;
  --white: #f9f9f9;
  --white: #f9f9f9;
  --black: #1d2025;
  --dark-gray: var(--black);
  --matte: #2f2f2f;
  --primary: whitesmoke;
  --border-radius: 20px;
  --light-gray: #eee;
  --matte-20: #2f2f2f33;
}

/* ====================================
   2. Global & Reset
   ==================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Kepler Std', serif;
  color: var(--primary-color);
  background-color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;

}

.dropdown {
  width: 120px;
  text-align: end;
}

.hero-card-wrapper {
  opacity: 0
}

.video-hero.home {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 130px;
  align-items: flex-start;
}

.container-footer {


  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 4fr;

  align-items: flex-start;
}

/* ====================================
   3. Header & Navbar
   ==================================== */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #D2CFCA;
  padding: .45rem 1.4rem;
  transition: all 0.3s ease;
}

.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-visible {
  transform: translateY(0);
  opacity: 1;
  padding: 0.2rem 1.4rem;
  border-bottom: 0;
  animation: headerDrop 0.7s ease forwards;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.05);
}

.header-reset {
  padding: 0.45rem 1.4rem;
  transform: translateY(0);
  opacity: 1;
  transition: padding 0.5s ease;
}

@keyframes headerDrop {
  0% {
    transform: translateY(-60%);
    opacity: 0;
  }

  70% {
    transform: translateY(10px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Navbar Links */
.navbar-brand,
.nav-link,
.nav-item {
  color: #000 !important;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Kepler Std', serif;
  font-size: 1.2rem;
}

.nav-link {
  padding-bottom: 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.active {
  color: var(--accent-gold) !important;
}

.nav-item:hover::after,
.nav-link:hover {
  width: 100%;
  color: var(--accent-gold) !important;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 110px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.navbar-collapse {
  justify-content: flex-end;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.navbar-collapse.show .dropdown {

  text-align: center !important;
  margin: auto;
}

.navbar-nav .dropdown-menu {
  position: absolute;
}

/* Mobile Toggler */
.navbar-toggler {
  border: none;
  background: transparent;
  width: 27px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.navbar-toggler span {
  display: block;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.open span:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -4px);
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Dropdown */
.dropdown-menu {
  direction: ltr !important;
  text-align: left;
}

.dropdown-toggle-split {

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item {
  text-align: center;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important;
  color: var(--accent-gold) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--bg-light) !important;
  color: var(--accent-gold) !important;
}

/* ====================================
   4. Hero Section
   ==================================== */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.mt-11 {
  margin-top: 14.4rem;
}

.hero .first-h1,
.hero .second-h1 {
  font-family: 'Kepler Std', serif;
  font-weight: 300;
  font-size: 3rem;
  margin-bottom: 1rem;


}


.hero .second-h1 {
  font-style: italic;

}

.hero p {
  max-width: 660px;
  margin: 2rem auto;
  font-family: 'Kepler Std', serif;
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  line-height: 1.6;

}



.scroll-down {
  margin-top: 45px;
  height: 30px;
  font-size: 1.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  text-align: center;

}


.scroll-up {

  height: 30px;
  margin: 45px auto 0px auto;
  font-size: 1.5rem;
  cursor: pointer;

  transform: rotate(180deg);
}

.scroll-up-im {
  margin-top: 45px;
  height: 30px;
  font-size: 1.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;

}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-14px);
  }

  60% {
    transform: translateY(-7px);
  }
}

/* ====================================
   5. Why Choose Us Section
   ==================================== */
.why-section {
  padding: 1rem 0;
  background-color: var(--bg-light);
  font-family: 'Brandon', 'Cairo', Arial, sans-serif;
  overflow: hidden;
  scroll-margin-top: 100px;
}



.why-section .container,
.work-section .container,
.how-we-work .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}


/* Image */
.why-section .image-wrapper {
  position: relative;
  overflow: hidden;


}

.why-section .image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-section .image-wrapper:hover img {
  transform: scale(1.03);
}

/* Title Overlay */
/* الـ overlay نفسه */
.why-section .title-overlay {
  position: absolute;
  bottom: 3rem;

  padding: 1.2rem 1.6rem;
  border-radius: 12px;


  z-index: 2;


}



/* تنسيق النصوص العام */
.why-section .title-overlay h3 {
  margin: 0;
  padding: 0;
  color: #D9D6C7;
  line-height: 1.1;
  letter-spacing: 0.5px;


}

/* النص الأول (Why Choose) */
.why-section .tit-text1 {
  font-size: clamp(1.4rem, 2.4rem, 2.7rem);
  font-family: 'Kepler Std', serif;
  font-weight: 500;

}

/* النص الثاني (WorkWise?) أكبر وأقوى */
.why-section .tit-text2 {
  font-size: clamp(1.4rem, 2.2rem, 2.7rem);
  font-weight: 500;
  font-family: 'Kepler Std', serif;
  font-style: italic;
  float: left;
  margin-top: -0.4rem;
  /* يقرّب الاتنين من بعض */

}





/* Content */
.why-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
}

.why-section .content-wrapper p {
  margin-bottom: 0px;
}

.work-section .container .content {
  margin: auto 0;
}

.why-section .content-wrapper p strong {
  display: block;
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  font-weight: 550;
  color: #1a1a1a;
}

.why-section .content-wrapper p span {
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  color: #000;
  line-height: 1.7;
}



/* ====================================
   6. CTA & How We Work
   ==================================== */
.cta-section {
  text-align: center;
  padding: 8rem 2rem;
}

.how-we-work .how-container .accordion,
.how-we-work .how-container .content {
  width: 100%;
}

.video-hero.home p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: white;
  line-height: 1.1;
  font-family: 'Kepler Std', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 200;
}

.video-hero.home em {
  display: block;
  font-family: 'Kepler Std', serif;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 350;
}

.video-hero.home .btn-outline-dark {
  border-radius: 0;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: white;

}

/* How We Work */
.how-section {
  padding: 6rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}


.how-we-work .how-container {
  padding: 2rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}



.py-7 {
  padding: 6rem 4rem !important;
}

.py-footer-7 {
  padding: 1rem 3rem;
}



.image-wrapper img {
  width: 100%;
  max-width: 500px;
  height: 580px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.image-wrapper1 img {
  width: 100%;
  max-width: 500px;
  height: 580px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}



.content h1 {
  font-family: 'Kepler Std', serif;
  font-size: 60px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.content .description {
  font-family: 'Kepler Std', serif;
  font-style: italic;
  font-size: 1.6rem;

  font-weight: 300;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
}

.accordion-button {
  background: transparent;
  box-shadow: none;
  font-weight: 500;
}

.accordion-button::after {
  content: '+';
  font-size: 1.2rem;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: '-';
}

.accordion-header {
  padding: 3px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: #1a1a1a;
}

.accordion-title {
  font-weight: 500;
  font-size: 18px;
  color: #1a1a1a;
}

.accordion-icon {
  font-size: 24px;
  font-weight: 300;
  color: #aaa;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
  color: #2680EB;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.4s ease;
  font-size: 15px;
  color: #666;
  text-align: left
}

.accordion-content.open {
  max-height: 200px;
  padding: 0 0 10px 0;
}

.accordion-item:last-of-type {
  border-radius: 0;
}


.work-section .container .content h2 {
  font-family: 'Kepler Std', serif;

  font-size: 3.8rem;

  font-weight: 450;
}

.work-section .container .content p {
  font-family: 'Kepler Std', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  width: 350px;
  font-weight: 200;
}

.work-section .container .content form {
  margin-top: 1.2rem;
}

.work-section .container .content form button {
  float: inline-end;
}





/* ====================================
   7. Footer & Gallery
   ==================================== */
.pre-footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 2rem 0;
}


.nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  font-family: 'Kepler Std', serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 10px;
  padding: 0;
}

.nav-col ul li a {
  color: #444;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-col ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -5px;
  right: 0;
  background: var(--accent-gold);
  transition: width 0.3s;
}

.nav-col ul li a:hover {
  color: var(--accent-gold);
}

.nav-col ul li a:hover::after {
  width: 100%;
}

.social-icons-footer {
  display: flex;
  gap: 15px;


  margin: auto;
  padding-bottom: 1rem;
}

.social-icons-footer a {
  color: #888;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.social-icons-footer a:nth-child(1):hover {
  color: #e1306c;
}

.social-icons-footer a:nth-child(2):hover {
  color: #25d366;
}

.social-icons-footer a:nth-child(3):hover {
  color: #000000;
}

.social-icons-footer a:nth-child(4):hover {
  color: #0A66C2;
}

.gallery-col {
  flex: 2;
  min-width: auto;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-col img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-col img:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

footer {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--secondary-color);

}

.footer {
  padding-top: 4rem;
  background-color: #F7F7F7;
}



/* ====================================
   8. RTL Support
   ==================================== */
[dir="rtl"] .image-wrapper,
[dir="rtl"] .image-wrapper1 {
  text-align: left;
}

[dir="rtl"] .btn-form {
  float: inline-start !important;
}

[dir="rtl"] .navbar-nav {
  margin-right: auto !important;
}

[dir="rtl"] .why-section .title-overlay {
  right: auto;
  left: 1.8rem;
  text-align: left;
}

/* ====================================
   9. Media Queries (من الأكبر → الأصغر)
   ==================================== */
@media (min-width: 992px) and (dir="rtl") {
  .why-section .title-overlay {
    left: 2rem;
  }
}

@media (min-width: 992px) {
  .why-section .container {
    grid-template-columns: 2.5fr 4fr;
    gap: 3rem;
    align-items: center;
  }

  .work-section .container {
    grid-template-columns: 2.5fr 4fr;
    gap: 7rem;
  }

  .why-section .image-wrapper {
    grid-column: 1;
  }

  .why-section .content-wrapper {
    grid-column: 2;
  }

  .why-section .title-overlay {
    right: 1rem;
    bottom: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .why-section .container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .image-wrapper1 img {

    height: 450px;
  }

  .image-wrapper img {

    height: 450px;
  }

  .accordion-header {
    padding: 7px;
  }

  .accordion-header span {
    font-size: 15px;
  }

  .mt-11 {
    margin-top: 14rem;
  }

  .how-we-work .container .content h1 {
    font-size: 36px !important;
  }

  .how-we-work .container .content .description {
    font-size: 1.1rem;
  }

  .why-section .content-wrapper {
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .work-section .container {
    grid-template-columns: 3fr 4fr;
    gap: 3rem;
  }

  .why-section .title-overlay {
    right: 0.5rem;
    bottom: 3.5rem;
  }

  .why-section .content-wrapper p span {
    font-size: 0.8rem;
  }

  .py-7 {
    padding: 4rem 3rem !important;
  }

}

@media (max-width: 1200px) {
  .container {
    gap: 60px;
    width: 100%;
  }

  .how-we-work .container .content h1 {
    font-size: 43px;
  }

  .nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    font-family: 'Kepler Std', serif;
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding: 0;
  }
}

@media (max-width: 992px) {


  .footer {
    padding-top: 3rem;
    background-color: #F7F7F7;
  }

  .content {
    max-width: 100%;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-collapse {
    background: #fff;
    padding: 1rem 0;
    border-top: 1px solid #eee;
  }

  .gallery-col {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }


  .why-section .image-wrapper {
    position: relative;
    overflow: hidden;

  }
}

@media (max-width: 767px) {
  .gallery-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
    height: 100svh !important;
  }

  .view-project1 span {
    font-size: 13px !important
  }

  .slider-btn {
    height: 40px !important
  }

  .hero .first-h1,
  .hero .second-h1 {
    font-size: 2.2rem;
  }

  .social-icons-footer {
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 0.1rem;
  }

  .py-7 {
    padding: 4rem 2rem !important;
  }

  .brand-logo {
    width: 110px;
  }

  .scroll-up-im {
    margin-top: 0rem;
  }

  /* How We Work Mobile Fixes */
  .how-we-work .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 2rem 1.2rem !important;
  }

  .how-we-work .container picture {
    display: block !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
    max-width: 450px !important;
  }

  .how-we-work .container img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .how-we-work .how-container {
    flex-direction: column !important;
    padding: 0 !important;
    width: 100% !important;
    gap: 2rem !important;
  }

  .how-we-work .how-container .content,
  .how-we-work .how-container .accordion {
    width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .how-we-work .content h1 {
    font-size: 2.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }

  .how-we-work .content .description {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }

  .nav-item {
    font-size: 2rem;
  }

  .nav-link {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .navbar-collapse {
    padding: 2rem 0;
  }

  .navbar-nav {
    gap: 0;
  }

  .header-visible {
    padding: 0.2rem 1rem;
  }

  .header-reset {
    padding: 0.2rem 1rem;
  }

  .py-footer-7 {
    padding: 1rem 2rem 0rem 2rem !important;
  }

  .header-sticky {
    padding: 0.3rem 0.5rem;
  }

  .cta-section p {
    font-size: 1rem;
    text-align: justify;
  }

  .nav-col {
    margin-bottom: 1rem;
  }

  .image-wrapper,
  .image-wrapper1 {
    margin: 0 auto;
  }

  .image-wrapper {
    order: -1;
  }

  .cta-section em {
    font-size: 1.6rem;
  }

  .content .description {
    font-size: 1.4rem;
  }

  .work-section .container .content,
  .how-we-work .container .content {
    text-align: center;
  }

  .work-section .container .content h2 {
    font-size: 2.9rem;
  }

  .work-section .container .content p {
    font-size: 1.2rem;
    margin: 0.7rem 0rem 2.5rem 0rem;
  }

  .container-footer {
    grid-template-columns: 1fr;
  }

  .nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    font-family: 'Kepler Std', serif;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 10px;
    padding: 0;
  }

  .hero p {
    text-align: justify;
    font-size: 0.9rem;
  }
}

.col-lg-3.col-md-4.col-sm-6 {
  margin-bottom: 2.5rem
}

@media (max-width: 480px) {
  .gallery-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }


  .container-full.padding-72px {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .hero-wrapper {
    grid-template-columns: 1fr 1fr 1fr !important;

  }

  .image-card {
    min-width: 250px !important;
  }

  .brand-title {
    font-size: 22px;
  }

  p {
    font-family: 'Brandon', 'Cairo', Arial, sans-serif !important;
  }

  .first-h1 {
    margin-bottom: 0 !important;
  }

  .hero .first-h1,
  .hero .second-h1 {
    font-size: 1.9rem;
  }

  .work-section .container .content,
  .how-we-work .container .content {
    text-align: center !important;
  }

  .slider-wrapper .slide-pair {
    grid-auto-columns: 100% !important;
  }

  .slider-wrapper-vid .slide-pair {
    grid-auto-columns: 100% !important;
  }

  .hero-title h1 {
    font-size: 35px !important;
  }

  .project-info {
    text-align: left;

  }

  .project-title,
  .project-tags,
  .project-desc {
    text-align: left;
  }

  .project-tags span {
    font-size: 13px !important;
    margin-right: 3px !important;
  }

  .project-desc {
    font-size: 16px !important;
  }

  .view-project {
    font-size: 13px !important;
  }

  .project-title {
    font-size: 44px;
  }

  .portfolio-grid {
    margin-bottom: 2rem !important;
  }

  .category {
    margin-bottom: 0.3rem;
  }

}



.footer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.visible {
  opacity: 1;
  transform: translateY(0);
}


/* أنيميشن الـ Gallery في الـ Footer */
.gallery-col img {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
}

.gallery-col img.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-col img:nth-child(1).visible {
  transition-delay: 0.1s;
}

.gallery-col img:nth-child(2).visible {
  transition-delay: 0.2s;
}

.gallery-col img:nth-child(3).visible {
  transition-delay: 0.3s;
}

.gallery-col img:nth-child(4).visible {
  transition-delay: 0.4s;
}




.work-section .form-label {
  font-family: 'Wix Madefor Text', sans-serif;
  margin-bottom: 0;
}

.work-section .content p,
.work-section .content h2 {
  margin-bottom: 0;
}

/* أنيميشن متدرج لكل عنصر في الفورم */


/*************************** servises page style ***************************/

.hero_serv {
  position: relative;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}



/* حاوية الصورة + النص */
.content_serv {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* الصورة (الشعار) */
.servicepic {
  width: 350px;
  height: 450px;
  display: block;
  margin: 1rem auto;
}

/* النص فوق الصورة */
.title_serv {

  color: black;
  font-size: 4.4rem;
  font-weight: 350;
  font-family: 'Kepler Std', serif;
  text-transform: uppercase;

  z-index: 3;
  white-space: nowrap;
  pointer-events: none;
}

/* --- باقي الأقسام --- */
.services {
  padding: 40px 20px;

  background-color: #F2EFEF;
  text-align: center;
}

.services-list {
  display: flex;
  justify-content: center;

  flex-wrap: wrap;
  font-size: 1.2rem;
  color: #555;
}

.services-list a {
  text-decoration: none;
  color: inherit;
  font-weight: 400;
  font-size: 1.7rem;
  font-family: 'Kepler Std', serif;
  transition: color 0.3s ease;
  display: inline-block;
  min-width: 200px;
  /* غيّر القيمة حسب أطوال الكلمات */
  text-align: center;
}

.services-list a:hover {
  color: #000;
  font-style: italic;
  text-shadow: 0.02em 0 0 currentColor;
}

.about-section {

  padding: 110px 20px;
  background-color: white;
  text-align: center;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.9rem;
  font-weight: 300;
  font-family: 'Kepler Std', serif;
  margin-bottom: 22px;
  color: #222;
  font-style: italic;
}

.about-content p {
  font-size: 1.05rem;
  font-weight: 300;
  width: 100%;
  font-family: 'Kepler Std', serif;
  line-height: 1.45;
  color: #101010;
  margin-bottom: 35px;
  padding: 0px 10px 0px 10px;
}



.container-services {
  width: 85%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;

  gap: 80px;
  align-items: flex-start;

}

.section-1 {
  padding: 5% 5%;
  background-color: #F2EFEF;
}

.section-2 {
  padding: 5% 5%;
}

.section-1,
.section-2 {


  scroll-margin-top: 100px;

}

.btn-outline-dark {
  margin-top: 1rem !important;
  width: fit-content;

}

/* ====================== الجزء الأول (فوق) – معكوس ====================== */


.text-1 {
  display: flex;
  flex-direction: column;


  order: 2;
  /* النص يمين */
}

.img-1 {
  height: 750px;

  width: 100%;
  margin-right: auto;

}

.main-title {
  font-size: 3.1rem;
  font-weight: 400;
  font-family: 'Kepler Std', serif;
  color: #1a1a1a;
  letter-spacing: -0.5px;

}

.subtitle {
  font-size: 1.4rem;
  font-family: 'Kepler Std', serif;
  color: #1a1a1a;
  font-weight: 200;
  margin: 0px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2rem;
}

.list-item {
  margin-bottom: 10px;
  /* مسافة معقولة بين العناصر */
}


.list-title-main {
  font-weight: 500;
  font-family: 'Brandon', 'Cairo', Arial, sans-serif;
  color: #1a1a1a;
  font-size: 1.28rem;
  margin-bottom: 3px;
}

.list-title {
  font-family: 'Brandon', 'Cairo', Arial, sans-serif;
  color: #1a1a1a;
  font-style: italic;
  font-size: 1.08rem;
  margin-bottom: 2px;
  font-weight: 450;
}

.list-desc {
  font-family: 'Brandon', 'Cairo', Arial, sans-serif;
  color: #555;
  font-size: 1.0rem;
  line-height: 1.55;
}



/* ====================== الجزء الثاني (تحت) – عادي ====================== */



.text-2 {
  display: flex;
  flex-direction: column;

}

.main-title2 {
  font-size: 3.1rem;
  font-weight: 400;
  font-family: 'Kepler Std', serif;
  color: #1a1a1a;
  letter-spacing: -0.5px;

}

.subtitle2 {
  font-size: 1.45rem;
  font-family: 'Kepler Std', serif;
  color: #1a1a1a;
  font-weight: 200;
  margin: 0px;
}

.list2 {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2rem;
}

.list-item2 {
  margin-bottom: 10px;
  /* مسافة معقولة بين العناصر */
}


.list-title-main2 {
  font-weight: 500;
  font-family: 'Brandon', 'Cairo', Arial, sans-serif;
  color: #1a1a1a;
  font-size: 1.28rem;
  margin-bottom: 3px;
}

.list-title2 {
  font-family: 'Brandon', 'Cairo', Arial, sans-serif;
  color: #1a1a1a;
  font-style: italic;
  font-size: 1.08rem;
  margin-bottom: 3px;
  font-weight: 450;
}

.list-desc2 {
  font-family: 'Brandon', 'Cairo', Arial, sans-serif;
  color: #555;
  font-size: 1.0rem;
  line-height: 1.55;
}

.img-2 {
  height: 750px;

  width: 100%;
  margin-left: auto;
}


/* ====================== RESPONSIVE ====================== */

@media (max-width: 768px) {
  .title_serv {
    font-size: 2.9rem;
    letter-spacing: 0.1em;
  }

  .servicepic {
    width: 300px;
    height: 350px;
  }
}




.text-1,
.text-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 0;

}



/* ترتيب أول سكشن */
.text-1 {
  order: 2;
}

.img-1 {
  order: 1;
}

.img-1 picture,
.img-2 picture {
  display: block;
  width: 100%;
  height: 100%;
}

.img-1 img,
.img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ترتيب تاني سكشن */
.text-2 {
  order: 1;
}

.img-2 {
  order: 2;
}

/* ==================== تابلت ==================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .project {
    padding: 120px 50px;
  }

  /* ضبط التخطيط */
  .container-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* خليها متساوية أفضل للتناسق */
    align-items: center;
    gap: 60px;

    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 5% 5%;

  }

  /* النص */
  .text-1,
  .text-2 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 1rem;
  }

  .main-title,
  .main-title2 {
    font-size: 2rem;
  }

  .subtitle,
  .subtitle2 {
    font-size: 0.9rem;
  }

  /* الصورة */
  .img-1,
  .img-2 {
    width: 100%;
    /* ما تستخدمش 85% هنا */
    height: 800px;
    background-size: cover;
    background-position: center;

  }


  /* تحسين التناسق العام */
  .list,
  .list2 {
    margin-top: 1rem;
  }


  .list-title-main2,
  .list-title-main {

    font-size: 1.28rem;
    margin-bottom: 2px;
  }

  .list-title2,
  .list-title {

    font-size: 1.0rem;
    margin-bottom: 2px;
    font-weight: 450;
  }

  .list-desc2,
  .list-desc {

    font-size: 0.9rem;
    line-height: 1.55;
  }

  .btn-outline-dark {
    margin-top: 2rem !important;
    width: fit-content;

  }

}



/* ==================== موبايل ==================== */
@media (max-width: 767px) {
  .container-services {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 10% 3%;
  }

  /* الصورة فوق النص */
  .img-1,
  .img-2 {
    order: -1;
    width: 100%;

    height: 100%;
  }

  .img-1 img,
  .img-2 img {
    width: 100%;
  }




  .text-1,
  .text-2 {
    width: 100%;

  }

  .main-title,
  .main-title2 {
    font-size: 2.2rem;
  }

  .subtitle,
  .subtitle2 {
    font-size: 1.1rem;
  }

  .list,
  .list2 {
    margin-top: 2rem;
  }

  .btn-outline-dark {
    margin-top: 2rem;
    width: fit-content;
    margin: 0 auto;

  }
}





.hero_brand {

  align-items: center;
  padding: 200px 100px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 100px;
}


.hero-title {
  font-size: 75px;

  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'Kepler Std', serif;
}




/*************************** every service  style ***************************/
#videoLightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

#videoLightbox.active {
  opacity: 1;
  visibility: visible;
}

.lb-video-container {
  max-width: 340px;
  position: relative;
}

.lb-video {
  width: 100%;
  border-radius: 16px;
}

#videoLightbox button {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.lb-close {
  top: 20px;
  right: 20px;
  font-size: 50px;
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#myLightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

#myLightbox.active {
  opacity: 1;
  visibility: visible;
}

#myLightbox img {
  max-width: 100%;
  max-height: 95vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  padding: 1rem;
}

#myLightbox button {
  position: absolute;
  background: rgb(16 16 16 / 20%);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

#myLightbox .lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 40px;
}

#myLightbox .lightbox-prev {
  left: 20px;
}

#myLightbox .lightbox-next {
  right: 20px;
}

.hero-title {

  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title h1 {
  color: #000;
  font-size: 76px;
  font-weight: 350;
  line-height: 1.05;
  letter-spacing: 1px;

}


.portfolio {
  max-width: 1800px;
  margin: 0 auto;
}

.project {
  padding: 120px 100px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 120px;

}

.proj-odd {
  background-color: #F2EFEF;
}

.project-info {
  flex: 0 0 470px;
  top: 140px;
  margin: auto 0;
}

.project-title {

  font-size: 60px;
  line-height: 1;
  margin-bottom: 10px;

  font-family: 'Kepler Std', serif;
}


.project-tags span {
  position: relative;
  margin-right: 10px;
  font-size: 15px;
  color: #000;
  letter-spacing: 1.5px;

}



.project-tags {
  font-size: 18px;
  color: #000;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.project-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 40px;
}

.project-actions {
  display: flex;

  gap: 40px;
}

.view-project {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a7a7a7;
  text-decoration: none;
  transition: all 0.4s;
}

.view-project:hover {
  letter-spacing: 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  color: #000;
}


.view-project1 {
  font-family: 'Wix Madefor Text', sans-serif !important;
  font-size: 15px;

  letter-spacing: 2px;
  color: #a7a7a7;
  text-decoration: none;
  align-items: center;
  pointer-events: auto;
  z-index: 10;
  transition: all 0.4s ease;
  position: relative;
}

.view-project1 span {
  font-family: 'Wix Madefor Text', sans-serif !important;
  font-size: 15px;

  letter-spacing: 2px;
  color: #a7a7a7;
  transition: all 0.4s ease;
}

/* تأثير الـ Hover */
.view-project1:hover {

  color: #000;
  padding-bottom: 8px;
}

.view-project1:hover span {
  color: #000;

}

/* الخط الأسفل عند الـ Hover */
.view-project1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.4s ease;
}

.view-project1:hover::after {
  width: 100%;
}

/* حركة السهم */
.arrow {
  font-size: 16px;
  font-weight: bold;
  transition: all 0.4s ease;
  opacity: 0.7;
}

.view-project1:hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 48px;
  height: 46px;
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
}

.slider-btn:hover {
  transform: scale(1.1);
}

.images-slider {
  overflow: hidden;
  border-radius: 16px;
  height: auto;

}

.vid-slider {
  overflow: hidden;
  border-radius: 16px;

}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.slider-wrapper-vid {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide-pair {
  min-width: 100%;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 48%;
  /* افتراضي: صورتين جنب بعض */
  width: 100%;
}

.slide-pair img {
  width: 100%;
  height: 100%;

  transition: transform 0.8s ease;
}

.slide-pair img:hover {
  transform: translateY(-16px);
}

.slide-pair video {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.8s ease;
  height: 90%;
}


.video-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: -1;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}

.video-title {
  font-family: 'Kepler Std', serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.4s ease forwards 0.6s;
}

.video-subtitle {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 1s;
}



.vid-button:hover {
  gap: 24px;
  letter-spacing: 3px;
  background: rgba(0, 0, 0, 0.8);
}

.vid-button {
  font-size: 28px;
  transition: transform 0.4s ease;

}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vid-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  padding: 16px 50px;
  border: 2px solid #fff;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  text-transform: uppercase;
  animation: fadeUp 1.2s ease forwards 1.4s;
}


@media (max-width: 992px) {
  .hero_brand {
    flex-direction: column;
    padding: 80px 40px;
    text-align: center;
    gap: 50px;
  }

  .hero-title {
    font-size: 42px;
  }

}

@media (max-width: 768px) {
  .hero_brand {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .project {
    grid-template-columns: 1fr;
  }

  .scroll-down {
    float: none;
    margin-top: 15px;
  }


  .video-title {
    font-size: 32px;
  }

  .video-subtitle {
    font-size: 18px;
  }

  .video-cta {
    font-size: 15px;
  }
}


@media (max-width: 1200px) {
  .project {
    flex-direction: column;
    gap: 60px;
  }

  .project-info {
    position: static;

  }

  .project-actions {
    justify-content: center;
  }

}

@media (max-width: 768px) {
  .project {
    padding: 60px 40px;
    gap: 20px;
  }

  .hero-title h1 {
    font-size: 42px;
  }

  .project-title {
    font-size: 46px;
  }

}



/*************************** contact us  style ***************************/



.contact-section {
  padding: 100px 0;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.5fr 4fr;
  width: 100%;

  align-items: start;
}

.section-title {
  font-size: 72px;
  font-weight: 400;
  line-height: 0.9;
  color: #111827;
  font-family: 'Kepler Std', serif;
  font-style: normal;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.contact-details p {
  font-size: 16px;
  color: #111827;
  margin-bottom: 0;
  font-weight: 500;
  font-family: 'Kepler Std', serif;
}



.social-icons {
  display: flex;
  gap: 5px;
  margin: 15px 0;
}

.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  color: #9ca3af;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(236, 72, 153, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: #3b82f6;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.social-icon:hover::before {
  opacity: 1;
}

/* Social Media Colors */
.social-icon.whatsapp:hover {
  color: #25D366;
  border-color: #25D366;
}

.social-icon.instagram:hover {
  color: #E4405F;
  border-color: #E4405F;
}

.social-icon.x:hover {
  color: #000000;
  border-color: #000000;
}

.social-icon.linkedin:hover {
  color: #0077B5;
  border-color: #0077B5;
}



.contact-details p:last-child {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-top: 8px;
}

/* Contact Form */
.contact-form {
  background: transparent;
  width: 100%;
  padding-top: 5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 24px;
  border: 1px solid #111827;

  font-size: 16px;
  font-family: inherit;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  color: #374151;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  float: right;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-outline-dark {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}


.submit-btn:hover,
.btn-outline-dark:hover {
  background: #030712;
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-outline-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-outline-dark:hover::before {
  left: 100%;
}


.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}



.form-success {

  background: #10b981;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;

  transition: all 0.3s ease;
}

.form-success.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* Hero */
.hero-about {
  display: flex;
  align-items: center;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 100px;
}

.hero-about-img img {
  width: 100%;
  max-width: 500px;
  filter: grayscale(100%) brightness(0.9);
  border-radius: 8px;
}

.about-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  color: #000000;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Wix Madefor Text', sans-serif;
}

.hero-about-title {
  font-size: 35px;
  color: #000000;
  line-height: 1.2;

  font-family: 'Kepler Std', serif;
}

.hero-about-title2 {
  font-size: 30px;
  color: #000000;

  margin-bottom: 30px;
  font-style: italic;
  font-family: 'Kepler Std', serif;
}

.hero-about-desc {
  font-size: 18px;
  color: #000000;
  max-width: 680px;
  line-height: 1.7;
  font-family: 'Kepler Std', serif;

}






/* ===== Responsive بتاع الـ Hero ===== */


.why-choose {
  background: #F2EFEF;
  padding: 50px 100px;
  text-align: center;
  scroll-margin-top: 100px;
}

.section-title {
  font-size: 55px;
  color: #000000;
  margin: 0;
  line-height: 0.8;

  font-family: 'Kepler Std', serif;
}

.section-title1 {
  font-size: 60px;
  color: #000000;

  font-family: 'Kepler Std', serif;
}

.features {
  max-width: 900px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.feature {
  text-align: center;

}

.feature h3 {
  font-size: 40px;
  color: #000000;
  font-weight: 300;
  margin-bottom: 15px;
  font-style: italic;
  font-family: 'Kepler Std', serif;
}


.feature p {
  font-size: 20px;
  color: #000000;
  font-weight: 300;
  max-width: 755px;
  margin: 0 auto 25px;
  font-style: italic;
  font-family: 'Kepler Std', serif;
}

.feature-divider {
  width: 200px;
  margin: 0 auto;
  border-top: 1px solid #707070;
  background: none;
}

.feature-divider-header {
  width: 300px;
  height: 1px;
  background: #707070;
  margin: 0 auto 80px;
}

@media (max-width: 1200px) {
  .hero-about-title2 {
    font-size: 25px;
  }

  .hero-about-title1 {
    font-size: 30px;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-about-title2 {
    font-size: 28px;
  }

  .hero-about {
    align-items: center;
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
  }

  .hero-about-img,
  .hero-content {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .hero-about {
    display: block;
    align-items: center;
    text-align: center;
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 100px;
  }

  .why-choose {

    padding: 100px 30px;
    text-align: center;

  }

  .hero-content {
    text-align: center;
    margin-top: 3rem;
  }

  .scroll-down {
    float: none !important;
  }

  .hero-about-title {
    font-size: 28px;
    text-align: left;
  }

  .hero-about-title2 {
    font-size: 23px;
    text-align: left;
  }

  .hero-about-desc {
    font-size: 16px;
    text-align: left;
  }

  .section-title {
    font-size: 40px;
  }

  .section-title1 {
    font-size: 45px;
  }

  .feature h3 {
    font-size: 29px;
    text-align: left
  }

  .about-subtitle {
    text-align: left;
  }

  .feature p {
    font-size: 15px;
    text-align: left
  }

  .work-section .container .content p {
    width: 100%;
  }

  .work-section .container .content form {
    text-align: left;
  }

  .mt-11 {
    margin-top: 7rem;
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;

    align-items: start;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-info .section-title {
    margin-bottom: 2rem;
  }

  .services {
    padding: 10px 0;
  }

  .services-list {
    gap: 10px 0px;
  }
}

.contact-info .section-title {
  margin-bottom: 1rem;
}



@media (max-width: 480px) {
  .title_serv {
    font-size: 2rem;
    letter-spacing: 0.06em;
  }

  .brand-desc {
    padding: 1rem;
  }

  .tags {
    font-size: 13px !important;
  }

  .servicepic {
    width: 250px;
    height: 300px;
  }

  .list-title-main2,
  .list-title-main {

    font-size: 1.2rem;
    margin-bottom: 2px;
  }

  .list-title2,
  .list-title {

    font-size: 1.0rem;
    margin-bottom: 2px;
    font-weight: 450;
  }

  .list-desc2,
  .list-desc {

    font-size: 0.8rem;
    line-height: 1.55;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 0.9rem;
    text-align: justify;
  }

  .services-list a {
    font-size: 1.2rem;
  }

  .why-section .content-wrapper {

    padding: 1.5rem 0rem;

  }

  .image-wrapper img,
  .image-wrapper1 img {
    height: 400px !important;
  }

  .contact-content {
    padding: 0rem 1rem;
  }
}


/* Grid */
.portfolio-grid {
  width: 75%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 170px;
  margin-top: 10rem;
  margin-bottom: 10rem;
}

/* Offset effect */
.item:nth-child(odd) img {
  margin-top: 10rem;
}

.item {
  position: relative;
}

/* Card */
.item img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.category {
  margin-top: 20px;
  font-size: 16px;
  color: #777;
  margin: 1.5rem 0rem 0rem 0rem;
  font-family: 'Kepler Std', serif;
  font-style: italic;
}

.category span {
  padding-right: 1rem;
}

.title {
  font-size: 24px;
  font-weight: 400;
  margin-top: 0.5rem;
  font-family: 'Kepler Std', serif;
}

.view-project1 {
  font-size: 16px;
  margin-top: 0.7rem;
}

.content-item {
  position: absolute;
  width: 100%;
}

.proj-det {
  display: flex;
  width: 80%;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .content-item {
    position: relative;
  }

  .item {
    margin-bottom: 4rem;
  }

  .item:nth-child(odd) img {
    margin-top: 0rem;
  }

  .title {
    font-size: 19px;
    font-weight: 400;
    margin-top: 0.5rem;
  }

  .category {
    margin-top: 20px;
    font-size: 14px;
  }

  .view-project1 {
    margin-top: 0.5rem;
    font-size: 15px;
  }

  .proj-det {
    width: 100%;
  }
}


.work-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 2rem;
}

.work-left img,
.work-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.work-left img {
  margin-top: 10rem;
}

.work-center {
  text-align: center;
  padding: 0 30px;
  margin: auto;
}

.work-center h1 {
  font-size: 40px;
  font-style: italic;
  margin: 0;
  font-family: 'Kepler Std', serif;
}

.work-center p {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 15px;
  color: #555;
  font-family: 'Kepler Std', serif;
  font-style: italic;
}

.arrow {
  margin-top: 25px;
  font-size: 26px;
  color: #222;
}

@media (max-width: 768px) {
  .work-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 70vh;
    background-image: url('../Images/portfolio/ourwork.png');
    /* الصورة الأولى */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
  }

  /* إخفاء الصور في الموبايل */
  .work-left,
  .work-right {
    display: none !important;
  }

  /* overlay أسود عشان النص يبان */
  .work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* طبقة سوداء شفافة */
    z-index: 1;
  }

  .work-center {
    grid-row: 2;
    padding: 0 20px;
    background: transparent;
    z-index: 2;
  }



  .work-center h1 {
    font-size: 32px;
    line-height: 1.2;
    color: white;
  }

  .work-center p {
    font-size: 16px;
    color: white;
  }

  .scroll-down {
    margin-top: 40px;
  }

  .scroll-down img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    /* تفتيح لون السهم */
  }
}

/* تحسينات إضافية للموبايل الصغير */
@media (max-width: 480px) {
  .work-hero {
    background-attachment: scroll;
    /* للموبايل القديم */
  }

  .work-center h1 {
    font-size: 28px;
    color: white;
  }

  .work-center p {
    color: white;
    font-size: 14px;
  }
}

/* تأثير parallax للديسكتوب */
@media (min-width: 769px) {
  .work-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
  }
}

.speed-dial {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.speed-dial [data-direction="top"] {
  position: absolute;
  bottom: 70px;
  /* يطلع فوق الزر */
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .3s ease;
}


.speed-dial.open [data-direction="top"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.speed-dial__button-root {
  transition: transform .3s ease;
}

/* لما تفتح */
.speed-dial.open .speed-dial__button-root {
  transform: rotate(-90deg);
}

.speed-dial .speed-dial__button--small {
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 10px -1px #00000380;
}

.speed-dial button {
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
}


/* أيقونة الرسائل */
.root-icon {
  display: block;
}

/* أيقونة الإغلاق */
.close {
  display: none;
}

.speed-dial.open .root-icon {
  display: none;
}

.speed-dial.open .close {
  display: block;
}

.hero_serv_portfolio {
  position: relative;
  height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero_serv_portfolio {
    height: 400px;
  }
}




.content_serv_portfolio {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100%;
  width: 100%;
}

.content_serv_portfolio picture,
.content_serv_portfolio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.web-section {
  height: 1200px;
  padding: 100px 0;
}

.web {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
  gap: 50px 0;
}

.slide-project {
  height: 800px;
  width: 400px;
  background: url('assets/Images/projects/screencapture-sorateaandcoffee-about-us-3-2025-12-06-16_22_42.png') center/cover no-repeat;
}

.content_portfolio {
  text-align: center;
  padding: 100px 0;
}

.content-project {
  text-align: center;
}

.brand-logo1 {
  margin: auto;
}

.brand-title {
  font-size: 32px;
  margin: 10px 0;
}

.brand-desc {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 20px;
  font-family: 'Kepler Std', serif;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 20px;
  margin-top: 2rem;
  font-family: 'Kepler Std', serif;
  font-style: italic;
}


.carousel-container {
  width: 100%;
  max-width: 1400px;
  height: 500px;
  position: relative;
  perspective: 2000px;
  margin-top: 60px;
  z-index: 2;
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.card {
  position: absolute;
  width: 300px;
  height: 420px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  cursor: pointer;
  will-change: transform, opacity;
  transform-origin: center;
  backdrop-filter: blur(10px);
  border-radius: 0 !important;
}


.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  filter: brightness(0.8);
  border-radius: 0 !important;
}

.slidersocial {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding: 60px 20px;
}

.slidervideo {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding: 60px 0px;
}

/* Card positions */
.card.center {
  z-index: 10;
  transform: scale(1.15) translateZ(0);

}

.card.center .card-img {
  filter: brightness(1);
}

.card.left-2 {
  z-index: 1;
  transform: translateX(-400px) scale(0.8) translateZ(-200px) rotateY(15deg);
  opacity: 0.2;
}

.card.left-1 {
  z-index: 5;
  transform: translateX(-350px) scale(0.95) translateZ(-50px) rotateY(8deg);
  opacity: 0.9;
}

.card.right-1 {
  z-index: 5;
  transform: translateX(350px) scale(0.95) translateZ(-50px) rotateY(-8deg);
  opacity: 0.9;
}

.card.right-2 {
  z-index: 1;
  transform: translateX(400px) scale(0.8) translateZ(-200px) rotateY(-15deg);
  opacity: 0.2;
}

.card.hidden {
  opacity: 0;
  pointer-events: none;
}



/* Animation classes */
.member-info.animate-out .member-info-content>* {
  opacity: 0;
  transform: translateY(20px);
}

.member-info.animate-in .member-info-content>* {
  opacity: 1;
  transform: translateY(0);
}

/* Dots navigation */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.dot::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid rgba(251, 113, 133, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dot:hover::after {
  opacity: 1;
}

.dot.active {
  background: linear-gradient(135deg, #131417 0%, #2a142e 100%);
  transform: scale(1.3);

}

.brand-logo1 {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* Navigation arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  font-size: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  outline: none;
  backdrop-filter: blur(5px);
}

.nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
  left: 20px;
}

.nav-arrow.right {
  right: 20px;
}



@keyframes float1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-30px, -30px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(30px, -20px) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) rotate(-360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-title {
    font-size: 4rem;
  }

  .card {
    width: 240px;
    height: 360px;
  }

  .card.left-2 {
    transform: translateX(-300px) scale(0.8) translateZ(-200px) rotateY(15deg);
  }

  .card.left-1 {
    transform: translateX(-280px) scale(0.95) translateZ(-50px) rotateY(8deg);
  }

  .card.right-1 {
    transform: translateX(280px) scale(0.95) translateZ(-50px) rotateY(-8deg);
  }

  .card.right-2 {
    transform: translateX(300px) scale(0.8) translateZ(-200px) rotateY(-15deg);
  }
}

@media (max-width: 768px) {


  .about-title {
    font-size: 3rem;
    top: 30px;
  }

  .carousel-container {
    height: 400px;
  }

  .card {
    width: 200px;
    height: 300px;
  }

  .card.left-2 {
    transform: translateX(-220px) scale(0.8) translateZ(-200px) rotateY(15deg);
  }

  .card.left-1 {
    transform: translateX(-220px) scale(0.95) translateZ(-50px) rotateY(8deg);
  }

  .card.right-1 {
    transform: translateX(220px) scale(0.95) translateZ(-50px) rotateY(-8deg);
  }

  .card.right-2 {
    transform: translateX(220px) scale(0.8) translateZ(-200px) rotateY(-15deg);
  }

  .member-name {
    font-size: 1.8rem;
  }

  .member-name::before,
  .member-name::after {
    width: 40px;
  }

  .member-name::before {
    left: -50px;
  }

  .member-name::after {
    right: -50px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 2.2rem;
  }

  .carousel-container {
    height: 350px;
  }

  .card {
    width: 160px;
    height: 240px;
  }

  .card.left-2,
  .card.right-2 {
    display: none;
  }

  .card.left-1 {
    transform: translateX(-90px) scale(0.9) translateZ(-50px) rotateY(8deg);
  }

  .card.right-1 {
    transform: translateX(90px) scale(0.9) translateZ(-50px) rotateY(-8deg);
  }

  .member-name {
    font-size: 1.5rem;
  }

  .member-name::before,
  .member-name::after {
    display: none;
  }

  .member-role {
    font-size: 0.9rem;
  }

  .dots {
    margin-top: 40px;
  }
}

.slides-wrapper {
  height: fit-content;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin: 60px auto;
}

.slide-box {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  touch-action: pan-y;
}



.slide-box .box-content {
  height: max(35vh, 500px);
  aspect-ratio: 2.5 / 4;
  border: 2px solid var(--muted);
  display: grid;
  place-items: center;
  touch-action: pan-y;
}

.slide-box .box-content video {
  width: 100%;
  height: 100%;
}




.instruction {
  padding: 2rem 0;
  color: var(--muted-foreground);
}

.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.video-overlay video {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.8);
}

.gallery-section {
  padding: 60px 30px;
  background: #f8fbff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.gallery-section h2 {
  font-size: 2.8em;
  margin-bottom: 60px;
  color: #333;
}

.images-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1400px;
  margin: 60px auto;
}

.image-card {
  flex: 1;
  min-width: 320px;
  max-width: 430px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-card:hover {
  transform: translateY(-15px);
}

.image-card:hover img {
  transform: scale(1.08);
}

.cta-button {
  display: inline-block;
  margin-top: 80px;
  padding: 10px 25px;
  background: transparent;
  color: black;
  font-size: 1.2em;
  border: solid 1px #000;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  background: #000;
  color: white;

}

/* للموبايل */
@media (max-width: 768px) {
  .gallery-section h2 {
    font-size: 2.2em;
  }

  .cta-button {
    font-size: 1em;
    padding: 7px 25px;
  }
}

.content-project .brand-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.content-project .brand-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: translateX(-50%);
  border-radius: 2px;
}


.branding-logo-container {
  text-align: center;
  margin-bottom: 100px;
}

.branding-logo {
  width: 400px;
  height: auto;
}

.branding-image-container {
  text-align: center;
  margin-top: 2rem
}

.branding-image-container h2 {
  font-style: italic;
}

.branding-image {
  width: 600px;
  margin-top: 1rem;
  height: auto;

  transition: transform 0.3s;
}

.branding-image:hover {
  transform: scale(1.05);
}

#branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding: 60px 20px;
}

.hamsat_portfol {
  display: flex;
  flex-direction: column;
  align-items: center;

  overflow-x: hidden;
  background-color: #f2f0f0;
  padding: 6rem 0rem;
  height: 1100px
}

.hamsat_portfol>.mockups-container {

  margin-top: 3rem
}

.mockups-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.group {
  display: flex;
  justify-content: center;
  gap: 100px;
  /* المسافة بين الصورتين في المجموعة */
}

.mockup {
  width: 380px;
  transition: transform 0.3s;
}

.mockup img {
  width: 100%;
  display: block;
}

.mockup.right-first {
  margin-top: -200px;
  /* الصورة اليمنى أعلى */
}

.mockup.right-last {
  margin-top: -300px;
  /* الصورة اليمنى أعلى */
}

.mockup.left {
  margin-top: 100px;
  /* الصورة اليمنى أعلى */
}

.mockup.last {
  margin-top: -150px
}

.mockup:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .mockup {
    width: auto;
    transition: transform 0.3s;
    padding: 2rem;
  }

  .group {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .group {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  #branding2 {
    padding: 3rem 0rem 4rem 0rem !important;
  }

  .mockup.right-first {
    margin-top: 0px;
  }

  .mockup {
    width: auto;
    transition: transform 0.3s;
    padding: 2rem;
  }

  .mockup.right,
  .mockup.left,
  .mockup.right-last {
    margin-top: 0;
  }

  .hamsat_portfol {
    height: auto
  }
}

.video-hero.home .video-bg {
  opacity: 0.8;
}


.how-we-work .container picture {
  margin: auto;
}

.video-hero.home .btn-outline-dark {
  border-color: white;
}

.card picture {
  height: 100%
}

.slide-pair picture {
  height: 100%
}

.scrollDown.about {
  text-align: end;
}

.scrollDown.about {
  text-align: end;
}

.hero-cards {
  transform-origin: 50% 100%;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-card {
  z-index: 2;
  border-radius: var(--border-radius);
  object-position: 50% 50%;
  min-width: 18rem;
  max-width: 18rem;
  min-height: 24rem;
  max-height: 24rem;
  box-shadow: -1rem 1rem 2rem #0000000f;
}

.hero-card-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-card-wrapper._01 {
  z-index: var(--hero-z-index-01);
  transform-origin: 50% 100%;
  transform: rotate(-128deg);
}

.hero-card-wrapper._02 {
  z-index: var(--hero-z-index-01);
  transform-origin: 50% 100%;
  transform: rotate(-96deg);
}

.hero-card-wrapper._03 {
  z-index: var(--hero-z-index-02);
  transform-origin: 50% 100%;
  transform: rotate(-64deg);
}

.hero-card-wrapper._04 {
  z-index: 0;
  transform-origin: 50% 100%;
  transform: rotate(-32deg);
}

.hero-card-wrapper._05 {
  z-index: 0;
  transform-origin: 50% 100%;
  transform: rotate(0);
}

.hero-card-wrapper._06 {
  z-index: 0;
  transform-origin: 50% 100%;
  transform: rotate(32deg);
}

.hero-card-wrapper._07 {
  z-index: 0;
  transform-origin: 50% 100%;
  transform: rotate(64deg);
}

.hero-card-wrapper._08 {
  z-index: 0;
  transform-origin: 50% 100%;
  transform: rotate(96deg);
}

.hero-card-wrapper._09 {
  z-index: 0;
  transform-origin: 50% 100%;
  transform: rotate(128deg);
}

.hero-cards-wrapper {
  transform: scale(.9);
}

.hero-cards-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;

  left: 0%;
  right: 0%;
}

.hero-section {
  background-color: var(--light-gray);
  width: 100%;
  position: relative;
}

.hero-section.background-white {
  background-color: var(--white);
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

.container-full {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.container-full.padding-72px {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.container-full.padding-72px.overflow {
  overflow: visible;
}

.container-full.padding-144px {
  padding-left: 9rem;
  padding-right: 9rem;
}

.container-full.padding-216px {
  padding-left: 13.5rem;
  padding-right: 13.5rem;
}

.container-full.overflow {
  overflow: visible;
}


.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.hero-wrapper {
  flex-flow: column;
  grid-template-rows: minmax(10%, 10%);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(10%, 10%);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: flex-start;
  place-items: center;
  width: 100%;
  height: 90vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-subtitle {
  color: var(--white);
  mix-blend-mode: exclusion;
  position: absolute;
  top: 1rem;
  z-index: 12
}

.hero-title-wrapper {
  text-align: center;
  color: black;

}

/* ====================================
   Services Section Styles (Extracted from Webflow.css)
   ==================================== */

.container-full {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.padding-72px {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.overflow {
  overflow: visible;
}

.section {
  width: 100%;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.features-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.features-left {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  padding-top: 60vh;
}

.features-right {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-top: 110vh;
}

.features-images-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.services-item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  display: flex;
}

.service-item {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.features-tab-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: none;
}

.services-image {
  aspect-ratio: 2 / 3;
  border-radius: var(--border-radius);
  width: 100%;
  max-height: 67vh;
  position: absolute;
}

.services-title {
  text-transform: uppercase;
}

.space-text {
  min-height: 1.1vw;
}

.space-mid {
  min-height: 3.3vw;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.button-with-circle-icon {
  z-index: 9;
  grid-column-gap: 1rem;
  text-decoration: none;
  grid-row-gap: 1rem;
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  min-width: 12rem;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  letter-spacing: 0.025em;
}

.button-with-circle-icon:hover {
  background: #030712;
  color: var(--white);
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.button-with-circle-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.button-with-circle-icon:hover::before {
  left: 100%;
}


.button-arrow-wrapper {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-right: 0.5rem;
}

.arrow1 {
  object-fit: contain;
  height: 1rem;
  width: auto;
  position: relative;
  filter: invert(0);
  transition: all 0.3s ease;
  transform: rotate(270deg) !important;
}

.button-with-circle-icon:hover .arrow1 {
  filter: invert(1);
  transform: rotate(270deg) scale(1.1) !important;
}

.show-from-tab {
  display: none;
}





@media screen and (max-width: 991px) {





  .description-max-width {
    max-width: 36.25rem;
  }

  .utilities-row {
    width: 100%;
  }

  .utilities-wrapper-full {
    flex-direction: column;
    display: flex;
  }

  .gallery-image-wrapper {
    min-height: 25rem;
    max-height: 25rem;
  }

  .gallery-grid-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    margin-top: .5em;
    margin-bottom: .5em;
    padding-left: 0;
    padding-right: 0;
  }

  .utilities-wrapper {
    max-width: 42rem;
  }

  .paragraph-max-width {
    max-width: 26.25rem;
  }

  .trigger-animation {
    text-align: center;
  }




  .sg-outer-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .h1-utility {
    font-size: 4rem;
    line-height: 4rem;
  }

  .sg-left-top-wrapper {
    z-index: 5;
    width: 100%;
    min-height: auto;
    position: sticky;
    top: -8.125rem;
  }

  .sg-anchor-links-wrapper {
    z-index: 1;
    background-color: var(--dark-gray);
    flex-flow: wrap;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
    inset: 0 0% -9.375rem;
  }

  .blog-post-first-letter {
    font-size: 3rem;
    line-height: 3rem;
  }

  .return-to-top {
    width: 3.5rem;
    height: 3.5rem;
  }

  .utilities-title-wrapper,
  .utilities-rtb-wrapper {
    width: 90%;
  }

  .utilities-rich-text li {
    line-height: 2rem;
  }

  .utilities-rich-text h4 {
    font-size: 2rem;
    line-height: 3rem;
  }

  .row-utilities {
    width: 100%;
  }

  .instructions-wrapper {
    max-width: 35.4375rem;
  }

  .block-header,
  .block-content {
    padding: 1rem 2rem;
  }

  .services-card {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 8rem;
    max-height: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .text-field {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .contact-us-wrapper-half {
    width: 80%;
    max-width: 80%;
    padding-left: 0;
    padding-right: 0;
  }

  .select {
    padding-top: .625rem;
  }

  .contact-info {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .contact-us-form-wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .message-title-field-wrapper {
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .booking-text-field {
    padding: .5rem 1rem;
  }

  .contact-info-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-wrap: wrap;
    width: 60%;
  }

  .contact-us-wrapper {
    flex-direction: column;
  }

  .error-massage {
    width: 90%;
  }

  .contact-us-flex-container {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .contact-us-flex-block {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .text-area {
    padding: .5rem 1rem;
  }


  .faq-dropdown-title {
    text-align: left;
    max-width: 70%;
  }

  .faq-flex {
    grid-column-gap: 1.875rem;
    justify-content: space-between;
  }

  .faq-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 100%;
  }

  .faq-plus-icon {
    min-width: 2rem;
    max-width: 2rem;
    min-height: 2rem;
    max-height: 2rem;
  }

  .faq-numbers-back {
    margin-left: 0;
    font-size: 8.6875rem;
    display: none;
  }

  .side-bar-left {
    position: static;
  }

  .row-content {
    width: 100%;
  }

  .products-title {
    white-space: normal;
  }

  .page-grid {
    flex-direction: column;
    display: flex;
  }

  .fix-scroll-block {
    max-width: 36rem;
  }



  .service-flex {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .flex-wrapper {
    grid-column-gap: 8rem;
    grid-row-gap: 2rem;
    flex-wrap: wrap;
  }

  .select-field {
    min-width: 15.63rem;
    max-width: 15.63rem;
    min-height: 3.13rem;
    max-height: 3.13rem;
    font-size: 1rem;
  }


  .hero-title.smaller {
    font-size: 6rem;
    line-height: .88;
    bottom: auto;
  }

  .max-width-30vw {
    max-width: 22.5rem;
  }

  .hero-text {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 15rem;
  }

  .max-width-20vw {
    max-width: 17.5rem;
  }

  .hero-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    max-width: 100%;
    height: 100svh;
  }

  .mouse-wrapper {
    display: none;
  }

  .hero-subtitle {
    top: -1.5rem;
  }

  .hero-title-wrapper {
    justify-content: center;
    align-items: center;
    min-width: 100%;
    max-width: 43rem;
    top: 2rem;
  }

  .socials-absolute {
    grid-row-gap: 1rem;
    display: none;
    bottom: auto;
    left: auto;
  }

  .social-link-wrapper-small {
    min-width: 1rem;
    max-width: 1rem;
    min-height: 1rem;
    max-height: 1rem;
  }

  .about-logo {
    min-height: 1.5rem;
    max-height: 1.5rem;
  }

  .about-card-image {
    min-width: 24rem;
    max-width: 24rem;
  }





  .block-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .grid-6-columns {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-width: 90%;
    max-width: 90%;
  }

  .features-card {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-12-columns {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-width: 90%;
    max-width: 90%;
  }



  .cart-icon-light {
    font-size: .5rem;
    line-height: 1.5rem;
  }

  .rich-text h1 {
    font-size: 4rem;
    line-height: 5rem;
  }

  .rich-text h2 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .rich-text h3 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  .rich-text h4 {
    font-size: 2rem;
    line-height: 3rem;
  }

  .rich-text h5 {
    font-size: .8rem;
    line-height: 1.5rem;
  }

  .rich-text h6 {
    font-size: .7rem;
    line-height: 1.4rem;
  }

  .rich-text p {
    font-size: 1rem;
    line-height: 1.7rem;
  }

  .rich-text li {
    font-size: 1rem;
    line-height: 2rem;
  }

  .utilities-max-width {
    max-width: 27rem;
  }

  .features-description {
    max-width: 30rem;
  }

  .title-wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .title-wrapper.align-left,
  .title-wrapper.align-right {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .title-wrapper.gap-half {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .features-image-wrapper {
    min-width: 40rem;
    max-width: 40rem;
    min-height: 40rem;
    max-height: 40rem;
    margin-left: auto;
    margin-right: auto;
  }

  .subheading {
    padding: .5rem .75rem;
  }

  .flex-feature-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
  }

  .flex-feature-wrapper.reverse-on-tab {
    flex-flow: column-reverse;
  }

  .reviews-image-circle {
    width: 6rem;
    height: 6rem;
    left: 3rem;
  }

  .reviews-block {
    grid-row-gap: .5rem;
  }

  .slide-nav-reviews {
    display: none;
  }

  .quote-icon {
    min-height: 5rem;
    max-height: 5rem;
  }

  .reviews-card {
    width: 100%;
    min-width: 35rem;
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 3rem;
  }

  .reviews-listing-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    flex-direction: column;
  }

  .arrow {
    min-height: 1.5rem;
    max-height: 1.5rem;
    top: -.0625rem;
  }

  .button-arrow-wrapper {
    min-width: 3rem;
    max-width: 3rem;
    min-height: 3rem;
    max-height: 3rem;
    top: 2.75rem;
    left: 2.75rem;
  }

  .button-with-circle-icon {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-width: .06rem;
    border-radius: 8rem;
    min-width: 11rem;
    padding: .125rem 2rem .125rem .25rem;
  }

  .max-width-65vw {
    max-width: 100%;
  }

  .about-h5 {
    max-width: 23rem;
  }

  .centered-on-tab {
    text-align: center;
  }

  .image-full,
  .image-half {
    min-height: 45rem;
    max-height: 45rem;
  }

  .small-icon {
    min-width: 1rem;
    max-width: 1rem;
  }

  .about-card-image-left {
    min-width: 12rem;
    max-width: 12rem;
    left: 5%;
  }

  .about-card-image-right {
    min-width: 10rem;
    max-width: 10rem;
    right: 5%;
  }

  .max-width-45vw {
    max-width: 22.5rem;
  }

  .metrics-title-flex {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .padding-right-2rem {
    padding-right: 2rem;
  }

  .metrics-icon {
    min-width: 6rem;
    max-width: 6rem;
    min-height: 6rem;
    max-height: 6rem;
    left: auto;
  }

  .metrics-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .metrics-flex {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .image-icon {
    min-width: 3rem;
    max-width: 3rem;
    min-height: 3rem;
    max-height: 3rem;
  }

  .max-width-32vw {
    max-width: 22.5rem;
  }

  .footer-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    min-width: 100%;
    max-width: 100%;
  }

  .metrics-numbers {
    font-size: 10rem;
    line-height: 8rem;
  }

  .footer-h5 {
    position: static;
    top: -1rem;
    left: 0;
  }

  .image-thrids {
    object-position: 70% 50%;
    min-width: 100%;
    max-width: 100%;
    min-height: 50vh;
    max-height: 50vh;
  }

  .image-thrids.shift-right {
    object-position: 50% 42%;
  }

  .image-thrids.shift-left {
    object-position: 85% 58%;
  }

  .careers-flex-icon {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .careers-card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    width: 100%;
    padding: 2rem;
  }

  .careers-line {
    height: .1rem;
  }

  .gap-8px-row,
  .flex.gap-8px {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .careers-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .outline-button {
    letter-spacing: .0625rem;
    padding: .7rem 2rem;
  }

  .price-card-title {
    font-size: 3.5rem;
    line-height: 3rem;
  }

  .nav-tabs {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .pricing-flex {
    grid-column-gap: 2rem;
  }

  .pricing-grid-half {
    grid-column-gap: 1.5rem;
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .horizontal-line {
    height: .1rem;
  }

  .pricing-link.with-40 {
    width: 100%;
  }

  .price-flex-highlight {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: .5rem 1rem;
  }

  .price-card-title-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .price-card-big {
    padding: 2rem;
    display: flex;
  }

  .features-flex-wrapper {
    flex-flow: column;
  }

  .show-section {
    height: auto;
  }

  .hide-section-sticky {
    position: static;
  }

  .footer-title {
    font-size: 8rem;
    line-height: 6.3rem;
  }

  .features-images-wrapper {
    display: none;
  }

  .services-item {
    justify-content: center;
    align-items: flex-start;
    height: auto;
  }

  .features-right {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    padding-top: 0;
    display: flex;
  }

  .features-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .features-tab-image-wrapper {
    margin-bottom: 2rem;
    display: flex;
  }

  .services-image {
    min-height: 31.25rem;
    max-height: 31.25rem;
  }

  .features-tab-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius);
    object-position: 50% 15%;
  }

  .features-left {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    padding-top: 0;
    display: flex;
  }

  .team-social-flex-box {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    background-color: #fff3;
    width: 13.125rem;
    padding-top: .625rem;
    padding-bottom: .625rem;
    display: flex;
    inset: auto 0% 19%;
  }

  .team-image-wrapper {
    width: 100%;
    min-width: 20rem;
    max-width: 20rem;
    min-height: 20rem;
    max-height: 20rem;
  }

  .team-flex {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: wrap;
  }

  .team-image {
    min-width: 100%;
    max-width: 100%;
    min-height: 20rem;
    max-height: 20rem;
  }

  .team-name-card {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    width: 13.125rem;
    min-height: 4.375rem;
  }

  .team-name {
    font-size: 1rem;
    line-height: .9rem;
  }

  .features-image-small {
    min-width: 12rem;
    max-width: 12rem;
    min-height: 12rem;
    max-height: 12rem;
  }

  .image-trigger {
    min-height: 7rem;
  }

  .features-image-mid {
    min-width: 20rem;
    max-width: 20rem;
  }

  .image-flex-wrapper {
    height: 50vh;
  }

  .main-image-wrapper {
    width: 30vw;
    height: 50vh;
  }

  .flex-grid {
    grid-row-gap: 4rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 6rem;
    display: flex;
    position: static;
  }

  .text-left {
    flex: 0 auto;
    margin-left: 5%;
    margin-right: 5%;
    position: static;
  }

  .features-wrapper {
    height: auto;
  }

  .image-right {
    position: static;
  }

  .image-right-wrapper {
    flex: 0 auto;
    width: 100%;
    position: static;
  }

  .images-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .flex-images-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr .75fr;
  }

  .features-image-wide {
    min-width: 20rem;
    max-width: 20rem;
  }

  .feature-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .right-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 0;
    padding-left: 0;
  }

  .features-image-large {
    min-width: 21rem;
    max-width: 21rem;
    min-height: 21rem;
    max-height: 21rem;
  }

  .title-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .flex-left-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .images-flex {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .flex-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .align-left {
    justify-content: center;
    align-items: center;
  }

  .blog-flex {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    width: 600px;
  }

  .blog-image-wrapper {
    min-width: 100%;
    max-width: 100%;
  }

  .flex-info {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .small-line-divider {
    width: .1rem;
    height: 1.1rem;
  }

  .blog-title-huge {
    font-size: 6rem;
    line-height: 5rem;
  }







  .works-text-block {
    height: auto;
  }

  .works-icon-wrapper {
    min-width: 12vw;
    max-width: 12vw;
    min-height: 12vw;
    max-height: 12vw;
    display: none;
  }

  .works-flex {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-wrap: wrap;
    position: static;
  }

  .projects-title-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-project-title {
    white-space: normal;
    font-size: 3.5rem;
    line-height: 3rem;
  }

  .projects-description {
    max-width: 15rem;
  }

  .projects-details {
    min-width: 15rem;
    max-width: 15rem;
    padding-bottom: .5rem;
  }

  .image-single-wrapper {
    min-height: 25rem;
    max-height: 25rem;
  }

  .images-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .line-height-1rem {
    line-height: 1rem;
  }

  ._404-button {
    letter-spacing: .0625rem;
    padding: .7rem 2rem;
  }

  .hero-card {
    left: 5%;
  }

  .works-title {
    font-size: 4rem;
  }

  .service-title {
    font-size: 5rem;
  }

  .service-flex-wrapper {
    flex-wrap: wrap;
  }

  .service-text {
    text-align: left;
  }

  .image-parallax-wrapper {
    min-height: 70vh;
    max-height: 70vh;
  }

  .services-details {
    max-width: 600px;
  }

  .reviews-name {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
  }

  .show-from-tab {
    display: block;
  }

  .title-space {
    min-height: 4rem;
  }
}