:root {
  --smart-primary: #4eaed4;
  --smart-primary-dark: #075985;
  --smart-dark: #07131f;
  --smart-white: #ffffff;
  --smart-text-light: rgba(255, 255, 255, 0.78);
  --smart-card: rgba(24, 168, 224, 0.13);
  --smart-border: rgba(24, 168, 224, 0.18);
  --smart-light-bg: #f2f9fc;
  --smart-text: #111827;
  --smart-muted: #64748b;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  overflow-x: hidden;
  background: var(--smart-light-bg);
}
.smart-hero {
  padding: 20px;
}

.smart-hero .container-fluid {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--smart-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 30px;
}

@media screen and (max-width: 550px) {
  .smart-hero {
    padding: 5px;
  }
}

.smart-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, #000000b9 55%, #075985d9 100%);
  z-index: 1;
}

.smart-navbar {
  position: relative;
  z-index: 10;
  width: calc(100% - 70px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.smart-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.smart-logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--smart-primary);
  color: var(--smart-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transform: rotate(-8deg);
}

.smart-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.smart-logo-text strong {
  font-size: 21px;
  font-weight: 900;
}

.smart-logo-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  margin-top: 4px;
}

.smart-nav-menu {
  background: rgba(255, 255, 255, 0.97);
  min-height: 72px;
  padding: 8px 15px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

.smart-nav-menu a {
  color: #1d1d1d;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  white-space: nowrap;
}

.smart-nav-menu a:hover,
.smart-nav-menu a.active {
  background: var(--smart-primary);
  color: var(--smart-white);
  font-weight: 700;
}

.smart-navbar-action {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 290px;
  justify-content: flex-end;
}

.smart-phone {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.smart-phone i {
  color: var(--smart-primary);
  font-size: 17px;
}

.smart-phone:hover {
  color: var(--smart-primary);
}

.smart-contact-btn {
  background: var(--smart-primary);
  color: var(--smart-white);
  text-decoration: none;
  min-height: 60px;
  padding: 7px 18px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.3s ease;
}

.smart-contact-btn i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--smart-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.smart-contact-btn:hover {
  background: white;
  color: var(--smart-dark);
  transform: translateY(-3px);
}

.smart-contact-btn:hover i {
  transform: translateX(-4px);
}

.smart-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--smart-primary);
  color: var(--smart-white);
  font-size: 20px;
}

.smart-hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  width: calc(100% - 70px);
  max-width: 1450px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 45px;
  padding: 100px 0px;
}

.smart-hero-text {
  width: 58%;
  max-width: 850px;
}

.smart-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--smart-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.smart-hero-label::before {
  content: "";
  width: 35px;
  height: 3px;
  border-radius: 5px;
  background: var(--smart-primary);
}

.smart-hero-text h1 {
  font-size: 60px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.smart-hero-text h1 span {
  display: block;
  color: var(--smart-primary);
}

.smart-hero-text p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 30px;
}

.smart-hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 35px;
}

.smart-primary-btn {
  background: var(--smart-primary);
  color: var(--smart-white);
  text-decoration: none;
  min-height: 58px;
  padding: 8px 18px;
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s ease;
}

.smart-primary-btn i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--smart-dark);
  color: var(--smart-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-primary-btn:hover {
  color: var(--smart-dark);
  background: var(--smart-white);
  transform: translateY(-4px);
}

.smart-outline-btn {
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--smart-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.smart-outline-btn:hover {
  background: var(--smart-white);
  color: var(--smart-dark);
  border-color: var(--smart-white);
}

.smart-features {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.smart-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.smart-feature:last-child {
  border-left: 0;
}

.smart-feature-icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(34, 184, 214, 0.15);
  border: 1px solid rgba(34, 184, 214, 0.35);
  color: var(--smart-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.smart-feature span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.smart-hero-services {
  width: 39%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-self: flex-end;
  margin-bottom: 10px;
}

.smart-service-card {
  min-height: 190px;
  padding: 27px;
  border: 1px solid var(--smart-border);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.smart-service-card:nth-child(3) {
  grid-column: span 2;
}

.smart-service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(34, 184, 214, 0.5);
}

.smart-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--smart-primary);
  color: var(--smart-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 17px;
}

.smart-service-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}

.smart-service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.smart-scroll-down {
  position: absolute;
  z-index: 8;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  animation: smartScroll 2s infinite;
}

.smart-scroll-down i {
  color: var(--smart-primary);
}
@keyframes smartScroll {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 7px);
  }
}

@media (max-width: 1200px) {
  .smart-navbar {
    width: calc(100% - 40px);
  }

  .smart-hero-content {
    width: calc(100% - 40px);
    padding: 150px 0px;
  }

  .smart-nav-menu a {
    padding: 13px 12px;
    font-size: 12px;
  }

  .smart-navbar-action {
    min-width: auto;
  }

  .smart-phone span {
    display: none;
  }

  .smart-hero-text {
    width: 55%;
  }

  .smart-hero-services {
    width: 43%;
  }
}

@media (max-width: 991px) {
  .smart-navbar {
    min-height: 70px;
  }

  .smart-nav-menu {
    position: absolute;
    top: 75px;
    right: 76px;
    width: 80%;
    padding: 15px;
    border-radius: 22px;
    display: none;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .smart-nav-menu.show {
    display: flex;
  }

  .smart-nav-menu a {
    text-align: center;
    padding: 12px;
  }

  .smart-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .smart-navbar-action {
    margin-right: auto;
  }

  .smart-contact-btn {
    min-height: 48px;
    padding: 5px 12px 5px 12px;
    gap: 10px;
  }

  .smart-contact-btn i {
    width: 35px;
    height: 35px;
  }

  .smart-hero-content {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 180px 0 60px;
    margin-top: 0;
  }

  .smart-hero-text {
    width: 100%;
    max-width: 850px;
  }

  .smart-hero-services {
    width: 100%;
    max-width: 750px;
    align-self: auto;
  }

  .smart-hero-text h1 {
    font-size: clamp(48px, 8vw, 70px);
  }
}

@media (max-width: 767px) {
  .smart-hero {
    min-height: auto;
  }

  .smart-nav-menu {
    right: 43px;
  }
  .smart-navbar {
    width: calc(100% - 28px);
  }

  .smart-logo {
    min-width: auto;
  }

  .smart-logo-icon {
    width: 43px;
    height: 43px;
    font-size: 19px;
    border-radius: 11px;
  }

  .smart-logo-text strong {
    font-size: 16px;
  }

  .smart-logo-text span {
    font-size: 9px;
  }

  .smart-navbar-action {
    display: none;
  }

  .smart-hero-content {
    width: calc(100% - 28px);
    padding-top: 175px;
    padding-bottom: 55px;
  }

  .smart-hero-label {
    font-size: 12px;
  }

  .smart-hero-text h1 {
    font-size: 45px;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .smart-hero-text p {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 25px;
  }

  .smart-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
  }

  .smart-primary-btn,
  .smart-outline-btn {
    width: 100%;
    justify-content: center;
  }

  .smart-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .smart-feature {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 0 12px;
  }

  .smart-feature:last-child {
    border-bottom: 0;
  }

  .smart-hero-services {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .smart-service-card {
    min-height: auto;
    padding: 22px;
  }

  .smart-service-card:nth-child(3) {
    grid-column: auto;
  }

  .smart-scroll-down {
    display: none;
  }
}

@media (max-width: 420px) {
  .smart-logo-text span {
    display: none;
  }

  .smart-hero-text h1 {
    font-size: 39px;
  }

  .smart-service-card h3 {
    font-size: 17px;
  }
}
.smart-about-section {
  position: relative;
  padding: 120px 0;
  background: var(--smart-light-bg);
  color: var(--smart-text);
}

.smart-about-bg-text {
  position: absolute;
  top: 30px;
  right: 80px;
  font-family: Arial, sans-serif;
  font-size: clamp(100px, 15vw, 260px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -10px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(11, 79, 108, 0.1);
  pointer-events: none;
  user-select: none;
}

.smart-about-container {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 80px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 75px;
}

.smart-about-image-wrapper {
  position: relative;
  width: 44%;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-about-image {
  position: relative;
  width: 85%;
  height: 625px;
  overflow: hidden;
  z-index: 3;
  border-radius: 5px 50px 5px 50px;
}

.smart-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02),
    rgba(8, 25, 35, 0.15)
  );
  pointer-events: none;
  border-radius: 5px 50px 5px 50px;
}

.smart-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  border-radius: 5px 50px 5px 50px;
}

.smart-about-image-wrapper:hover .smart-about-image img {
  transform: scale(1.05);
}

.smart-about-badge {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 35px;
  width: 125px;
  height: 350px;
  background: var(--smart-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  box-shadow: 20px 20px 0 rgba(8, 25, 35, 0.08);
  border-radius: 20px 20px 0 0;
}

.smart-about-badge span {
  color: white;
  font-size: 14px;
  font-weight: 800;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 1px;
  text-align: center;
}

.smart-about-badge-icon {
  width: 50px;
  height: 50px;
  margin-top: 25px;
  border: 2px solid var(--smart-primary);
  color: var(--smart-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.smart-about-corner {
  position: absolute;
  width: 135px;
  height: 135px;
  border-color: var(--smart-primary);
  z-index: 1;
}

.smart-corner-top {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.smart-corner-bottom {
  bottom: 0;
  left: 35px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.smart-about-content {
  width: 56%;
  max-width: 720px;
  padding: 20px 0;
}

.smart-about-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--smart-primary-dark);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.smart-about-label i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--smart-primary);
  color: var(--smart-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.smart-about-content h2 {
  font-size: clamp(50px, 5vw, 82px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 30px;
  color: var(--smart-dark);
}

.smart-about-content h2 span {
  display: block;
  color: var(--smart-primary);
}

.smart-about-description {
  color: #52636d;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 14px;
  max-width: 690px;
}

.smart-about-description.secondary {
  color: #71818a;
  font-size: 15px;
}

.smart-about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.smart-about-card {
  position: relative;
  min-height: 145px;
  padding: 22px;
  background: var(--smart-white);
  border: 1px solid rgba(11, 79, 108, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  border-radius: 0 20px 20px 0;
}

.smart-about-card::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 0;
  right: 0;
  top: 0;
  background: var(--smart-primary);
  transition: 0.4s ease;
}

.smart-about-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  left: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(34, 184, 214, 0.08);
  transition: 0.4s ease;
}

.smart-about-card:hover {
  transform: translateY(-7px);
  border-color: rgba(34, 184, 214, 0.25);
  box-shadow: 0 18px 40px rgba(8, 25, 35, 0.09);
}

.smart-about-card:hover::before {
  height: 100%;
}

.smart-about-card:hover::after {
  transform: scale(1.8);
}

.smart-about-card-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--smart-primary-dark);
  color: var(--smart-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: 0.4s ease;
  border-radius: 5px;
}

.smart-about-card:hover .smart-about-card-icon {
  background: var(--smart-primary);
  color: var(--smart-dark);
  transform: rotate(-5deg);
}

.smart-about-card-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.smart-about-card-content > span {
  display: block;
  color: var(--smart-primary-dark);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.smart-about-card-content h4 {
  color: var(--smart-dark);
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 7px;
}

.smart-about-card-content p {
  color: #71818a;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  .smart-about-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .smart-about-card {
    min-height: 125px;
    padding: 18px;
    gap: 14px;
  }

  .smart-about-card-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 17px;
  }

  .smart-about-card-content h4 {
    font-size: 14px;
  }

  .smart-about-card-content p {
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .smart-about-card {
    padding: 16px;
  }

  .smart-about-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .smart-about-card-content h4 {
    font-size: 13px;
  }
}

.smart-about-play:hover span {
  transform: scale(1.1);
}

.smart-about-btn {
  min-height: 62px;
  background: var(--smart-primary);
  color: var(--smart-white);
  text-decoration: none;
  padding: 7px 18px 7px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 900;
  transition: 0.35s ease;
  border-radius: 30px;
}

.smart-about-btn i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.smart-about-btn:hover {
  color: var(--smart-white);
  background: var(--smart-primary-dark);
  transform: translateY(-4px);
}

.smart-about-btn:hover i {
  transform: translateX(-5px);
}

@media (max-width: 1200px) {
  .smart-about-container {
    width: min(1100px, calc(100% - 50px));
    gap: 45px;
  }

  .smart-about-image-wrapper {
    width: 43%;
    min-height: 570px;
  }

  .smart-about-image {
    height: 550px;
  }

  .smart-about-badge {
    width: 100px;
    height: 300px;
  }

  .smart-about-content {
    width: 57%;
  }

  .smart-about-content h2 {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .smart-about-section {
    padding: 90px 0;
  }

  .smart-about-container {
    flex-direction: column;
    width: calc(100% - 40px);
    gap: 60px;
  }

  .smart-about-image-wrapper {
    width: 100%;
    max-width: 650px;
    min-height: 600px;
  }

  .smart-about-image {
    width: 85%;
    height: 570px;
  }

  .smart-about-content {
    width: 100%;
    max-width: 800px;
  }

  .smart-about-content h2 {
    font-size: clamp(48px, 8vw, 70px);
  }

  .smart-about-description {
    max-width: 100%;
  }

  .smart-about-bg-text {
    font-size: 130px;
  }
}

@media (max-width: 767px) {
  .smart-about-section {
    padding: 70px 0;
  }

  .smart-about-container {
    width: calc(100% - 28px);
    gap: 45px;
  }

  .smart-about-image-wrapper {
    min-height: 460px;
  }

  .smart-about-image {
    width: 88%;
    height: 440px;
  }

  .smart-about-badge {
    width: 75px;
    height: 230px;
    bottom: 20px;
  }

  .smart-about-badge span {
    font-size: 10px;
  }

  .smart-about-badge-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin-top: 15px;
  }

  .smart-about-corner {
    width: 80px;
    height: 80px;
  }

  .smart-about-content h2 {
    font-size: 45px;
    letter-spacing: -1px;
    margin-bottom: 22px;
  }

  .smart-about-label {
    font-size: 13px;
  }

  .smart-about-description {
    font-size: 13px;
    line-height: 2;
  }

  .smart-about-description.secondary {
    font-size: 12px;
  }

  .smart-about-skills {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }

  .smart-skill-top span {
    font-size: 13px;
  }

  .smart-about-bottom {
    margin-top: 35px;
    gap: 18px;
  }

  .smart-about-play {
    width: 62px;
    height: 62px;
  }

  .smart-about-play span {
    width: 44px;
    height: 44px;
  }

  .smart-about-btn {
    flex: 1;
    justify-content: space-between;
    padding-left: 18px;
    font-size: 13px;
  }

  .smart-about-bg-text {
    font-size: 80px;
    top: 25px;
    right: -20px;
  }
}

@media (max-width: 420px) {
  .smart-about-image-wrapper {
    min-height: 390px;
  }

  .smart-about-image {
    height: 370px;
  }

  .smart-about-badge {
    width: 62px;
    height: 195px;
    padding: 10px;
  }

  .smart-about-badge span {
    font-size: 8px;
  }

  .smart-about-badge-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
    margin-top: 10px;
  }

  .smart-about-content h2 {
    font-size: 38px;
  }

  .smart-about-bottom {
    gap: 12px;
  }

  .smart-about-play {
    display: none;
  }

  .smart-about-btn {
    width: 100%;
  }
}
.vision-mission-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background: var(--smart-dark);
    color: var(--smart-white);
    min-height: 700px;
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.vision-mission-section::before {
    content: "CREATIVE";
    position: absolute;
    top: 130px;
    right: 280px;
    font-size: clamp(100px, 15vw, 240px);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(34, 184, 214, .22);
    pointer-events: none;
    white-space: nowrap;
}

.vision-mission-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/bg-missionpng.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
}

.section-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1250px;
    margin: 0 auto 70px;
    padding-top: 28px;
    text-align: center;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.section-number {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--smart-primary);
    color: var(--smart-dark);
    font-size: 14px;
    font-weight: 800;
    clip-path: polygon(
        25% 6.7%,
        75% 6.7%,
        100% 50%,
        75% 93.3%,
        25% 93.3%,
        0 50%
    );
}

.section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--smart-white)  ;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    background-color: rgba(11, 79, 108, .57);
    display: inline-block;
    padding: 5px 28px;
    border-radius: 30px;
    border: 1px solid var(--smart-primary-dark);
}

.section-top h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 78px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
}

.section-top h2 span {
    color: var(--smart-primary);
}

.section-intro {
    max-width: 470px;
    padding-top: 10px;
}

.section-intro p {
    margin: 0;
    color: var(--smart-text-light);
    font-size: 17px;
    line-height: 1.9;
}

.section-dots {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.dot {
    width: 5px;
    height: 5px;
    display: block;
    background: var(--smart-primary);
    border-radius: 50%;
}

.dot.active {
    width: 30px;
    height: 30px;
    border: 1px solid var(--smart-primary);
    background: transparent;
    position: relative;
}

.dot.active::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--smart-primary);
    border-radius: 50%;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: auto;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    position: relative;
    z-index: 3;
}

.vision-card {
    position: relative;
    min-height: 430px;
    padding: 45px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: var(--smart-white);
    background: #10232E;
    border: 1px solid rgba(255, 255, 255, .08);
    transition:
        transform .5s ease,
        border-color .5s ease,
        background .5s ease;
    border-radius: 8px 15px 15px 8px;
}

.vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: var(--smart-primary);
    transition: height .5s ease;
    border-radius: 2px 15px 15px 2px;
}

.vision-card:hover,
.vision-card.active-card {
    transform: translateY(-8px);
    border-color: rgba(34, 184, 214, .35);
}

.vision-card:hover::before,
.vision-card.active-card::before {
    height: 100%;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 100% 100%,
        rgba(34, 184, 214, .12),
        transparent 40%
    );
    opacity: .8;
    transition: opacity .5s ease;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--smart-primary);
    color: var(--smart-dark);
    background: var(--smart-primary);
    font-size: 25px;
    clip-path: polygon(
        25% 6.7%,
        75% 6.7%,
        100% 50%,
        75% 93.3%,
        25% 93.3%,
        0 50%
    );
    transition: .4s ease;
}

.vision-card:hover .card-icon {
    color: var(--smart-dark);
    background: var(--smart-primary);
    transform: rotate(8deg);
}

.card-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1B3948;
    border-radius: 50%;
    color: var(--smart-primary);
    transition: .4s ease;
}

.vision-card:hover .card-arrow {
    color: var(--smart-dark);
    background: var(--smart-primary);
    transform: translateX(-5px);
}

.card-number {
    margin-bottom: 10px;
    color: var(--smart-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.vision-card h3 {
    margin: 0 0 20px;
    color: var(--smart-white);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
}

.vision-card p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 2;
}

.card-line {
    width: 55px;
    height: 2px;
    margin-top: auto;
    background: var(--smart-primary);
    transition: width .5s ease;
}

.vision-card:hover .card-line {
    width: 100px;
}
@media (max-width: 991.98px) {
  .vision-mission-section {
    padding: 80px 0;
  }

  .section-top {
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
  }

  .section-intro {
    max-width: 700px;
  }



  .vision-card {
    min-height: 390px;
  }

  .vision-decoration {
    opacity: 0.5;
    left: -160px;
  }
}

@media (max-width: 767.98px) {
  .vision-mission-section {
    padding: 65px 15px;
  }
  .vision-cards {
    grid-template-columns: 1fr;
  }
  .vision-mission-section::before {
    top: 50px;
    font-size: 90px;
  }

  .section-top {
    padding-top: 20px;
    margin-bottom: 40px;
  }

  .section-title-wrap {
    gap: 15px;
  }

  .section-number {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 11px;
  }

  .section-top h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .section-intro p {
    font-size: 15px;
    line-height: 1.8;
  }

  .vision-card {
    min-height: 370px;
    padding: 30px 25px;
  }

  .card-top {
    margin-bottom: 35px;
  }

  .card-icon {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .vision-card h3 {
    font-size: 30px;
  }

  .vision-card p {
    font-size: 14px;
    line-height: 1.9;
  }

  .vision-decoration {
    width: 260px;
    height: 260px;
    left: -130px;
    bottom: -70px;
  }

  .hex-two {
    inset: 40px;
  }

  .hex-three {
    inset: 80px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .section-title-wrap {
    align-items: flex-start;
  }

  .section-top h2 {
    font-size: 35px;
  }

  .vision-card {
    min-height: 400px;
    padding: 25px 20px;
  }

  .vision-card h3 {
    font-size: 27px;
  }

  .card-arrow {
    width: 38px;
    height: 38px;
  }
}
.vision-card-image {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.9)),
    url("../images/vision.png");
  background-size: cover;
  background-position: center;
}

.vision-card-image:hover {
  background-position: center;
  background-size: 105%;
}
.vision-card-image-2 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.9)),
    url("../images/mission.png");
  background-size: cover;
  background-position: center;
}

.vision-card-image:hover {
  background-position: center;
  background-size: 105%;
}
.elementor-shape[data-negative="false"].elementor-shape-bottom,
.elementor-shape[data-negative="true"].elementor-shape-top {
  transform: rotate(360deg);
}

.elementor-shape-bottom {
  top: -1px;
}

.elementor-shape {
  direction: ltr;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.elementor-shape svg {
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  width: 100%;
}
svg {
  fill: var(--smart-light-bg);
}
.values-section {
    position: relative;
    z-index: 3;
    margin-top: 90px;
    padding-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.values-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 35px;
}

.values-heading h3 {
    margin: 0;
    color: var(--smart-white);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 900;
    line-height: 1;
}

.values-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--smart-text-light);
    font-size: 16px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    position: relative;
    min-height: 260px;
    padding: 28px 25px;
    overflow: hidden;
    background: #10232E;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s ease;
    border-radius: 20px 20px 5px 5px;
    z-index: 1;
}

.value-card::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--smart-primary);
    transition: width .45s ease;
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-8px);
    background: #143342;
    border-color: rgba(34, 184, 214, .35);
}

.value-card:hover::before {
    width: 100%;
}

.value-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--smart-dark);
    border: 1px solid rgba(34, 184, 214, .6);
    background-color: var(--smart-primary);
    font-size: 21px;
    clip-path: polygon(
        25% 6.7%,
        75% 6.7%,
        100% 50%,
        75% 93.3%,
        25% 93.3%,
        0 50%
    );
    transition: .4s ease;
}

.value-card:hover .value-icon {
    color: var(--smart-dark);
    background: var(--smart-primary);
    transform: rotate(8deg);
}

.value-content span {
    display: block;
    margin-bottom: 7px;
    color: var(--smart-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.value-content h4 {
    margin: 0 0 10px;
    color: var(--smart-white);
    font-size: 25px;
    font-weight: 800;
}

.value-content p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.8;
}

.value-arrow {
    position: absolute;
    left: 22px;
    bottom: 22px;
    color: rgba(34, 184, 214, .4);
    font-size: 13px;
    transition: .4s ease;
}

.value-card:hover .value-arrow {
    color: var(--smart-primary);
    transform: translateX(-6px);
}
@media (max-width: 1199.98px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .values-section {
    margin-top: 70px;
  }

  .values-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .values-heading p {
    max-width: 650px;
  }
}

@media (max-width: 767.98px) {
  .values-section {
    margin-top: 60px;
    padding-top: 35px;
  }

  .values-heading h3 {
    font-size: 40px;
  }

  .values-heading p {
    font-size: 14px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .value-card {
    min-height: 220px;
    padding: 25px 20px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
  }

  .value-content h4 {
    font-size: 23px;
  }
}
.services-section {
  padding: 100px 0;
  direction: rtl;
  overflow: hidden;
  background-color: var(--smart-light-bg);
}

.services-heading {
  max-width: 700px;
  margin: 0 auto 55px;
}

.services-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--smart-primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.services-label::before,
.services-label::after {
  content: "";
  width: 35px;
  height: 1px;
  background: var(--smart-primary);
  margin: 0 12px;
}

.services-heading h2 {
  margin: 0 0 12px;
  color: var(--smart-text);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
}

.services-heading p {
  margin: 0;
  color: var(--smart-muted);
  font-size: 18px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: stretch;
}

.services-grid-bottom {
  margin-top: 38px;
}

.services-column {
    background: #f7fbfc;
    border-radius: 34px;
    overflow: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(11, 79, 108, .10);
    transition: all 0.6s ease;
    box-shadow: 0 12px 35px rgba(8, 25, 35, .08);
}

.service-content-card {
  position: relative;
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.service-number {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 105px;
  line-height: 1;
  font-weight: 800;
  color: rgba(23, 23, 23, 0.045);
  letter-spacing: -6px;
  pointer-events: none;
  transition: all 0.6s ease;
}

.service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--smart-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smart-primary);
  font-size: 36px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.service-info {
  position: relative;
  z-index: 2;
}

.service-info h3,
.brand-identity-content h3 {
  color: var(--smart-text);
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.8px;
}

.service-info p,
.brand-identity-content p {
  color: var(--smart-muted);
  font-size: 16px;
  line-height: 1.9;
  max-width: 440px;
}

.service-image-card {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 22px;
  position: relative;
}

.service-image-card::after,
.brand-identity-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.service-image-card img,
.brand-identity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-column:hover .service-image-card img {
  transform: scale(1.05);
}

.service-image-card:hover img,
.brand-identity-image:hover img {
  transform: scale(1.06);
}

.brand-identity-card {
    margin-top: 38px;
    background: #F3FAFC;
    border-radius: 34px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(11, 79, 108, .10);
    transition: all 0.6s ease;
    box-shadow: 0 15px 40px rgba(11, 79, 108, .12);
}
.brand-identity-card:hover,
.services-column:hover {
  border-color: var(--smart-primary);
}
.brand-identity-content {
  position: relative;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-identity-content .service-number {
  top: 10px;
  left: 15px;
  transition: all 0.6s ease;
}
.brand-identity-card:hover .service-number,
.services-column:hover .service-number {
  color: var(--smart-primary);
  opacity: 0.8;
}
.brand-identity-image {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1199px) {
  .services-grid {
    gap: 25px;
  }

  .services-column {
    padding: 14px;
    border-radius: 28px;
  }

  .service-content-card {
    padding: 28px 16px;
  }

  .service-info h3,
  .brand-identity-content h3 {
    font-size: 25px;
  }

  .service-info p,
  .brand-identity-content p {
    font-size: 15px;
  }

  .service-image-card {
    height: 280px;
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-bottom {
    margin-top: 25px;
  }

  .brand-identity-card {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 65px 0;
  }

  .services-heading {
    margin-bottom: 35px;
  }

  .services-heading h2 {
    letter-spacing: -1px;
  }

  .services-heading p {
    font-size: 16px;
  }

  .services-label::before,
  .services-label::after {
    width: 20px;
    margin: 0 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-grid-bottom {
    margin-top: 22px;
  }

  .services-column {
    gap: 20px;
    border-radius: 26px;
    padding: 13px;
  }

  .service-content-card {
  }

  .service-image-card {
    height: 270px;
  }

  .service-number {
    font-size: 85px;
  }

  .brand-identity-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 13px;
    border-radius: 26px;
  }

  .brand-identity-content {
    min-height: 330px;
    padding: 30px 18px;
  }

  .brand-identity-image {
    height: 270px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 55px 0;
  }

  .service-icon {
    width: 68px;
    height: 68px;
    font-size: 29px;
  }

  .service-info h3,
  .brand-identity-content h3 {
    font-size: 23px;
  }

  .service-info p,
  .brand-identity-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .service-image-card {
    height: 230px;
  }

  .brand-identity-image {
    height: 230px;
  }
}
.product-gallery {
  position: relative;
  padding: 90px 0;
  background: var(--smart-light-bg);
  overflow: hidden;
  direction: rtl;
}

.gallery-heading {
  position: relative;
  z-index: 5;
}

.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--smart-primary);
  font-size: 15px;
  font-weight: 700;
}

.gallery-label i {
  font-size: 17px;
}

.gallery-heading h2 {
  margin: 15px 0 0;
  color: var(--smart-text);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.3;
  font-weight: 800;
}

.gallery-heading h2 span {
  color: var(--smart-primary);
}

.gallery-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 2;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-wrapper.grabbing {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: max-content;
    padding: 15px 0 20px;
    will-change: transform;
    animation: galleryScroll 45s linear infinite;
}

.gallery-track:hover {
    animation-play-state: running;
}

@keyframes galleryScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
.gallery-item {
  width: 280px;
  height: 200px;
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ddd;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(16, 16, 16, 0.78) 0%,
    rgba(16, 16, 16, 0) 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--smart-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.gallery-overlay i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--smart-white);
  color: var(--smart-primary);
  border-radius: 50%;
  font-size: 14px;
}

.gallery-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 4;
  pointer-events: none;
}

.gallery-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--smart-light-bg), transparent);
}

.gallery-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--smart-light-bg), transparent);
}
.gallery-modal {
  z-index: 999999999;

}
.gallery-modal .modal-dialog {
  max-width: 1100px;
}

.gallery-modal .modal-content {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 20px;
  overflow: visible;
}

.gallery-modal .modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal .modal-body img {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    border-radius: 20px;

}

.gallery-modal-close {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--smart-white);
  color: var(--smart-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-modal-close:hover {
  background: var(--smart-primary);
  color: var(--smart-white);
  transform: rotate(90deg);
}

.modal-backdrop.show {
  opacity: 0.8;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

@media (max-width: 991px) {
  .product-gallery {
    padding: 75px 0;
  }

  .gallery-track {
    gap: 15px;
  }

  .gallery-item {
    width: 260px;
    height: 190px;
    flex-basis: 260px;
  }

  .gallery-fade {
    width: 70px;
  }

  .gallery-modal .modal-dialog {
    margin: 20px;
  }

  .gallery-modal .modal-body img {
    max-height: 80vh;
  }

  .gallery-modal-close {
    top: -15px;
    left: -8px;
  }
}

@media (max-width: 767px) {
  .product-gallery {
    padding: 60px 0;
  }

  .gallery-heading h2 {
    font-size: 34px;
  }

  .gallery-item {
    width: 230px;
    height: 170px;
    flex-basis: 230px;
    border-radius: 16px;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 12px;
  }

  .gallery-overlay span {
    font-size: 9px;
  }

  .gallery-overlay i {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .gallery-fade {
    width: 45px;
  }

  .gallery-modal .modal-dialog {
    margin: 15px;
  }

  .gallery-modal .modal-body img {
    max-height: 75vh;
    border-radius: 12px;
  }

  .gallery-modal-close {
    width: 38px;
    height: 38px;
    font-size: 15px;
    top: -12px;
    left: 0;
  }
}

@media (max-width: 480px) {
  .gallery-heading h2 {
    font-size: 29px;
  }

  .gallery-label {
    font-size: 14px;
  }

  .gallery-item {
    width: 210px;
    height: 155px;
    flex-basis: 210px;
  }

  .gallery-track.gallery-auto-scroll {
    animation-duration: 35s;
  }
}
.why-us-section {
    position: relative;
    padding: 110px 0;
    background: var(--smart-dark);
    color: var(--smart-white);
    overflow: hidden;
    direction: rtl;
    z-index: 1;
    border-radius: 200px;
}

.why-us-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/why-us-bg.webp);
    background-repeat: repeat;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.why-us-section::after {
    content: "";
    position: absolute;
    width: 1450px;
    height: 1450px;
    bottom: -300px;
    left: -150px;
    background: rgba(34, 184, 214, 0.045);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.why-us-content {
    position: relative;
    z-index: 2;
}

.why-us-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--smart-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-us-label::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--smart-primary);
}

.why-us-title {
    margin: 0;
    color: var(--smart-white);
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -2px;
}

.why-us-title span {
    display: block;
    color: var(--smart-primary);
}

.why-us-description {
    max-width: 690px;
    margin: 28px 0 45px;
    color: var(--smart-text-light);
    font-size: 17px;
    line-height: 2;
}

.features-box {
    position: relative;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--smart-border);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease;
}

.feature-item:last-child {
    border-bottom: 0;
}

.feature-item:hover {
    background: rgba(34, 184, 214, 0.055);
}

.feature-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smart-primary);
    font-size: 30px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin: 0 0 8px;
    color: var(--smart-white);
    font-size: 25px;
    font-weight: 700;
}

.feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.9;
}

.why-us-visual {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(34, 184, 214, 0.12);
    filter: blur(100px);
    border-radius: 50%;
}

.main-image-wrapper {
    position: relative;
    width: 82%;
    height: 690px;
    border-radius: 48% 48% 48% 48%;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.main-image-wrapper::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 3px dashed rgba(11, 79, 108, 0.75);
    border-radius: 48% 48% 48% 48%;
}

.main-image-wrapper .why-us-image img {
    border-radius: 48% 48% 48% 48%;
    width: 100%;
    height: 100%;
}

.why-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
    border-radius: 48% 48% 48% 48%;
}

.main-image-wrapper:hover .why-us-image {
    transform: scale(1.04);
}

.satisfaction-card {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: var(--smart-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.satisfaction-number {
    color: var(--smart-primary);
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 15px;
}

.satisfaction-text {
    color: var(--smart-white);
    font-size: 17px;
    line-height: 1.8;
}

.floating-stat {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(8, 25, 35, 0.9);
    border: 1px solid rgba(34, 184, 214, 0.18);
    border-radius: 50px;
    padding: 10px 18px 10px 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: floating 4s ease-in-out infinite;
}

.floating-stat strong {
    display: block;
    color: var(--smart-white);
    font-size: 18px;
    line-height: 1.2;
}

.floating-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    margin-top: 3px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--smart-primary);
    color: var(--smart-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.stat-one {
    top: 17%;
    right: 74%;
}

.stat-two {
    bottom: 22%;
    right: 2%;
    animation-delay: 1.5s;
}
@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.why-us-content,
.why-us-visual {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.why-us-section.show .why-us-content,
.why-us-section.show .why-us-visual {
  opacity: 1;
  transform: translateY(0);
}

.why-us-visual {
  transition-delay: 0.2s;
}

@media (max-width: 1199px) {
  .why-us-section {
    padding: 90px 0;
  }

  .why-us-title {
    font-size: 50px;
  }

  .why-us-visual {
    min-height: 620px;
  }

  .main-image-wrapper {
    height: 600px;
    width: 82%;
  }

  .satisfaction-card {
    width: 230px;
    height: 230px;
  }

  .satisfaction-number {
    font-size: 52px;
  }

  .satisfaction-text {
    font-size: 15px;
  }

  .feature-item {
    padding: 24px;
  }

  .feature-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .why-us-section {
    padding: 80px 0;
        border-radius: 100px;

  }

  .why-us-content {
    text-align: right;
  }

  .why-us-description {
    max-width: 100%;
  }

  .why-us-visual {
    min-height: 620px;
    margin-top: 20px;
  }

  .main-image-wrapper {
    width: 70%;
    height: 600px;
  }

  .satisfaction-card {
    left: 8%;
    bottom: 20px;
  }

  .stat-one {
    right: 8%;
  }

  .stat-two {
    right: 8%;
  }
}

@media (max-width: 767px) {
  .why-us-section {
    padding: 65px 0;
        border-radius: 50px;

  }

  .why-us-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .why-us-description {
    font-size: 15px;
    line-height: 1.9;
    margin: 22px 0 30px;
  }

  .features-box {
    border-radius: 22px;
  }

  .feature-item {
    gap: 15px;
    padding: 22px 18px;
  }

  .feature-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .feature-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .feature-content p {
    font-size: 13px;
    line-height: 1.8;
  }

  .why-us-visual {
    min-height: 500px;
    margin-top: 25px;
  }

  .main-image-wrapper {
    width: 78%;
    height: 500px;
    border-radius: 45% 45% 45% 45%;
  }

  .satisfaction-card {
    width: 185px;
    height: 185px;
    left: 2%;
    bottom: 0;
  }

  .satisfaction-number {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .satisfaction-text {
    font-size: 12px;
    line-height: 1.7;
  }

  .floating-stat {
    padding: 8px 14px 8px 9px;
  }

  .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .floating-stat strong {
    font-size: 15px;
  }

  .floating-stat span {
    font-size: 9px;
  }

  .stat-one {
    top: 8%;
    right: 2%;
  }

  .stat-two {
    bottom: 19%;
    right: 2%;
  }
}

@media (max-width: 480px) {
  .why-us-section {
    padding: 55px 0;
  }

  .why-us-label {
    font-size: 14px;
  }

  .why-us-title {
    font-size: 35px;
  }

  .why-us-description {
    font-size: 14px;
  }

  .feature-item {
    padding: 20px 15px;
  }

  .feature-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .feature-content h3 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 12px;
  }

  .why-us-visual {
    min-height: 430px;
  }

  .main-image-wrapper {
    width: 82%;
    height: 430px;
  }

  .satisfaction-card {
    width: 155px;
    height: 155px;
  }

  .satisfaction-number {
    font-size: 35px;
  }

  .satisfaction-text {
    font-size: 10px;
  }

  .floating-stat {
    transform: scale(0.85);
  }

  .stat-one {
    right: -5px;
  }

  .stat-two {
    right: -5px;
  }
}
.work-process-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 150px;
  background: var(--smart-light-bg);
  z-index: 1;
}

.work-process-section > .container {
  position: relative;
  z-index: 2;
}
.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 65px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--smart-white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.label-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 184, 214, 0.12);
    color: var(--smart-dark);
    border-radius: 50%;
    transform: rotate(-20deg);
    font-size: 14px;
}
.section-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.3;
    font-weight: 800;
    color: var(--smart-dark);
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--smart-muted);
    font-size: 17px;
    font-weight: 500;
}

.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    direction: rtl;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.process-step.show {
    opacity: 1;
    transform: translateY(0);
}

.step-visual {
    position: relative;
    height: 245px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-wrapper {
    width: 195px;
    height: 195px;
    border-radius: 50%;
    background: var(--smart-white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 30px rgba(8, 25, 35, 0.025);
}

.step-circle {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: var(--smart-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smart-primary);
    font-size: 48px;
}

.step-circle i {
    font-size: 45px;
}

.step-number {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    color: var(--smart-primary);
    margin: 20px 0 20px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--smart-text);
    margin-bottom: 12px;
}

.process-step p {
    max-width: 245px;
    margin: 0 auto;
    color: var(--smart-muted);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
}

.process-connector {
    position: absolute;
    z-index: 1;
    height: 115px;
    width: 15%;
    pointer-events: none;
}

.connector-dot {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--smart-primary);
}

.connector-arrow {
    position: absolute;
    color: var(--smart-primary);
    font-size: 27px;
}

.connector-1 {
    top: 8px;
    right: 8%;
    border-top: 2px solid var(--smart-primary);
    border-radius: 100px 100px 0 0;
}

.connector-1::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--smart-primary);
    border-radius: 100px 100px 0 0;
    top: 0;
    right: 0;
}

.connector-1 .connector-dot {
    right: 0;
    top: 145px;
}

.connector-1 .connector-arrow {
    left: -2px;
    top: 45px;
    transform: rotate(-50deg);
}

.connector-2 {
    top: 125px;
    right: 27%;
    border-bottom: 2px solid var(--smart-primary);
    border-radius: 0 0 100px 100px;
}

.connector-2 .connector-dot {
    right: 0;
    top: -7px;
}

.connector-2 .connector-arrow {
    left: -2px;
    top: 35px;
    transform: rotate(50deg);
}

.connector-3 {
    top: 8px;
    right: 48%;
    border-top: 2px solid var(--smart-primary);
    border-radius: 100px 100px 0 0;
}

.connector-3 .connector-dot {
    right: 0;
    top: 145px;
}

.connector-3 .connector-arrow {
    left: -2px;
    top: 45px;
    transform: rotate(-50deg);
}

.connector-4 {
    top: 125px;
    right: 68%;
    border-bottom: 2px solid var(--smart-primary);
    border-radius: 0 0 100px 100px;
}

.connector-4 .connector-dot {
    right: 0;
    top: -7px;
}

.connector-4 .connector-arrow {
    left: -2px;
    top: 35px;
    transform: rotate(50deg);
}
@media (max-width: 1199.98px) {
  .work-process-section {
    padding: 70px 0 80px;
  }

  .circle-wrapper {
    width: 165px;
    height: 165px;
  }

  .step-circle {
    width: 125px;
    height: 125px;
  }

  .step-circle i {
    font-size: 38px;
  }

  .step-number {
    font-size: 34px;
  }

  .process-step h3 {
    font-size: 20px;
  }

  .process-step p {
    font-size: 14px;
    padding: 0 8px;
  }

  .step-visual {
    height: 215px;
  }

  .connector-1,
  .connector-3 {
    top: 0;
  }

  .connector-2,
  .connector-4 {
    top: 105px;
  }
}

@media (max-width: 991.98px) {
  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 30px;
  }

  .process-connector {
    display: none;
  }

  .step-visual {
    height: 190px;
  }

  .circle-wrapper {
    width: 160px;
    height: 160px;
  }

  .step-circle {
    width: 120px;
    height: 120px;
  }

  .process-step p {
    max-width: 290px;
  }

  .process-step:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .work-process-section {
    padding: 55px 0 65px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-label {
    font-size: 13px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .section-heading p {
    font-size: 14px;
    padding: 0 15px;
  }

  .process-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-step:last-child {
    grid-column: auto;
  }

  .step-visual {
    height: 175px;
  }

  .circle-wrapper {
    width: 150px;
    height: 150px;
  }

  .step-circle {
    width: 112px;
    height: 112px;
  }

  .step-circle i {
    font-size: 35px;
  }

  .step-number {
    font-size: 32px;
    margin: 16px 0 12px;
  }

  .process-step h3 {
    font-size: 21px;
  }

  .process-step p {
    font-size: 14px;
    max-width: 300px;
    line-height: 1.8;
  }
}
.clients-sectors-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 50% 0%, rgba(34, 184, 214, 0.1), transparent 35%),
        var(--smart-dark);
    z-index: 1;
    border-radius: 0 0 50px 50px;
}

.clients-sectors-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/section-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.clients-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
}

.clients-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--smart-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.label-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.clients-heading h2 {
    margin-bottom: 15px;
    color: var(--smart-white);
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.3;
    font-weight: 800;
}

.clients-heading h2 span {
    color: var(--smart-primary);
}

.clients-heading p {
    max-width: 650px;
    margin: auto;
    color: var(--smart-text-light);
    font-size: 16px;
    line-height: 1.9;
}

.sectors-grid {
    position: relative;
    z-index: 2;
}

.sector-card {
    position: relative;
    height: 100%;
    padding: 32px 28px;
    overflow: hidden;
    border: 1px solid var(--smart-border);
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.09),
        rgba(255, 255, 255, 0.035)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sector-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -80px;
    left: -80px;
    border-radius: 50%;
    background: var(--smart-primary);
    opacity: 0;
    filter: blur(55px);
    transition: opacity 0.45s ease;
}

.sector-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: var(--smart-primary);
    border-radius: 0 24px 24px 0;
    transition: height 0.45s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 184, 214, 0.55);
    background: linear-gradient(
        145deg,
        rgba(34, 184, 214, 0.13),
        rgba(255, 255, 255, 0.04)
    );
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.sector-card:hover::before {
    opacity: 0.12;
}

.sector-card:hover::after {
    height: 100%;
}

.sector-number {
    position: absolute;
    top: 22px;
    left: 25px;
    color: rgba(255, 255, 255, 0.13);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.sector-card:hover .sector-number {
    color: rgba(34, 184, 214, 0.5);
}

.sector-icon {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border-radius: 20px;
    background: rgba(34, 184, 214, 0.1);
    border: 1px solid rgba(34, 184, 214, 0.25);
    color: var(--smart-primary);
    font-size: 30px;
    transition:
        transform 0.45s ease,
        background 0.45s ease,
        color 0.45s ease;
}

.sector-card:hover .sector-icon {
    transform: scale(1.08) rotate(-4deg);
    background: var(--smart-primary);
    color: var(--smart-dark);
}

.sector-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    color: var(--smart-white);
    font-size: 21px;
    line-height: 1.6;
    font-weight: 700;
}

.sector-line {
    display: block;
    width: 42px;
    height: 2px;
    background: var(--smart-primary);
    opacity: 0.7;
    transition: width 0.45s ease;
}

.sector-card:hover .sector-line {
    width: 75px;
}

.sector-arrow {
    position: absolute;
    left: 27px;
    bottom: 28px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.sector-card:hover .sector-arrow {
    background: var(--smart-primary);
    color: var(--smart-dark);
    transform: translateX(-5px);
}

.clients-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.clients-glow-one {
    width: 300px;
    height: 300px;
    right: -170px;
    top: 20%;
    background: rgba(34, 184, 214, 0.08);
}

.clients-glow-two {
    width: 250px;
    height: 250px;
    left: -150px;
    bottom: 10%;
    background: rgba(34, 184, 214, 0.06);
}
@media (max-width: 991.98px) {
  .clients-sectors-section {
    padding: 85px 0 90px;
  }

  .clients-heading {
    margin-bottom: 50px;
  }

  .sector-card {
    min-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .clients-sectors-section {
    padding: 65px 0 70px;
  }

  .clients-heading {
    margin-bottom: 40px;
  }

  .clients-label {
    font-size: 13px;
  }

  .clients-heading h2 {
    font-size: 32px;
  }

  .clients-heading p {
    padding: 0 12px;
    font-size: 14px;
  }

  .sector-card {
    min-height: 245px;
    padding: 27px 24px;
    border-radius: 20px;
  }

  .sector-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
    font-size: 27px;
    border-radius: 17px;
  }

  .sector-card h3 {
    font-size: 19px;
  }

  .sector-arrow {
    left: 23px;
    bottom: 23px;
  }
}
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 130px;
    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(34, 184, 214, 0.08),
            transparent 30%
        ),
        linear-gradient(135deg, #081923 0%, #0B1D27 45%, #102A37 100%);
}

.contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/contact-bg-shape.png") center center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

.contact-bg-shape {
    position: absolute;
    pointer-events: none;
}

.contact-shape-two {
    width: 420px;
    height: 420px;
    bottom: -330px;
    left: -180px;
    border-radius: 50%;
    background: rgba(34, 184, 214, 0.045);
    filter: blur(5px);
}

.contact-bg-circle {
    position: absolute;
    top: 42%;
    left: 42%;
    width: 220px;
    height: 220px;
    border: 1px dashed rgba(34, 184, 214, 0.22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-info {
    position: relative;
    z-index: 2;
    padding: 25px 20px 25px 40px;
    color: var(--smart-white);
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--smart-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-label span {
    display: inline-block;
    width: 55px;
    height: 3px;
    background: var(--smart-primary);
    border-radius: 10px;
}

.contact-info h2 {
    margin: 0;
    color: var(--smart-white);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 800;
}

.contact-info h2 span {
    color: var(--smart-primary);
}

.contact-intro {
    max-width: 470px;
    margin: 25px 0 45px;
    color: var(--smart-text-light);
    font-size: 17px;
    line-height: 2;
}

.contact-items {
    display: grid;
    gap: 23px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    color: inherit;
    text-decoration: none;
    transition: transform 0.35s ease;
}

.contact-item:hover {
    transform: translateX(-7px);
}

.contact-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--smart-primary);
    color: var(--smart-dark);
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(34, 184, 214, 0.16);
    transition: 0.35s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(-6deg) scale(1.05);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-item-content span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
}

.contact-item-content strong {
    color: var(--smart-white);
    font-size: 16px;
    font-weight: 600;
}

.social-area {
    margin-top: 48px;
}

.social-area h4 {
    margin-bottom: 18px;
    color: var(--smart-white);
    font-size: 16px;
    font-weight: 700;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: 0.35s ease;
}

.social-links a:hover {
    background: var(--smart-primary);
    border-color: var(--smart-primary);
    color: var(--smart-dark);
    transform: translateY(-5px);
}

.contact-form-card {
    position: relative;
    z-index: 3;
    padding: 48px 55px 55px;
    border-radius: 32px;
    background: var(--smart-white);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-label-small {
    margin-bottom: 8px;
    color: var(--smart-primary-dark);
    font-size: 15px;
    font-weight: 700;
}

.contact-form-card h3 {
    margin-bottom: 8px;
    color: var(--smart-dark);
    font-size: clamp(32px, 4vw, 45px);
    font-weight: 800;
}

.form-description {
    margin-bottom: 30px;
    color: var(--smart-muted);
    font-size: 14px;
    line-height: 1.8;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--smart-text);
    font-size: 14px;
    font-weight: 700;
}

.form-group label span {
    color: var(--smart-primary);
}

.input-wrapper {
    position: relative;
}

.input-wrapper > i:first-child {
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 2;
    color: var(--smart-primary);
    font-size: 16px;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    border: 1px solid #ededed;
    border-radius: 12px;
    outline: none;
    background: #f8f8f8;
    color: var(--smart-text);
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    transition: 0.3s ease;
}

.input-wrapper input,
.input-wrapper select {
    height: 56px;
    padding: 0 48px 0 18px;
}

.input-wrapper textarea {
    min-height: 145px;
    padding: 17px 48px 17px 18px;
    resize: vertical;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #a1a1a1;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: rgba(34, 184, 214, 0.6);
    background: var(--smart-white);
    box-shadow: 0 0 0 4px rgba(34, 184, 214, 0.08);
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    top: 50%;
    left: 18px;
    color: #888;
    font-size: 12px;
    transform: translateY(-50%);
    pointer-events: none;
}

.textarea-wrapper > i:first-child {
    top: 23px;
    transform: none;
}

.whatsapp-submit {
    position: relative;
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    padding: 14px 25px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: var(--smart-primary);
    color: var(--smart-dark);
    font-family: "Cairo", sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.35s ease;
}

.whatsapp-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.whatsapp-submit:hover::before {
    left: 130%;
}

.whatsapp-submit:hover {
    background: #49CBE3;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 184, 214, 0.25);
}

.whatsapp-submit i:first-child {
    font-size: 21px;
}

.whatsapp-submit i:last-child {
    font-size: 13px;
}
@media (max-width: 1199.98px) {
  .contact-info {
    padding-left: 10px;
  }

  .contact-form-card {
    padding: 40px 35px 45px;
  }

  .contact-info h2 {
    font-size: 50px;
  }
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 80px 0 90px;
  }

  .contact-info {
    padding: 0;
    text-align: center;
  }

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

  .contact-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-items {
    width: fit-content;
    margin: auto;
    text-align: right;
  }

  .social-area {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-bg-circle {
    display: none;
  }

  .contact-form-card {
    margin-top: 20px;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 65px 0 70px;
  }

  .contact-info h2 {
    font-size: 39px;
  }

  .contact-intro {
    margin-top: 18px;
    margin-bottom: 35px;
    font-size: 14px;
  }

  .contact-items {
    width: 100%;
    gap: 18px;
  }

  .contact-item {
    width: 100%;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 19px;
  }

  .contact-item-content strong {
    font-size: 14px;
  }

  .contact-form-card {
    padding: 30px 20px 32px;
    border-radius: 24px;
  }

  .contact-form-card h3 {
    font-size: 30px;
  }

  .form-description {
    font-size: 13px;
  }

  .input-wrapper input,
  .input-wrapper select {
    height: 53px;
  }

  .input-wrapper textarea {
    min-height: 125px;
  }

  .whatsapp-submit {
    font-size: 13px;
  }
}
.start-section {
  padding: 100px 0;
  background: var(--smart-light-bg);
  direction: rtl;
}

.start-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    padding: 80px 70px 45px;
    border-radius: 36px;
    background-image: url("../images/start-bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    isolation: isolate;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.start-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(34, 184, 214, 0.166),
            transparent 35%
        ),
        linear-gradient(
            90deg,
            rgba(8, 25, 35, 0.94),
            rgba(8, 25, 35, 0.68)
        );
    z-index: -1;
}

.start-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.start-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border: 1px solid rgba(34, 184, 214, 0.45);
    border-radius: 50px;
    background: rgba(34, 184, 214, 0.12);
    color: var(--smart-primary);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.start-badge i {
    font-size: 13px;
}

.start-content h2 {
    margin: 0 0 20px;
    color: var(--smart-white);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.start-content h2 span {
    color: var(--smart-primary);
    position: relative;
    display: inline-block;
}

.start-content p {
    max-width: 600px;
    margin: 0 0 32px;
    color: var(--smart-text-light);
    font-size: 19px;
    line-height: 1.9;
}

.start-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.start-btn {
    min-height: 55px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.primary-btn {
    color: var(--smart-white);
    background: var(--smart-primary);
    box-shadow: 0 10px 30px rgba(34, 184, 214, 0.25);
}

.primary-btn:hover {
    color: var(--smart-white);
    background: var(--smart-primary-dark);
    transform: translateY(-3px);
}

.primary-btn i {
    transition: 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(-5px);
}

.whatsapp-btn {
    color: var(--smart-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.whatsapp-btn:hover {
    color: var(--smart-white);
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.15);
    transform: translateY(-3px);
}

.whatsapp-btn i {
    color: #25d366;
    font-size: 20px;
}

.start-features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.start-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 1px solid var(--smart-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.start-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 184, 214, 0.45);
    background: rgba(255, 255, 255, 0.13);
}

.feature-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(34, 184, 214, 0.15);
    color: var(--smart-primary);
    font-size: 18px;
}

.start-feature strong {
    display: block;
    margin-bottom: 4px;
    color: var(--smart-white);
    font-size: 15px;
}

.start-feature span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}
@media (max-width: 991px) {
  .start-section {
    padding: 70px 0;
  }

  .start-wrapper {
    min-height: auto;
    padding: 60px 40px 35px;
    border-radius: 30px;
  }

  .start-content h2 {
    font-size: 48px;
  }

  .start-features {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .start-feature {
    padding: 15px 18px;
  }
}

@media (max-width: 767px) {
  .start-section {
    padding: 50px 0;
  }

  .start-wrapper {
    padding: 45px 25px 25px;
    border-radius: 24px;
    background-position: center;
  }

  .start-content h2 {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.5px;
  }

  .start-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .start-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .start-btn {
    width: 100%;
  }

  .start-features {
    gap: 10px;
    margin-top: 40px;
  }

  .start-feature {
    padding: 14px;
  }
}

@media (max-width: 400px) {
  .start-wrapper {
    padding: 38px 18px 20px;
  }

  .start-content h2 {
    font-size: 31px;
  }

  .start-badge {
    font-size: 12px;
  }
}
.site-footer {
    position: relative;
    padding: 80px 0 0;
    background: #081923;
    color: var(--smart-white);
    direction: rtl;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(34, 184, 214, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 300px;
    height: 2px;
    background: var(--smart-primary);
    opacity: 0.5;
}

.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 65px;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--smart-white);
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.footer-logo span {
    color: var(--smart-primary);
}

.footer-brand p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 2;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: var(--smart-white);
    background: var(--smart-primary);
    border-color: var(--smart-primary);
    transform: translateY(-4px);
}

.footer-column h4 {
    position: relative;
    margin: 5px 0 25px;
    padding-right: 14px;
    color: var(--smart-white);
    font-size: 17px;
    font-weight: 700;
}

.footer-column h4::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 22px;
    border-radius: 5px;
    background: var(--smart-primary);
    transform: translateY(-50%);
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    padding-right: 6px;
    color: var(--smart-primary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.7;
    transition: 0.3s ease;
}

.contact-item:hover {
    color: var(--smart-white);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(34, 184, 214, 0.1);
    color: var(--smart-primary);
    font-size: 14px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--smart-primary);
}
@media (max-width: 991px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 35px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-column h4 {
    margin-bottom: 18px;
  }

  .footer-bottom {
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.designed-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.designed-by span {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.designer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 6px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: all 0.3s ease;
}

.designer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.designer-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.smart-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 48px 40px;
    transition: 0.3s ease;
}

.smart-navbar.scrolled {
    background: rgba(8, 25, 35, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding-top: 12px;
    padding-bottom: 12px;
}
.floating-actions {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-whatsapp,
.back-to-top {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-whatsapp {
    background: #25d366;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    background: var(--smart-primary);
    color: var(--smart-white);
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    box-shadow: 0 8px 25px rgba(34, 184, 214, 0.25);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--smart-primary-dark);
    color: var(--smart-white);
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .floating-actions {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .floating-whatsapp,
    .back-to-top {
        width: 45px;
        height: 45px;
    }

    .floating-whatsapp {
        font-size: 22px;
    }
}
.product-gallery .image-wrapper{
  height: 400px;
  border-radius: 30px !important;

}
.product-gallery .image-wrapper img{
height: 100%;
object-fit: contain;
border-radius: 30px !important;
}
