:root {
  --main-color: #000024;
  --body-bg: #FFF;
  --navbar-bg: #FFF;
  --icon-active: #2c2f32;
  --icon-idle: #8b88ff;
  --p-color: #071c1f;
  --subp-color: #adafca;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(94, 92, 154, 0.0588235294);
  --border-color: #eaeaf5;
  --sub-light: #fcfcfd;
  --border-input: #dedeea;
}

.dark-mode {
  --main-color: #6956e5;
  --body-bg: #151521;
  --navbar-bg: #1e1e2d;
  --icon-active: #FFF;
  --icon-idle: #8b88ff;
  --p-color: #FFF;
  --subp-color: #9aa4bf;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(0, 0, 0, 0.0588235294);
  --border-color: #2f3749;
  --sub-light: #21283b;
  --border-input: #3f485f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "29ltbukra";
  src: url("assets/fonts/29ltbukraregular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
:root {
  --primary-color: #2a160d;
  --secondary-color: #2C2C2C;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f8f8;
  --white: #ffffff;
  --black: #000000;
  --border-color: #e0e0e0;
  --font-primary: "29ltbukra", "Tajawal", "Almarai", sans-serif;
  --font-heading: "29ltbukra", "Cairo", "Tajawal", sans-serif;
  --transition: all 0.3s ease;
}

html[dir=rtl] {
  direction: rtl;
  text-align: right;
}

html[dir=rtl] .ml-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}
html[dir=rtl] .mr-auto {
  margin-right: 0 !important;
  margin-left: auto !important;
}
html[dir=rtl] .text-left {
  text-align: right !important;
}
html[dir=rtl] .text-right {
  text-align: left !important;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}
.header .navbar {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin: 20px auto;
  max-width: 67%;
  border-radius: 15px;
  transition: var(--transition);
}
.header .navbar:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}
.header .navbar .container {
  position: relative;
}
.header .navbar .navbar-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.header .navbar .navbar-brand {
  padding: 0;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  width: 190px;
}
.header .navbar .navbar-brand .logo-img {
  height: 60px;
  width: auto;
}
.header .navbar .navbar-brand h3 {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
  margin-bottom: -2px;
}
.header .navbar .navbar-nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  order: 2;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .header .navbar .navbar-nav-center .nav-link {
    font-size: 14px !important;
    padding: 10px 15px !important;
  }
}
.header .navbar .navbar-nav-center .nav-item {
  margin: 0 3px;
}
.header .navbar .navbar-nav-center .nav-item .nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 10px !important;
  position: relative;
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.header .navbar .navbar-nav-center .nav-item .nav-link:hover, .header .navbar .navbar-nav-center .nav-item .nav-link.active {
  color: var(--primary-color);
  text-shadow: none;
}
.header .navbar .navbar-nav-center .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(201, 169, 97, 0.5);
}
.header .navbar .navbar-nav-center .nav-item .nav-link:hover::after, .header .navbar .navbar-nav-center .nav-item .nav-link.active::after {
  width: calc(100% - 40px);
}
.header .navbar .navbar-contact-btn {
  margin-right: auto;
  margin-left: 0;
  width: 135px;
}
.header .navbar .navbar-contact-btn .btn-contact {
  width: 100%;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 600;
  background-color: #FFF;
  color: var(--primary-color);
  border: 2px solid #FFF;
  border-radius: 25px;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}
.header .navbar .navbar-contact-btn .btn-contact:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}
@media (max-width: 991px) {
  .header .navbar .navbar-contact-btn .btn-contact {
    display: none !important;
  }
}
.header .navbar .navbar-toggler {
  border: none;
  padding: 5px 10px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  order: 4;
  margin-right: 15px;
}
.header .navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.header .navbar .navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header.scrolled .navbar .navbar-brand .logo-img {
  filter: none;
}
.header.scrolled .navbar .navbar-nav-center .nav-item .nav-link {
  color: var(--text-dark);
  text-shadow: none;
}
.header.scrolled .navbar .navbar-nav-center .nav-item .nav-link:hover, .header.scrolled .navbar .navbar-nav-center .nav-item .nav-link.active {
  color: var(--primary-color);
}
.header.scrolled .navbar .navbar-contact-btn .btn-contact {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.header.scrolled .navbar .navbar-contact-btn .btn-contact:hover {
  background-color: var(--primary-color);
  color: var(--white);
  opacity: 0.9;
}
.header.scrolled .navbar .navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.header.scrolled .navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1400px) {
  .hero-section {
    min-height: 900px;
    max-height: 1100px;
  }
}
.hero-section .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero-section .hero-content-wrapper {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 125px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-section .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section .hero-slider .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-section .hero-slider .hero-slide.active {
  opacity: 1;
}
.hero-section .hero-slider .hero-slide .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-slide .hero-image {
    background-position: center center;
    background-size: cover;
  }
}
.hero-section .hero-slider .hero-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.hero-section .hero-slider .hero-slide .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 150px;
}
.hero-section .hero-slider .hero-slide .hero-content .hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--white);
}
@media (max-width: 991px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-title {
    font-size: 1.75rem;
  }
}
.hero-section .hero-slider .hero-slide .hero-content .hero-title .highlight {
  color: #daa959;
  position: relative;
}
.hero-section .hero-slider .hero-slide .hero-content .hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px auto;
}
@media (max-width: 991px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-subtitle {
    font-size: 14px;
  }
}
.hero-section .hero-slider .hero-slide .hero-content .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.hero-section .hero-slider .hero-slide .hero-content .hero-buttons a {
  border-radius: 50px;
  width: 250px;
}
@media (max-width: 991px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-buttons a {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-buttons a {
    width: 180px;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-buttons a {
    width: 160px;
  }
}
.hero-section .hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  z-index: 2;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-section .hero-scroll span {
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-section .hero-scroll .scroll-icon {
  width: 2px;
  height: 30px;
  background-color: var(--white);
  position: relative;
}
.hero-section .hero-scroll .scroll-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}
.btn.btn-primary {
  background-color: #daa959;
  color: var(--primary-color);
  border-color: #daa959;
  border-radius: 50px;
}
.btn.btn-primary:hover {
  background-color: #FFF;
  color: var(--primary-color);
  border-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}
.btn.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn.btn-outline:hover {
  background-color: var(--white);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.btn.btn-block {
  display: block;
  width: 100%;
}

.section-header {
  margin-bottom: 60px;
}
.section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  padding-right: 40px;
  color: var(--primary-color);
  font-weight: 900;
}
.section-header .section-tag::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}
.section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.section-header .section-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  padding-right: 40px;
  color: var(--primary-color);
  font-weight: 900;
}
.section-tag::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.section-title span {
  color: #daa959;
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.about-section .about-image {
  position: relative;
}
.about-section .about-image img {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  -webkit-mask-image: url(assets/images/mask-img.webp);
          mask-image: url(assets/images/mask-img.webp);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  height: 490px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-image .experience-badge {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}
.about-section .about-image .experience-badge .badge-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 5px;
}
.about-section .about-image .experience-badge .badge-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-section .about-content {
  padding-right: 40px;
}
.about-section .about-content .about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.about-section .about-content .about-stats .stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  margin-bottom: 5px;
  line-height: 1;
}
.about-section .about-content .about-stats .stat-item .stat-label {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.partners-section {
  overflow: hidden;
  position: relative;
}
.partners-section .partners-slider {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.partners-section .partners-slider::before, .partners-section .partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.partners-section .partners-slider::before {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}
.partners-section .partners-slider::after {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}
.partners-section .partners-slider .partners-slider-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  animation: slideInfinite 50s linear infinite;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.partners-section .partners-slider .partners-slider-track:hover {
  animation-play-state: paused;
}
.partners-section .partners-slider .partners-slider-track .partner-logo {
  flex-shrink: 0;
  flex: 0 0 auto;
  width: 200px;
  height: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 10px;
  transition: var(--transition);
}
.partners-section .partners-slider .partners-slider-track .partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}
.partners-section .partners-slider .partners-slider-track .partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.services-section {
  background-color: #FFF;
}
.services-section .service-card-parent .service-card {
  background-color: #f6f6f6;
  padding: 40px 30px;
  border-radius: 40px;
  transition: var(--transition);
  height: 275px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  -webkit-mask-image: url(assets/images/mask-img.webp);
          mask-image: url(assets/images/mask-img.webp);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: visible;
}
.services-section .service-card-parent .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.services-section .service-card-parent .service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--primary-color);
}
.services-section .service-card-parent .service-card:hover .service-link {
  color: var(--primary-color);
  transform: translateX(5px);
}
.services-section .service-card-parent .service-card .service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  margin-bottom: 25px;
  transition: var(--transition);
  background: #daa959;
  padding: 14px;
  border-radius: 20px;
}
.services-section .service-card-parent .service-card .service-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary-color);
  stroke-width: 1.5;
}
.services-section .service-card-parent .service-card .service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.services-section .service-card-parent .service-card .service-description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-light);
}
.services-section .service-card-parent .service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  flex-direction: row-reverse;
  position: absolute;
  bottom: 0px;
  left: 25px;
  background: #2a160d;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.services-section .service-card-parent .service-link svg {
  transition: var(--transition);
  fill: #FFF;
  height: 20px;
  width: 20px;
}
.services-section .service-card-parent .service-link:hover .arrow-icon {
  transform: translateX(-5px);
}

.portfolio-section .portfolio-filter .filter-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  padding: 10px 25px;
  /* margin: 0 5px; */
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}
.portfolio-section .portfolio-filter .filter-btn:hover, .portfolio-section .portfolio-filter .filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.portfolio-section .portfolio-item {
  margin-bottom: 30px;
}
.portfolio-section .portfolio-item .portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 210px;
  height: 47px;
  background-color: var(--primary-color);
  border-radius: 50px;
  color: var(--white);
  transition: var(--transition);
  padding: 1px 25px;
  flex-direction: row-reverse;
  position: absolute;
  bottom: 10px;
  left: 31px;
}
.portfolio-section .portfolio-item .portfolio-link .arrow-icon-left {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: var(--transition);
}
.portfolio-section .portfolio-item .portfolio-link:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.5);
}
.portfolio-section .portfolio-item .portfolio-link:hover .arrow-icon-left {
  transform: translateX(3px);
}
.portfolio-section .portfolio-item .portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-mask-image: url(assets/images/mask-img.png);
          mask-image: url(assets/images/mask-img.png);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: visible;
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 1;
  transition: var(--transition);
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image:hover img {
  transform: scale(1.1);
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image .portfolio-content {
  color: var(--white);
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image .portfolio-content .portfolio-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white);
}
.portfolio-section .portfolio-item .portfolio-card .portfolio-image .portfolio-content .portfolio-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #FFF;
  display: inline-block;
  border-radius: 50px;
  padding: 3px 10px;
  font-weight: 700;
  background-color: rgba(252, 252, 253, 0.1215686275);
  padding: 6px 12px 6px 12px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: rgba(252, 252, 253, 0.2);
  position: absolute;
  top: 15px;
  left: 15px;
}

.team-section .team-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.team-section .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.team-section .team-card .team-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.team-section .team-card .team-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.team-section .team-card .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(201, 169, 97, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}
.team-section .team-card .team-image .team-overlay .team-social {
  display: flex;
  gap: 15px;
}
.team-section .team-card .team-image .team-overlay .team-social .social-link {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: var(--transition);
}
.team-section .team-card .team-image .team-overlay .team-social .social-link:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-5px);
}
.team-section .team-card .team-image:hover img {
  transform: scale(1.1);
}
.team-section .team-card .team-image:hover .team-overlay {
  opacity: 1;
}
.team-section .team-card .team-name {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 5px;
  color: var(--text-dark);
}
.team-section .team-card .team-role {
  font-size: 14px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.process-section {
  position: relative;
  background-image: url(assets/images/rawkkim-7QnoQs7olyw-unsplash.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.process-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.process-section .section-header {
  position: relative;
  z-index: 1;
}
.process-section .section-header .section-tag {
  color: var(--white);
}
.process-section .section-header .section-tag:before {
  background-color: #FFF;
}
.process-section .section-header .section-title {
  color: var(--white);
}
.process-section .section-header .section-description {
  color: var(--white);
}
.process-section .process-card {
  position: relative;
  padding: 20px 30px 60px 30px;
  background-color: var(--white);
  border-radius: 10px;
  transition: var(--transition);
  height: 100%;
}
.process-section .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.process-section .process-card:hover .process-icon {
  transform: scale(1.1);
  color: var(--primary-color);
}
.process-section .process-card .process-number {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(201, 169, 97, 0.1);
  font-family: var(--font-heading);
  line-height: 1;
}
.process-section .process-card .process-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  margin: 20px auto 25px;
  transition: var(--transition);
}
.process-section .process-card .process-icon svg {
  width: 100%;
  height: 100%;
  fill: #2a160d;
}
.process-section .process-card .process-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2a160d;
}
.process-section .process-card .process-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.testimonials-section .tes-card-parent {
  position: relative;
}
.testimonials-section .tes-card-parent .testimonial-rating {
  position: absolute;
  top: -8px;
  right: 30px;
  color: #daa959;
  font-size: 24px;
  font-weight: 600;
}
.testimonials-section .tes-card-parent .tes-icon {
  position: absolute;
  bottom: -3px;
  left: 7px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-section .tes-card-parent .tes-icon svg {
  fill: #FFF;
}
.testimonials-section .testimonial-card {
  background-color: #f6f6f6;
  padding: 80px 30px 40px 30px;
  border-radius: 10px;
  height: 100%;
  transition: var(--transition);
  height: 315px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  -webkit-mask-image: url(assets/images/mask-img.webp);
          mask-image: url(assets/images/mask-img.webp);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: visible;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonials-section .testimonial-card .testimonial-rating {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 20px;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-section .testimonial-card .testimonial-author .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials-section .testimonial-card .testimonial-author .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-title {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.footer-parent {
  padding: 100px 0 20px 0;
  position: relative;
  background-image: url(assets/images/matt-briney-DBzq28q5Y2A-unsplash.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer-parent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.footer-parent .section-header {
  position: relative;
  z-index: 1;
  margin: 100px 0 150px 0;
}
.footer-parent .section-header .section-tag {
  color: var(--white);
}
.footer-parent .section-header .section-tag:before {
  background-color: #FFF;
}
.footer-parent .section-header .section-title {
  color: var(--white);
}
.footer-parent .section-header .section-description {
  color: var(--white);
}

.footer {
  background-color: #FFF;
  color: var(--primary-color);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
  width: 95%;
  margin: auto;
  border-radius: 20px;
}
.footer .footer-widget {
  margin-bottom: 40px;
}
.footer .footer-widget .footer-logo {
  height: 80px;
  width: auto;
}
.footer .footer-widget .footer-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--primary-color);
  margin-bottom: 25px;
}
.footer .footer-widget .footer-social {
  display: flex;
  gap: 15px;
}
.footer .footer-widget .footer-social .social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: var(--transition);
}
.footer .footer-widget .footer-social .social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}
.footer .footer-widget .footer-social .social-icon:hover svg {
  fill: #FFF;
}
.footer .footer-widget .footer-social .social-icon svg {
  height: 20px;
  width: 20px;
}
.footer .footer-widget .footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--primary-color);
}
.footer .footer-widget .footer-links li {
  margin-bottom: 12px;
}
.footer .footer-widget .footer-links li a {
  color: var(--primary-color);
  font-size: 16px;
  transition: var(--transition);
}
.footer .footer-widget .footer-links li a:hover {
  color: var(--primary-color);
  padding-right: 5px;
}
.footer .footer-widget .footer-contact li {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.footer .footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(145, 120, 98, 0.3607843137);
}
.footer .footer-bottom .copyright {
  color: var(--primary-color);
  margin: 0;
}
.footer .footer-bottom .footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.footer .footer-bottom .footer-bottom-links li a {
  color: var(--primary-color);
  font-size: 14px;
  transition: var(--transition);
}
.footer .footer-bottom .footer-bottom-links li a:hover {
  color: var(--primary-color);
}

@media (max-width: 1199px) {
  .hero-section {
    min-height: 750px;
  }
  .hero-section .hero-content-wrapper {
    max-width: 85%;
  }
  .hero-section .hero-content .hero-title {
    font-size: 4rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 19px;
  }
  .hero-section .hero-content .hero-buttons a {
    width: 240px;
  }
}
@media (max-width: 991px) {
  .header .navbar {
    max-width: 100%;
    margin: 10px;
    border-radius: 10px;
    padding: 15px 0;
  }
  .header .navbar .navbar-content-wrapper {
    flex-wrap: wrap;
  }
  .header .navbar .navbar-brand {
    order: 1;
    margin: 0 auto;
  }
  .header .navbar .navbar-contact-btn {
    order: 2;
    width: 100%;
    text-align: center;
    margin: 15px 0 0;
  }
  .header .navbar .navbar-contact-btn .btn-contact {
    width: auto;
    display: inline-block;
  }
  .header .navbar .navbar-toggler {
    order: 3;
  }
  .header .navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    order: 3;
    width: 100%;
    position: static !important;
    transform: none !important;
  }
  .header .navbar .navbar-collapse .navbar-nav-center {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
  }
  .header .navbar .navbar-collapse .navbar-nav-center .nav-item {
    width: 100%;
    text-align: center;
    margin: 5px 0;
    font-weight: 700;
  }
  .header .navbar .navbar-collapse .navbar-nav-center .nav-item .nav-link {
    color: var(--text-dark);
    text-shadow: none;
    padding: 10px 15px !important;
    font-weight: 600;
  }
  .header .navbar .navbar-collapse .navbar-nav-center .nav-item .nav-link:hover, .header .navbar .navbar-collapse .navbar-nav-center .nav-item .nav-link.active {
    color: var(--primary-color);
  }
  .header.scrolled .navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
  }
  .hero-section {
    min-height: 700px;
    height: auto;
  }
  .hero-section .hero-content-wrapper {
    padding-top: 100px;
    max-width: 90%;
  }
  .hero-section .hero-content {
    padding-top: 120px;
  }
  .hero-section .hero-content .hero-content-wrapper {
    padding-top: 0;
  }
  .hero-section .hero-content .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 18px;
    max-width: 90%;
  }
  .hero-section .hero-content .hero-buttons {
    gap: 15px;
  }
  .hero-section .hero-content .hero-buttons a {
    width: 220px;
  }
  .hero-section .hero-scroll {
    bottom: 30px;
  }
  .hero-section .hero-scroll span {
    font-size: 13px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-header .section-title {
    font-size: 36px;
  }
  .about-section .about-content {
    padding-right: 0;
    margin-top: 40px;
  }
  .about-section .about-content .about-stats {
    gap: 20px;
  }
  .about-section .about-image .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
    display: inline-block;
  }
  .contact-section .contact-form {
    margin-top: 40px;
    padding: 30px 20px;
  }
  .footer .footer-bottom .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 600px;
    height: auto;
  }
  .hero-section .hero-content-wrapper {
    padding-top: 80px;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-section .hero-content {
    padding-top: 100px;
  }
  .hero-section .hero-content .hero-content-wrapper {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .hero-section .hero-content .hero-buttons {
    gap: 15px;
    width: 100%;
  }
  .hero-section .hero-content .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 30px;
  }
  .hero-section .hero-scroll {
    bottom: 25px;
  }
  .hero-section .hero-scroll span {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .hero-section .hero-scroll .scroll-icon {
    height: 25px;
  }
  .section-header .section-title {
    font-size: 28px;
  }
  .about-section .about-stats {
    flex-direction: column;
    gap: 30px;
  }
  .partners-section .partners-slider::before, .partners-section .partners-slider::after {
    width: 80px;
  }
  .partners-section .partners-slider .partners-slider-track {
    gap: 40px;
    flex-wrap: nowrap;
    flex-direction: row;
    animation: slideInfinite 40s linear infinite;
    width: -moz-max-content;
    width: max-content;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
  }
  .partners-section .partners-slider .partners-slider-track .partner-logo {
    width: 120px;
    height: 70px;
    padding: 10px 15px;
    flex-shrink: 0;
    flex: 0 0 auto;
  }
  .portfolio-filter .filter-btn {
    margin: 5px;
    padding: 8px 20px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .header .navbar {
    padding: 12px 0;
    margin: 10px 5px;
  }
  .header .navbar .navbar-brand .logo-img {
    height: 40px;
  }
  .hero-section {
    min-height: 550px;
    height: auto;
  }
  .hero-section .hero-content-wrapper {
    padding-top: 70px;
    max-width: 100%;
  }
  .hero-section .hero-content {
    padding-top: 90px;
  }
  .hero-section .hero-content .hero-content-wrapper {
    padding-top: 0;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .hero-section .hero-content .hero-buttons {
    gap: 12px;
  }
  .hero-section .hero-content .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 25px;
    font-size: 14px;
  }
  .hero-section .hero-scroll {
    bottom: 20px;
  }
  .hero-section .hero-scroll span {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .hero-section .hero-scroll .scroll-icon {
    height: 22px;
    width: 1.5px;
  }
  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  .section-padding {
    padding: 40px 0;
  }
}
@media (max-width: 374px) {
  .hero-section {
    min-height: 500px;
    height: auto;
  }
  .hero-section .hero-content-wrapper {
    padding-top: 60px;
  }
  .hero-section .hero-content {
    padding-top: 80px;
  }
  .hero-section .hero-content .hero-content-wrapper {
    padding-top: 0;
  }
  .hero-section .hero-content .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 15px;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .hero-section .hero-content .hero-buttons {
    gap: 10px;
  }
  .hero-section .hero-content .hero-buttons .btn {
    padding: 11px 20px;
    font-size: 13px;
  }
  .hero-section .hero-scroll {
    bottom: 15px;
  }
  .hero-section .hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .hero-section .hero-scroll .scroll-icon {
    height: 20px;
    width: 1.5px;
  }
}
@media (max-width: 991px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    height: 100vh;
  }
  .hero-section .hero-content {
    padding-top: 80px;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2.25rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-section .hero-content .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .hero-section .hero-content .hero-buttons .btn {
    width: auto;
    min-width: 180px;
  }
}
html {
  scroll-behavior: smooth;
}

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

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.text-right {
  text-align: right;
}

@media (max-width: 767px) {
  .text-right {
    text-align: right;
  }
  .text-left {
    text-align: left;
  }
}/*# sourceMappingURL=main.css.map */
