@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');


:root {
  --primary-color: #000;
  --secondary-color: #bdbdbd;
}
 
 
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Firefox Scrollbar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #000 #f0f0f0;
}

/* Text Selection */
::selection {
  background: #aaa;
  color: #000;
}

::-moz-selection {
  background: var(--main-color);
  color: #fff;
}

body {
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: "Inter" !important;
      overflow: hidden;
}

body.rtl {
    font-family: "Cairo", sans-serif !important;
        overflow: hidden;
 }

.container-navbar {
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  width: 100%;
}

.cont {
  display: flex;
  border-left: 1px solid #999999;
  border-right: 1px solid #999999;
  height: 53px;
  align-items: center;
}

.custom-navbar {
  background-color: #000;
  opacity: 0;
  transition: opacity 1s ease;
}

.container-fluid {
  padding: 0px 100px !important;
}

.grad-color {
  background: linear-gradient(90deg, #121212 0%, #666666 20%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.grad-color-bottom {
  background: linear-gradient(180deg, #ffffff 0%, #999999 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.swiper-pagination {
  top: 94% !important;
}

/* Class to show the navbar after delay */
.custom-navbar.visible {
  opacity: 1;
}

.navbar-logo {
  animation: slideDown 2s ease-in;
}

.logo-image {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}

.navbar-nav {
  gap: 40px;
}

.navbar-nav .nav-link {
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 400;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

.language-switch {
  gap: 23px;
  padding-left: 1.25rem;
}

.lang-btn {
  background: transparent;
  color: #999999;
  border: 1px solid #999999;
  border-radius: 50%;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 400;
  cursor: pointer;
  width: clamp(40px, 10vw, 50px);
  height: clamp(40px, 10vw, 50px);
  max-width: 50px;  
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 140%;
}

.lang-btn.active {
  color: #fefefe;
  border-color: #fefefe;
  font-weight:500 !important;
}

.lang-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Sidebar collapse animation */
.sidebar-collapse {
  background-color: #000;
  padding: 1rem;
  animation: slideDown 2s ease-in;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-toggler {
  height: fit-content;
  margin-top: 26px;
  border: none;
}

button.navbar-toggler {
        max-height: 10px;
    border: none !important;
    outline: none !important;
    background: transparent;
box-shadow:none !important;
padding:0 !important;
}

button.navbar-toggler::focus {
        max-height: 10px;
    border: none !important;
    outline: none !important;
    background: transparent;
box-shadow:none
    !important;
    padding:0 !important;
}


.modal-icon-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  color: white !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.modal-content {
  background-color: #000;
  width: 100vw;
  height: 100vh;
  height: 100vh;
  border: none;
  border-radius: 0;
}

.modal-body {
  width: fit-content;
  margin: auto;
  opacity: 1 !important;
}

.modal-body a {
  font-weight: 200;
  font-size: 36px !important;
}

button.btn-close.btn-close-white.ms-3 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #c7c7c7;
      max-width: 30px;
          max-height: 30px;
}

button.btn-close.btn-close-white.ms-3:hover {
    padding:0;
    
}

.modal-backdrop {
  display: none !important;
}

/* Optional: Ensure modal body fills entire screen */
.modal.show-custom-modal .modal-dialog {
  margin: 0;
  max-width: 100%;
}

.modal-icon-link:hover {
  opacity: 0.7;
}

.modal-body {
  cursor: default;
}

.modal-body a,
.modal-body button {
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-logo {
    border-right: none;
    padding-right: 0;
  }

  .container-navbar {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
  }

  .sidebar-collapse {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
    padding: 0.5rem 0;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  .language-switch {
    padding-left: 0;
  }

  .language-switch.d-lg-none {
    display: flex !important;
  }

  .language-switch.d-lg-flex {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 576px) {
  .logo-image {
    max-height: 50px;
    max-width: 70px;
  }

  .lang-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
    padding: 32px !important;
  }

  .navbar-toggler {
    height: fit-content;
    margin-top: 6px;
    border: none;
  }
}

/* --- social media ---  */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 55%;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 1000;
  transition: width 0.3s ease;
  width: 50px;
  /* Initial width */
  overflow: hidden;
}

.social-sidebar {
  opacity: 1;
  transform: translateX(100%);
  transition: all 1s ease;
}

.social-sidebar.show {
  opacity: 1;
  transform: translateX(0);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15); /* Light, almost visible shadow */
  border-right: none;
}

.social-icon {
  padding: 12px;
  height: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000 !important;
  transition: background 0.3s ease;
}

.social-icon i {
  font-size: 24px;
  z-index: 2;
}

.social-icon span {
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #000;
}

/* ðŸ‘‡ When hovering over the entire sidebar */
.social-sidebar:hover {
  width: 140px;
}

.social-sidebar:hover .social-icon span {
  opacity: 1;
}

.icon-container {
  display: flex;
  align-items: center;
}

.social-icon:hover {
  background: #f0f0f0;
}

/* Hero section */
/* Hero section */
.hero-section {
  height: 86vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-text {
  font-weight: 300;
  font-size: 32px !important;
  line-height: 30px;
  background: linear-gradient(90deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
}

.hero-text span {
  display: inline-block;
  opacity: 1; /* Start fully visible */
  transform: translateY(0px); /* No initial offset */
  background: linear-gradient(90deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Initial state: both texts centered */
.hero-text.top {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.hero-text.bottom {
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

/* Final state after animation */
.hero-text.top.animated {
  top: 0;
  left: 0;
  transform: none;
  margin-left: 32px;
  margin-top: 80px;
  transition: all 2.5s ease;
}

.hero-text.bottom.animated {
  bottom: 0;
  right: 0;
  transform: none;
  margin-right: 85px;
  margin-bottom: 0;
  transition: all 2.5s ease;
}

.lines {
  pointer-events: none;
  z-index: 1 !important;
}

.lines,
.hero-image {
  opacity: 0;
  transition: all 1s ease;
  transform: translateY(100vh);
}

.lines-top {
  position: absolute;
  top: -90px;
  right: 40%;
  z-index: 0;
}

.lines-bottom {
  position: absolute;
  bottom: -25px;
  left: 40%;
  z-index: 0;
}

.hero-image {
  width: auto;
  height: auto;
  max-width: 480px;
  max-height: 595px;
}

/* Final state after animation */
.lines.animated,
.hero-image.animated {
  opacity: 1;
  transform: translateY(0);
}

img.lines.lines-bottom.animated {
  left: 0;
}

img.lines.lines-top.animated {
  right: 0;
}

/* Social Sidebar (from previous question) */
.social-sidebar.show {
  opacity: 1;
  transform: translateX(0);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  border-right: none;
}

/* Selection Styling (from previous question) */
.hero-text::selection,
.hero-text span::selection {
  background: #000;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-text {
    font-size: 28px !important;
    white-space: nowrap;
    left: 0 !important;
  }

  .dark-shadow {
    width: 100% !important;
    height: 400px !important;
  }

  img.lines.lines-bottom.animated {
    left: -40px;
    bottom: 50%;
    width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-text,
  .hero-text span {
    font-size: 22px !important;
    letter-spacing: -2px !important;
    margin: auto !important;
    text-align: center !important;
    width: 100% !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #000 !important;
    display: inline !important;
    font-weight: 400 !important;
  }

  .dark-shadow {
    width: 150% !important;
    height: 400px !important;
  }

  .hero-text.top {
    top: 45% !important;
  }
  .hero-text.bottom.animated {
    bottom: unset !important;
    top: 54% !important;
  }
  .hero-text {
    font-size: 28px !important;
    white-space: nowrap;
    left: -60px !important;
  }
  h2.hero-text.bottom.animated {
        left: -140px !important;
  }
}
/* //////  WHAT WE DO  ////// */

#what-we-do {
  overflow: hidden;
  padding: 80px 0 !important;
}

.enfinity-image {
  height: auto;
  width: auto;
  max-width: 488px;
  max-height: 100%;
  position: relative;
}

.container-text {
  display: flex;
}

.container-text h3 {
  font-weight: 300;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  /*position: absolute;*/
}

h3.inf-text-left {
  top: 42%;
  left: 10%;
  width: 200px;
  text-align: left;
}

h3.inf-text-right {
  top: 54%;
  right: 8%;
  width: 191px;
  text-align: left;
}

.background-container {
  background-image: url("../Utilities/home-build.svg");
  background-size: 104% 100%;
  background-position: right;
  background-repeat: no-repeat;
  padding: 20px;
  color: white;
  text-align: center;
  min-height: 390px;
  /* margin-right: 100px; */
}

#what-we-do .section-title {
     background: linear-gradient(90deg, #ffffff 0%, #666666 100%
100%
);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    text-align: left;
    font-weight: 200;
    font-size: clamp(24px, 4vw, 34px);
    width: fit-content;
}

.section-description {
  color: #FFFFFF99;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.6;
  text-align: left;
  margin-top: clamp(20px, 4vw, 32px);
  width: min(90%, 60%);
}

 .container-text h3 {
          width: 38%;
        margin-top: auto;
        margin-left: 40px;
        margin-bottom: 22px;
  }
  

@media (max-width: 1440px) {
  .container-text h3 {
          width: 38%;
        margin-top: auto;
        margin-left: 30px;
        margin-bottom: 22px;
  }
}

@media (max-width: 1024px) {
  .container-text h3 {
        width: 50%;
        margin-top: auto;
        margin-left: 30px;
        margin-bottom: 90px;
        font-size: 20px;
  }
  h3.inf-text-left {
    margin-left: -8px;
}

}

@media (max-width: 768px) {
  #what-we-do .section-title {
            text-align: center;
        width: fit-content;
        margin: auto;
        font-weight: 500;
        background: linear-gradient(90deg, #ffffff 0%, #666666 100%);
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        text-transform: uppercase;
  }

  .section-description {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.shadow-circle {
  position: absolute;
  right: -25px;
  top: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 75%
  );
  filter: blur(30px);
  pointer-events: none;
}

/* Media Queries for Responsiveness what we do section */
@media (min-width: 768px) and (max-width: 1022px) {
    .background-container {
        min-width: 600px;
        margin-left: -150px;
    }
}


@media (max-width: 992px) {
  #what-we-do {
    padding: 3rem 0 !important;
  }

  #what-we-do .row {
    flex-direction: column;
    align-items: center;
  }

  #what-we-do .col-lg-7,
  .col-lg-5 {
    width: 100%;
    max-width: 90%;
    margin-bottom: 2rem;
  }

  #what-we-do .background-container {
    min-height: 250px;
    background-size: contain;
    background-position: center;
  }

  #what-we-do .shadow-circle {
    width: 100%;
    height: 300px;
    top: -20px;
    right: -10px;
  }

    #what-we-do .container-text h3 {
      font-size: clamp(16px, 3.5vw, 22px);
      width: 50%;
      max-width:40%;
          max-width: 200px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    }

  h3.inf-text-left {
    margin-left: 190px;
    width: 200px;
    text-align: left;
  }

  h3.inf-text-right {
    margin-left: 0px;
    width: 165px; 
    text-align: left;
  }
}

@media (max-width: 768px) {
  #what-we-do .container-text h3 {
    font-size: clamp(16px, 3.5vw, 22px);
    width: 26%;
            margin-bottom: 44px;

  }

  h3.inf-text-right {
    top: 54%;
    right: 21%;
    width: 165px;
    text-align: left;
}

}

@media (max-width: 576px) {
  #what-we-do {
    padding: 2rem 0 !important;
  }
  #what-we-do .background-container {
    margin-right: 0 !important;
  }

  #what-we-do .container-text h3 {
    font-size: clamp(14px, 3.5vw, 22px);
    width: 44%;
    margin-left: 20px;
    margin-bottom: 40px;
  }

  h3.inf-text-left {
    left: 5% !important;
  }

  h3.inf-text-right {
    right: 0%;
  }

  /* h3.inf-text-right {
    width: 132px;
  } */

  .section-title {
    font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    text-align: center;
  }

  .section-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    text-align: center;
    width: 100% !important;
  }

  .container-text h3 {
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .background-container {
    min-height: 200px;
    padding: 1rem;
  }

  .container-text h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }

  .shadow-circle {
    width: 100%;
    height: 200px;
    top: -10px;
    right: 0;
  }
}
@media (max-width: 370px) {
     #what-we-do .container-text h3 {
    font-size: clamp(12px, 3.5vw, 22px);
    width: 40%;
     margin-left: 13px;
   
  }

}

/* Our clients  */
.client-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f5f5f5;
}

.client-section h2 {
  background: linear-gradient(90deg, #121212 0%, #666666 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 300;
  font-size: 34px;
  line-height: 60px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 50px;
}

.swiper-slide .client-image {
  max-width: 200px;
  height: 200px !important;
  height: auto;
  margin: 0 auto;
  object-fit: contain !important;
}


.swiper {
  width: 100%;
  padding: 22px 0;
}

.client-section .mySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 150px;
}

/* Media Queries for Responsiveness clients section */
@media (max-width: 992px) {
  .client-section h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: clamp(1.5rem, 3.5vw, 1.75rem);
    text-align: center;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
  }

  .swiper-slide .client-image {
    max-width: clamp(6rem, 18vw, 10rem);
  }

  .swiper {
    padding: clamp(0.75rem, 2vw, 1rem) 0;
  }
}

@media (max-width: 576px) {
  .client-section h2 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  }

  .swiper-slide .client-image {
    max-width: clamp(5rem, 15vw, 8rem);
  }

  .swiper {
    padding: clamp(0.5rem, 1.5vw, 0.75rem) 0;
  }
}

/* Services */

.service-page .shadow-circle {
  left: 200px !important;
  right: auto;
  z-index: 0;
  top: 360px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) -24%,
    rgba(255, 255, 255, 0) 88%
  );
  filter: blur(30px);
  width: 500px;
  height: 500px;
}

.service-page .shadow-circle.bottom {
  left: auto !important;
  right: 200px;
  z-index: 0;
  bottom: -36px !important;
  top: auto;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) -24%,
    rgba(255, 255, 255, 0) 88%
  );
  filter: blur(30px);
  width: 500px;
  height: 500px;
}

.services-section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  background-color: #fff;
  text-align: left;
}

.services-section h2 {
  background: linear-gradient(90deg, #121212 0%, #666666 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 200;
  font-size: 100px;
  line-height: 160%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #cccccc;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  color: #2a2a2a;
  background-color: transparent;
  padding: 30px 0;
  box-shadow: none !important;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #000000;
  /* Ensures readability */
  transition: all 0.3s ease;
  border-radius: 6px;

}

.accordion-button:not(.collapsed)::after {
  content: "__";
  font-size: 20px;
  background-image: none !important;
 
}

.accordion-button::after {
  content: "";
  width: 26px;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg width="26" height="25" viewBox="0 0 26 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.0005 0.119385C13.3949 0.119385 13.7142 0.438913 13.7144 0.833252V11.7864H24.6665L24.811 11.8C25.1364 11.8667 25.3813 12.1551 25.3813 12.5002C25.3813 12.8454 25.1364 13.1338 24.811 13.2004L24.6665 13.2141H13.7144V24.1663C13.7144 24.5607 13.395 24.8811 13.0005 24.8811C12.606 24.8811 12.2866 24.5607 12.2866 24.1663V13.2141H1.3335C0.939157 13.2139 0.619629 12.8946 0.619629 12.5002C0.619629 12.1059 0.939157 11.7866 1.3335 11.7864H12.2866V0.833252C12.2868 0.438913 12.6061 0.119385 13.0005 0.119385Z" fill="%232A2A2A"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  transition: background-image 0.3s ease;
}

.accordion-button:hover::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="26" height="25" viewBox="0 0 26 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.0005 0.119385C13.3949 0.119385 13.7142 0.438913 13.7144 0.833252V11.7864H24.6665L24.811 11.8C25.1364 11.8667 25.3813 12.1551 25.3813 12.5002C25.3813 12.8454 25.1364 13.1338 24.811 13.2004L24.6665 13.2141H13.7144V24.1663C13.7144 24.5607 13.395 24.8811 13.0005 24.8811C12.606 24.8811 12.2866 24.5607 12.2866 24.1663V13.2141H1.3335C0.939157 13.2139 0.619629 12.8946 0.619629 12.5002C0.619629 12.1059 0.939157 11.7866 1.3335 11.7864H12.2866V0.833252C12.2868 0.438913 12.6061 0.119385 13.0005 0.119385Z" fill="%23ffffff"/></svg>');
}


.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);  
}

.accordion-body {
  font-size: 16px;
  color: #4a4a4a;
  padding: 10px 0 20px 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .service-page .shadow-circle {
    left: clamp(3rem, 10vw, 6rem) !important;
    top: clamp(10rem, 30vw, 15rem);
    width: clamp(10rem, 40vw, 20rem);
    height: clamp(10rem, 40vw, 20rem);
  }

  .service-page .shadow-circle.bottom {
    right: clamp(3rem, 10vw, 6rem);
    bottom: -1.5rem !important;
    width: clamp(10rem, 40vw, 20rem);
    height: clamp(10rem, 40vw, 20rem);
  }

  .services-section {
    padding-top: clamp(2rem, 6vw, 3rem) !important;
    padding-bottom: clamp(1.5rem, 4vw, 2rem) !important;
  }

  .services-section h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;
  }

  .accordion-button {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }

  .accordion-body {
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  }
}

@media (max-width: 576px) {
  .service-page .shadow-circle {
    left: clamp(1rem, 5vw, 2rem) !important;
    top: clamp(5rem, 20vw, 10rem);
    width: clamp(8rem, 30vw, 15rem);
    height: clamp(8rem, 30vw, 15rem);
  }

  .service-page .shadow-circle.bottom {
    right: clamp(1rem, 5vw, 2rem);
    bottom: -1rem !important;
    width: clamp(8rem, 30vw, 15rem);
    height: clamp(8rem, 30vw, 15rem);
  }

  .services-section {
    padding-top: clamp(1.5rem, 5vw, 2rem) !important;
    padding-bottom: clamp(1rem, 3vw, 1.5rem) !important;
  }

  .services-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .accordion-button {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    font-size: 14px !important;
    white-space: normal;
  }

  .accordion-button::after,
  .accordion-button:not(.collapsed)::after {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
  }

  .accordion-body {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    padding: clamp(0.375rem, 1vw, 0.5rem) 0 clamp(0.75rem, 2vw, 1rem) 0;
  }
}

/* --- projects ////////// */

.projectsSwiper {
  width: 100%;
  padding: 40px 0 !important;
}

.projects-section {
  padding: 120px 0;
  position: relative;
}

.projects-section .shadow-circle {
  left: 450px !important;
  right: auto;
}

.projects-section .shadow-circle:last-of-type {
  right: -100px !important;
  bottom: -150px;
  top: auto;
  left: auto !important;
}

.projects-section h2 {
  background: linear-gradient(90deg, #ffffff 0%, #999999 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;

  font-weight: 200;
  font-size: 100px;
  text-transform: uppercase;
}

a.view-all {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #9f9f9f;
  text-decoration: none;
  transition: all 0.3s ease-in !important;
}

a.view-all:hover {
  color: #cccccc;
  transform: translate(5px, -5px);
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-card img.project-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  /* max-width: 464px; */
  height: 340px !important;
    object-fit: cover !important;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:rgba(34, 30, 22, 0.58);

  z-index: 1;
  transition: all 0.8s ease-in;
}

.project-card h5 {
  color: #f5f4ef;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  margin-bottom: 24px;
}

.project-card p {
  color: #ece8df;
  font-weight: 400;
  font-size: 18px;
  width: 60%;
  margin-bottom: 24px;

  display: -webkit-box;
  -webkit-line-clamp: 3;      /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.project-card a {
  color: #f5f4ef;
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
}

.link-icon {
  transform: rotate(320deg);
}

/* Hover effects */
.project-card:hover img.project-image {
  transform: scale(1.05);
}

.project-card .project-info {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  padding: 20px 15px;
  color: #fff;
  z-index: 2;
  transform: translateY(100%);
  transition: all 0.6s ease;
  font-size: 14px;
}

.project-card:hover .project-info {
  bottom: 70%;
}

.projectsSwiper-bullet .swiper-pagination-bullet {
  border: 1px solid #fff !important;
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: transparent !important;
}

.projectsSwiper-bullet .swiper-pagination-bullet-active {
  background: #fff !important;
}

/* --show - off */
 .lines-grid {
            padding: 170px 20px;
            background-color: #fff;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        .grid-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
        }

        /* Desktop Layout: 7x2 grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 10px;
            aspect-ratio: 7/2;
            width: 100%;
        }

        .cell {
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            will-change: transform, opacity;
            min-height: 80px;
            border: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .cell:hover {
            border-color: rgba(0, 0, 0, 0.1);
        }

        .shape {
            position: absolute;
            stroke: rgba(0, 0, 0, 0.7) !important;
            stroke-width: 1;
            fill: none;
            opacity: 0;
            transform-origin: center;
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                        stroke 0.3s ease,
                        stroke-width 0.3s ease;
            will-change: opacity, stroke, stroke-width;
        }

        .shape.show {
            opacity: 1;
        }

        .text {
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
            will-change: opacity, transform;
            text-align: center;
            padding: 0 8px;
        }

        .visible .text {
            opacity: 1;
            transform: translateY(0);
        }

        .cell:hover .shape {
            stroke: rgba(0, 0, 0, 1) !important;
            stroke-width: 1.5;
        }

        /* Tablet Layout: 3x4 grid */
        @media (max-width: 1024px) and (min-width: 769px) {
            .grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(4, 1fr);
                aspect-ratio: 3/4;
                gap: 12px;
            }
            
            .cell {
                font-size: clamp(0.7rem, 2vw, 0.9rem);
                min-height: 70px;
            }
        }

        /* Mobile Layout: 3x2 grid */
        @media (max-width: 768px) and (min-width: 481px) {
            .lines-grid {
                padding: 100px 15px;
            }
            
            .grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(2, 1fr);
                aspect-ratio: 3/2;
                gap: 8px;
            }
            
            .cell {
                font-size: clamp(0.6rem, 2.5vw, 0.8rem);
                min-height: 60px;
            }
        }

        /* Small Mobile Layout: 2x2 grid */
        @media (max-width: 480px) {
            .lines-grid {
                padding: 80px 10px;
                display:none;
            }
            
            
            .grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
                aspect-ratio: 2/2;
                gap: 6px;
            }
            
            .cell {
                font-size: clamp(0.5rem, 3vw, 0.7rem);
                min-height: 50px;
            }
        }

        /* Loader Styles */
        .grid-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .grid-loader.show { 
            opacity: 1; 
            visibility: visible; 
        }

        .grid-loader .loader-content { 
            text-align: center; 
            color: #333; 
        }

        .grid-loader .spinner {
            width: 32px;
            height: 32px;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-top: 2px solid #333;
            border-radius: 50%;
            animation: grid-spin 1s linear infinite;
            margin: 0 auto 12px;
        }

        .grid-loader .loader-text { 
            font-size: 14px; 
            font-weight: 500; 
            color: #666; 
        }

        @keyframes grid-spin { 
            0% { transform: rotate(0deg); } 
            100% { transform: rotate(360deg); } 
        }

      

/* --- Review section //////////////// */
.reviews-section {
  padding: 130px 0;
  background-color: #f5f5f5;
  text-align: left;
}

.reviews-section p {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: left;
  text-transform: uppercase;
}

.reviews-section h2 {
  background: linear-gradient(90deg, #121212 16%, #999999da 99%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  text-transform: uppercase;
}

.reviewsSwiper .swiper-slide {
  background: #fff;
  padding: 20px;
  text-align: left;
  height: auto;
}

.stars {
  color: #000000;
  font-size: 26px;
  margin-bottom: 15px;
}

.review-text {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  transition: max-height 0.3s ease;
  position: relative;
  max-height: none;
  overflow: hidden;
}

.review-text.expanded {
  max-height: none;
}

.read-more {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #2a2a2a;
  transition: all 0.3s ease;
  text-decoration: underline;
  line-height: 40px;
}

.read-more:hover {
  color: #2a2a2a9b;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
}

.reviewsSwiper-bullet .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  opacity: 1;
  background-color: transparent;
}

.reviewsSwiper-bullet .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #000;
}


/* Responsive Styles */
@media (max-width: 992px) {
  .reviews-section {
    padding: 80px 0;
  }

  .reviews-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-section h2 {
    font-size: 24px;
    text-align: center;
  }

  .reviews-section p {
    font-size: 14px;
    text-align: center;
  }

  .reviewsSwiper .swiper-slide {
    padding: 15px;
  }

  .stars {
    font-size: 22px;
    text-align: center;
  }

  .review-text {
    font-size: 13px;
    text-align: center;
  }

  .review-author {
    font-size: 13px;
    text-align: center;
  }
  .reviewsSwiper .swiper-slide {
    width: 100% !important;
}

}

@media (max-width: 576px) {
  .reviews-section {
    padding: 40px 0;
  }
  
    .reviews-section p {
    text-align: left;
  }


  .reviews-section h2 {
    font-size: 20px;
  }

  .reviews-section p {
    font-size: 12px;
  }

  .stars {
    font-size: 20px;
  }

  .review-text,
  .review-author,
  .read-more {
    font-size: 12px;
  }

  .reviewsSwiper .swiper-slide {
    padding: 10px;
  }
}

/* --- lets talk /////////// */
.lets-talk-section {
  position: relative;
  padding: 192px 0;
  background-image: url("../Utilities/buildings.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  min-height: 544px;
}

.lets-talk-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 75%);
  /* Dark overlay to improve text readability */
}

.lets-talk-content {
  position: relative;
  z-index: 1;
}

.lets-talk-section h2 {
  font-size: 52px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.lets-talk-section p {
  font-weight: 400;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffffcc;
}

.lets-talk-section .btn-contact {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  padding: 20px 30px;
  border-radius: 0;
  width: 100%;
  max-width: 368px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.lets-talk-section .btn-contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.lets-talk-section .btn-contact:hover::before {
  width: 110%;
  height: 110%;
}

.lets-talk-section .btn-contact:hover {
  color: #000;
}

@media (max-width: 768px) {
  .lets-talk-section .btn-contact {
    font-size: 18px;
    max-width: 200px;
    margin: auto;
    display: block;
  }

  .lets-talk-section h2 {
    font-size: 32px;
  }
}

/* ---footer ///////// */

.footer {
  color: #fff;
  padding: 100px 0;
  font-size: 14px;
  font-weight: 300;
}

.footer h2 {
  margin: 34px 0;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #999999 35%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.footer h4 {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer .form-group {
  position: relative;
  margin-bottom: 10px;
}

.footer input[type="email"] {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #808080;
  color: #fff;
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  caret-color: silver;
  line-height: 24px;
}

.footer input[type="email"]::placeholder {
  color: #e4e4e4e8 !important;
}

.form-control:focus {
  box-shadow: none;
}

.footer .btn-subscribe {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 15px;
  background: transparent;
  border: none;
  color: #ffffff80;
  font-size: 18px;
  cursor: pointer;
}

.footer .terms {
  margin-top: 20px;
  color: #ffffff80 !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
}

.footer .terms a {
  color: #ffffff80 !important;
  text-decoration: underline;
}

.footer-content {
  margin-top: 98px;
}

.footer .nav-link {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #fefefe;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  padding: 4px 0 !important;
}

.footer .nav-link:hover {
  color: #ccc;
}

.footer .contact-info p {
  margin: 5px 0;
}

.footer .social-icons a {
  color: #fff;
  margin-right: 4px;
  font-size: 18px;
  text-decoration: none;
}

.footer .social-icons a:hover {
  color: #ccc;
}

.footer .copyright {
  font-size: 12px;
  color: #ccc;
  margin-top: 20px;
}

.up-footer {
  width: 65%;
}

/* Media Queries for Responsiveness footer section */
@media (max-width: 992px) {
  .footer {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .footer-content {
    margin-top: 2rem;
  }

  .footer .row {
    align-items: center;
    text-align: center;
     max-height: 300px;
  }

  .footer .col-md-1 {
    display: none;
  }

  .footer .form-group {
    max-width: 90%;
    margin: 0 auto;
  }

  .footer h2,
  .footer h4 {
    text-align: center;
  }
}

.footer .col-2 {
  flex: 0 0 auto !important;
  width: 16.66666667% !important;
}

.footer .col-3 {
  flex: 0 0 auto;
  width: 25%;
}

@media (min-width: 768px) and (max-width: 1025px) {
    .col-md-1 {
        flex: 0 0 auto;
        width: 15.333333% !important;
    }

    .col-md-1:first-of-type {
        display: none !important;
    }
}


@media (max-width: 768px) {
  .footer {
    overflow: hidden !important;
  }
  .footer .col-md-6 {
    flex: 0 0 auto !important;
    width: 50% !important;
  }

  .footer .col-md-12 {
    flex: 0 0 auto !important;
    width: 100% !important;
  }

  .footer .terms {
    font-size: 12px;
  }

  .up-footer {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: clamp(1.5rem, 5vw, 2rem) 0;
  }

  .footer h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  .footer h4 {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }

  .footer .form-group {
    max-width: 100%;
  }

  .footer .col-md-1 {
    display: none;
  }

  .footer input[type="email"] {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    padding: 0.8rem 0;
  }

  .footer .btn-subscribe {
    padding: 0 0.5rem;
  }

  .footer .social-icons {
    gap: 0.8rem;
  }

  .footer .social-icons a svg {
    width: clamp(1.2rem, 2.5vw, 1.5rem);
  }

  .footer .copyright img {
    width: clamp(40px, 8vw, 60px);
  }
}

/* --- contact css ////////////////////// */
.contact-head {
  min-height: clamp(300px, 50vw, 500px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow-x: clip;
}

.contact-head h1 {
  font-weight: 200;
  font-size: clamp(2.5rem, 10vw, 120px);
  line-height: 1.6;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact section */
.contact-section {
  padding: clamp(2rem, 8vw, 5rem) !important;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

/* Contact form */
.contact-form {
  margin-bottom: clamp(3rem, 10vw, 8rem);
}

/* Info title */
.info-title {
  background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 1.5rem;
}

/* Headings for contact info and form */
.contact-info h2,
.contact-form h2 {
  font-weight: 300;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.75rem;
}

.contact-form h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  line-height: 1.2;
  color: #fff;
  margin-top: 1.5rem;
}

/* Paragraphs and links */
.contact-info p {
  font-weight: 400;
  font-size: clamp(0.875rem, 3vw, 1.125rem);
  text-transform: uppercase;
  color: #ffffff;
   
}

h2.hero-text.bottom {
    white-space: nowrap;
}

h2.hero-text.bottom.animated {
    white-space: nowrap;
    right: 0% !important;
    left: auto;
}

@media (max-width: 1025px) {
    .contact-info p {
font-size: 14px;
}
}

.contact-form p,
.contact-form a {
  color: #e6e6e6 !important;
  font-weight: 300;
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  text-decoration: none;
}

.contact-form address {
  font-weight: 400;
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  color: #e6e6e6;
}

/* Info item */
.contact-section .info-item {
  font-weight: 300;
  font-size: clamp(1.5rem, 5vw, 2rem);
  text-transform: uppercase;
  color: #fff;
}

/* Social icons */
.social-icons a {
  color: #fff;
  margin-right: 0.75rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ddd;
}

/* Form controls */
.form-control {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #808080;
  color: #fff !important;
  border-radius: 0;
  font-weight: 500;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  text-transform: uppercase;
  caret-color: silver;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}

 

/* Submit button */
.btn-submit {
    width: 100%;
    background-color: transparent;
    border: 1px solid #fff !important;
    color: #fff;
    padding: clamp(0.75rem, 2vw, 1rem) 0.625rem !important;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    border-radius: 0;
    font-weight: 400;
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit:hover {
  background-color: #fff;
  color: #1a1a1a;
}

/* Shadow circle */
.contact-section .shadow-circle {
  pointer-events: none;
  position: absolute;
  top: clamp(-20rem, -50vw, -15rem);
  right: auto;
  width: clamp(15rem, 50vw, 25rem);
  height: clamp(15rem, 50vw, 25rem);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) -30%,
    rgba(255, 255, 255, 0) 75%
  );
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(0.625rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 1440px) {
  .container-fluid {
    padding: 0 40px !important;
  }
}
/* Tablets and smaller desktops (max-width: 992px) */
@media (max-width: 992px) {
  .contact-head {
    min-height: clamp(250px, 40vw, 400px);
  }

  .contact-head h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .contact-section {
    padding: clamp(1.5rem, 6vw, 3rem) !important;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .contact-head {
    min-height: clamp(200px, 35vw, 300px);
    align-items: center;
    text-align: center;
  }

  .contact-head h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
  }

  .contact-section {
    padding: clamp(1rem, 5vw, 2rem) !important;
    flex-direction: column;
    align-items: stretch;
  }

  img.lines.lines-top.animated {
    display: none;
  }

  .container-fluid {
    padding: 0 clamp(0.5rem, 2vw, 0.875rem) !important;
  }

  .br-head {
    display: none;
  }
}

/* Small mobile devices (max-width: 576px) */
@media (max-width: 576px) {
  .contact-info p,
  .contact-form a,
  .contact-form address {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  }

  .contact-section .info-item {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .container-fluid {
    padding: 0 clamp(0.5rem, 2vw, 0.875rem) !important;
  }

  .btn-submit {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  }

  .contact-form {
    margin-bottom: clamp(2rem, 8vw, 3rem);
  }

  .contact-section {
    padding-top: clamp(1.5rem, 6vw, 2rem) !important;
    padding-bottom: clamp(1rem, 5vw, 1.5rem) !important;
  }

  .contact-section .shadow-circle {
    width: clamp(10rem, 40vw, 15rem);
    height: clamp(10rem, 40vw, 15rem);
    top: clamp(-15rem, -40vw, -10rem);
  }
}

/* --- Services /////////////////// */
.contact-us-services p {
  text-align: left;
  font-weight: 300;
  font-size: clamp(24px, 5vw, 40px) !important;
  line-height: 160%;
  text-transform: uppercase;
  color: #fff;
  max-width: 70%;
  letter-spacing: 1.8px;
  margin-bottom: 2rem;
}

.contact-us-services {
  background-image: none;
  text-align: left;
}

.contact-us-services::before {
  content: none;
}

.services-page {
  padding-top: 80px !important;
  padding-bottom: 40px !important;
}

.service-block {
  margin-bottom: 60px;
  padding: 80px 0;
  border-bottom: 1px solid #FFFFFF40
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-number {
  font-weight: 300;
  font-size: clamp(24px, 5vw, 40px);
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  margin-right: 30px;
  margin-bottom: 10px;
}

.service-page .service-title {
  font-weight: 300;
  font-size: clamp(28px, 6vw, 60px);
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  flex: 1 1 auto;
}

.service-list {
  list-style-type: disc;
  padding-left: clamp(20px, 10vw, 170px);
}

.service-list li {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 20px);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.background-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1);
}

.service-hr {
  color: #ffffff40;
}

.bg-black {
  background-color: #000 !important;
}

/* who we are */
.who-we-are {
  padding: 60px 0;
  background: #000;
  overflow-x: clip;
}

.who-we-are .section-heading,
.our-story-values-section .section-heading {
  font-weight: 300;
  font-size: 80px;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 30px;
  height: fit-content;
}

p.story-text-feat {
  font-weight: 300;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.who-we-are .intro-text {
  font-weight: 300;
  font-size: 24px;
  text-transform: uppercase;

  color: #fff;
}

.who-we-are .sub-heading {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #fefefe;
}

.who-we-are .sub-text {
  color: #fefefe;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.6;
}

.who-we-are .founder-img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
}

.our-story-values-section {
  background: #000;
  padding: 60px 0;
  overflow-x: clip;
}

.story-text {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}

.story-text.small-text {
  font-size: 14px;
  color: #ccc;
  text-transform: none;
  margin-top: 10px;
}

.values-list li {
  margin-bottom: 32px;
  font-weight: 300;
  font-size: 32px;
  line-height: 200%;
  margin-left: 26px;
  color: #fff;
}

.values-list,
.story-text,
.value-text {
  width: 50%;
}

.value-text-feat {
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  max-width: 60%;
}

h2.section-heading.grad-color-bottom {
  margin-bottom: 82px;
}

.value-content,
.story-content {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.who-we-are .shadow-circle {
  left: 50px !important;
  right: auto;
  top: 120px;
  width: 450px;
  height: 450px;
  filter: blur(60px);
}

.value-content .shadow-circle {
  left: 50px;
  top: 100px;
  height: 600px;
  filter: blur(60px);
  right: auto !important;
}

/* Responsive who we are  */
@media (max-width: 992px) {
  .who-we-are .section-heading,
  .our-story-values-section .section-heading {
    font-size: 50px;
  }

  .who-we-are .intro-text,
  p.story-text-feat {
    font-size: 24px;
  }

  .values-list li {
    font-size: 30px;
    margin-left: 20px;
  }

  .value-text-feat {
    font-size: 20px;
    max-width: 80%;
  }

  .values-list,
  .story-text,
  .value-text {
    width: 100%;
  }

  .value-content,
  .story-content {
    flex-direction: column;
    margin-top: 50px;
  }

  .value-content .value-text,
  .story-content .story-text {
    margin-top: 20px;
  }

  h2.section-heading.grad-color-bottom {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .who-we-are,
  .our-story-values-section {
    padding: 30px 0;
  }

  .who-we-are .section-heading,
  .our-story-values-section .section-heading {
    font-size: 36px;
  }

  .who-we-are .intro-text,
  p.story-text-feat {
    font-size: 18px;
  }

  .values-list li {
    font-size: 24px;
    margin-left: 15px;
  }

  .value-text-feat {
    font-size: 16px;
    max-width: 100%;
  }

  .who-we-are .sub-heading,
  .who-we-are .sub-text {
    font-size: 14px;
  }
}

/* project section */
.projects-section {
  position: relative;
  overflow-x: clip;
  background: #000;
  color: #fff;
  padding: 180px 0 60px 0;
}

.projects-section h2.grad-color-bottom {
  background: linear-gradient(180deg, #ffffff 0%, #999999 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.filter-select {
  padding: 12px 60px 12px 18px; /* right padding increased for arrow space */
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  background-color: #000;
  color: #fff;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #ffffff 0%, #666666 100%);
  border-image-slice: 1;
  border-radius: 0;
  cursor: pointer;
  max-width: 240px;

  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Custom arrow as background image */
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 18px center; /* add space between arrow and border */
  background-size: 20px;
}


.filter-select option {
  color: #fff;
  background: #000 !important;
}

.filter-select option:hover {
  color: #fff;
  background: #000 !important;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.load-more {
  display: block;
  margin: 30px auto;
  padding: 16px 40px;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.load-more:hover {
  background: #fff;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .projects-section h2.grad-color {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .filter-select {
    width: 100%;
    margin-bottom: 20px;
  }
}

#model-container {
  width: 100%;
  height: 100%;
  max-width: 50% !important;
  position: absolute;
  top: 0;
  left: 25%;
  overflow: hidden;
  z-index: 0;
}

/* If you need a specific aspect ratio */
/* .hero-section {
  height: 100dvh;
} */

#model-container {
  opacity: 0;
  transition: opacity 0.8s ease;
  height:100% !important;
}

.elementor-846 .elementor-element.elementor-element-26ee2e9 #model-container {
    height:100% !important;
}

#model-container.animated {
  opacity: 1;
  filter: brightness(0.9);
}

.dark-shadow {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 480px;
    background: radial-gradient(closest-side at center, rgb(0 0 0 / 67%) 12%, #00000094 90%);
    z-index: 1;
    filter: blur(64px);
}
@media (max-width: 1440px) {
  #model-container {
    left: 10%;
  }
}

@media (max-width: 1024px) {
  #model-container {
    left: 21%;
  }
}

@media (max-width: 768px) {
  #model-container.animated {
    left: 0;
  }
}

/* --- terms & condition ////////////*/
.terms-and-conditions h1 {
  font-weight: 300;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  /* Responsive font size */
  line-height: 1.2;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: left;
  width: fit-content;
  background: linear-gradient(90deg, #ffffff 0%, #9f9f9f 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  margin: 8rem 0 3.625rem 0;
  /* Converted to rem for scalability */
}

.terms-block {
  margin: 2.125rem 0;
  /* Converted to rem */
}

.terms-title {
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.25rem);
  /* Responsive font size */
  line-height: 1.4;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #fefefe;
  margin-bottom: 1.625rem;
  /* Converted to rem */
}

.terms-description {
  font-weight: 400;
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  /* Responsive font size */
  line-height: 1.4;
  text-transform: uppercase;
  color: #fefefe;
  margin-bottom: 2rem;
  /* Converted to rem */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .terms-and-conditions h1 {
    margin: 4rem 0 2rem 0;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .terms-block {
    margin: 1.5rem 0;
  }

  .terms-title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    margin-bottom: 1rem;
  }

  .terms-description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .terms-and-conditions h1 {
    margin: 2rem 0 1.5rem 0;
    font-size: clamp(1rem, 3vw, 1.25rem);
  }

  .terms-block {
    margin: 1rem 0;
  }

  .terms-title {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin-bottom: 0.75rem;
  }

  .terms-description {
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
    margin-bottom: 1rem;
  }
}

/* Projects Section Responsive Styles */
@media (max-width: 1200px) {
  .projects-section h2 {
    font-size: 80px;
  }

  .projects-section .shadow-circle {
    left: 350px !important;
  }

  .project-card p {
    width: 70%;
  }
}

@media (max-width: 992px) {
  .projects-section {
    padding: 80px 0;
  }

  .projects-section h2 {
    font-size: 60px;
  }

  .projects-section .shadow-circle {
    left: 250px !important;
  }

  .project-card h5 {
    font-size: 20px;
  }

  .project-card p {
    width: 80%;
    font-size: 16px;
  }

  .project-card a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .projectsSwiper {
    padding: 20px 0 !important;
  }

  .projects-section {
    padding: 60px 0;
  }

  .projects-section h2 {
    font-size: 40px;
  }

  .projects-section .shadow-circle {
    left: 150px !important;
  }

  .projects-section .shadow-circle:last-of-type {
    right: -50px !important;
    bottom: -100px;
  }

  .project-card img.project-image {
    max-height: 250px;
  }

  .project-card h5 {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .project-card p {
    width: 90%;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .project-card a {
    font-size: 16px;
  }

  .project-card .project-info {
    bottom: 60px;
    padding: 15px 10px;
  }

  .project-card:hover .project-info {
    bottom: 60%;
  }

  a.view-all {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .projects-section {
    padding: 40px 0;
  }

  .projects-section h2 {
    font-size: 32px;
  }

  .projects-section .shadow-circle {
    left: 100px !important;
  }

  .projects-section .shadow-circle:last-of-type {
    right: -30px !important;
    bottom: -70px;
  }

  .project-card img.project-image {
    max-height: 250px;
  }

  .project-card h5 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .project-card p {
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .project-card a {
    font-size: 14px;
  }

  .project-card .project-info {
    bottom: 70px;
    padding: 10px;
  }

  .project-card:hover .project-info {
    bottom: 50%;
  }

  a.view-all {
    font-size: 14px;
  }

  .projectsSwiper-bullet .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Optimize for landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .projects-section {
    padding: 30px 0;
  }

  .project-card img.project-image {
    max-height: 200px;
  }

  .project-card .project-info {
    bottom: 40px;
  }

  .project-card:hover .project-info {
    bottom: 40%;
  }
}

/* Add smooth transitions for better UX */
.project-card {
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}
 

/* From Uiverse.io by neerajbaniwal */ 
.btn-shine:hover {
  color: #fff;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
 }
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

/* Back to top button */
.button-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.button-to-top .svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.button-to-top .svgIcon path {
  fill: white;
}

.button-to-top:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--secondary-color) 50%,
    var(--primary-color)
  );
  background-size: 200% auto;
  animation: gradient 3s linear infinite;
  align-items: center;
  box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.5);
}

@keyframes gradient {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.button-to-top:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.button-to-top::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.button-to-top:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}


.form-control {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #808080;
  color: #fff;
  font-weight: 500;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  text-transform: uppercase;
  caret-color: silver;
  line-height: 1.5;
  transition: background 0.3s ease;
}

.form-control:focus {
  outline: none;
  background: transparent;  
  border-bottom: 1px solid #fff;
}

.input-border {
  position: absolute;
  background: #fff; /* Border color on focus */
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.7s ease;
}

.form-control:focus ~ .input-border {
  width: 100%; /* Animate border from left to right */
}

 
.btn-subscribe svg {
  width: 28px;
  height: 29px;
}

/* Mobile Bottom Navigation Styles */
.mobile-footer-nav {
  background: #000;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  z-index: 1000;
}

.mobile-footer-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-footer-nav .nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.mobile-footer-nav .nav-item span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
}

.mobile-footer-nav .nav-item:hover {
  color: #999;
}

/* Mobile Footer Content Styles */
.mobile-footer-content {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  background: #000;
  z-index: 999;
  border-top: 1px solid #333;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-footer-content.show {
  transform: translateY(0);
}

.drag-handle {
  width: 40px;
  height: 4px;
  background: #666;
  border-radius: 2px;
  margin: 8px auto;
  cursor: grab;
  transition: background-color 0.3s ease;
}


.drag-handle:nth-of-type(2) {
  display: none;
}

.drag-handle:active {
  cursor: grabbing;
  background: #999;
}

.mobile-footer-content .collapse {
  background: #000;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.mobile-footer-content .collapse.show {
  animation: none;
}

.mobile-footer-content .footer-links {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.mobile-footer-content .footer-links a {
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid #333;
  transition: all 0.3s ease;
}

.mobile-footer-content .footer-links a:last-child {
  border-bottom: none;
}

.mobile-footer-content .footer-links a:hover {
  color: #999;
  padding-left: 10px;
}

.mobile-footer-content .contact-info {
  padding: 20px;
  color: #fff;
}

.mobile-footer-content .contact-info p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

/* Remove previous animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

   .mobile-footer-nav,
  .mobile-footer-content {
    display: none !important;
  }  

/* Adjust main content padding when mobile nav is present */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }

  .mobile-footer-nav  {
    display: flex !important;
  }

  .mobile-footer-content {
    display: block !important;
  }

  .button-to-top {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 20px;
  }

}
 
.mySwiper .swiper-slide {
  padding: 30px 16px !important;
  width: 300px !important;
  height: 250px !important;
  background-color: #fff !important; /* neutral light gray */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 4px !important; /* optional for smoother look */
}

.footer .footer-content .d-flex.gap-0.justify-content-center.flex-column {
    display: none !important;
}

@media (max-width: 768px) {
 .footer .footer-content .d-flex.gap-0.justify-content-center.flex-column {
    display: flex !important;
}

}

.footer img.img-responsive.mb-2 {
    width: 165px;
    margin-top: -20px;
}

.puiux-services-page-wrapper .background-image {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*----------- RTL direction -------------------------- */

.rtl h2 {
    font-weight: 600;
    line-height: 1.7;
}
.rtl .contact-head svg {
    transform: scaleX(-1);
}

.rtl .input-border {
    right: 0;
}

.rtl .footer .btn-subscribe {
        left: 0;
    width: fit-content;
    right: auto;
}

.rtl .language-switch {
    padding-right: 1.25rem;
}

.rtl h3.inf-text-left {
    text-align: right;
    margin-left: 150px;
    margin-right: 30px;
}

.rtl h3.inf-text-right {
    text-align: right;
    margin-right: 90px;
    width: 30%;
}

/*.rtl .hero-text.top {*/
/*    top: 45%;*/
/*    left: 40%; */
/*    z-index: 2;*/
/* }*/
 
/*.rtl .hero-text.bottom {*/
/*    top: 60%;*/
/*    left: 38%;*/
/* }*/
.rtl .hero-text {
        margin-left: -190px !important;
}

.rtl .hero-text.animated {
        margin-left: 30px !important;
}

@media (max-width: 1022px) {
    margin-left: 0px !important;
}

@media (max-width: 768px) {
   .rtl #what-we-do .container-text h3 {
        font-size: 18px;
        width: 18%;
    }
    .rtl h3.inf-text-right {
    text-align: right;
    margin-left: 160px;
}
.rtl h3.inf-text-left {
    text-align: right;
    margin-left: 50px;
    margin-right: 230px;
}

}

@media (max-width: 425px) {
    .rtl #what-we-do .container-text h3 {
              font-size: 14px;
        width: 100%;
                margin-right: 60px;
    }
 



  .rtl .hero-text.top {
         left: -28% !important;
    }
    
     .rtl .hero-text.bottom {
         left: -48% !important;
    }
    
    
}

@media (max-width: 320px) {
    .rtl #what-we-do .container-text h3 {
        margin-right: 38px;
    }
}


.rtl #what-we-do .section-title {
        text-align: right;
}

.rtl .services-section h2 {
    text-align: right;
    width: fit-content;
}

.rtl .accordion-button::after {
    margin-right: auto;
    margin-left: 12px;
}

.rtl .projects-section svg {
    transform: scaleX(-1);
}

.rtl .reviews-section h2,
.rtl .reviews-section p {
    text-align: right;
}

.rtl .section-description {
        text-align: right;
}


.rtl .service-number {
    margin-left: 30px;
}

.rtl .service-list {
    list-style-type: disc;
    padding-right: clamp(20px, 6vw, 140px);
     padding-left :unset;
    
}

.rtl .service-list li {
        text-align: right;
}


.rtl .contact-us-services p {
           text-align: right;
}

.rtl .lets-talk-section .btn-contact {
        display: block;
        margin: auto;
        margin-top: 30px;
}

.rtl input.form-control.elementor-field {
        direction: rtl;
}

.rtl .accordion-body {
    text-align: right;
}

.rtl .projects-section h2 {
    line-height: 1.7;
}

 
    

html[dir="rtl"] .swiper {
  direction: rtl;
}



.rtl .filter-select {
  padding: 12px 60px 12px 18px; /* right padding increased for arrow space */
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  background-color: #000;
  color: #fff;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #ffffff 0%, #666666 100%);
  border-image-slice: 1;
  border-radius: 0;
  cursor: pointer;
  max-width: 240px;

  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Custom arrow as background image */
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: left 18px center; /* add space between arrow and border */
  background-size: 20px;
}
.position-relative.container-text.box-text.background-container {
    display: none;
}
.puiux-widget-wrapper.puiux-lines-grid-wrapper {
    display: none;
}
.hero-section .text-zone.text-start ,.hero-section .text-zone.text-end {
    display: none;
}
/* 🔒 Disable hover effect on screens 425px and below */
@media (max-width: 425px) {
  .social-sidebar:hover {
    width: 49px !important; /* or your default width */
  }
  
  .text-zone.text-start ,
  .text-zone.text-end {
      display:none;
  }
  img.lines.lines-bottom.animated {
      display:none;
  }
}

@media (max-width: 768px) {
    #model-loading img {
           object-fit: contain;
 
    }
#model-container canvas {
    max-width: 70% !important;
    height: 641px !important;
    object-fit: contain;
    margin: auto;
}
}