@charset "UTF-8";
.text-main-color {
  color: #8b0000;
}

.text-second-color {
  color: #c9a227;
}

.text-light-color {
  color: #f7f7f7;
}

.text-purple {
  color: #9b3e8f;
}

.text-dark-50 {
  color: #333333;
}

.bg-main-color {
  background-color: #8b0000;
}

.bg-second-color {
  background-color: #c9a227;
}

.bg-light-color {
  background-color: #f7f7f7;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  color: #000;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  border: 0 !important;
  background-color: transparent;
}

button:active,
button:focus,
.button,
button:focus,
.btn {
  box-shadow: none !important;
}

input,
textarea {
  box-shadow: none;
  border: none;
  outline: none;
  background: none;
}

input {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
}
input:focus {
  color: black !important;
  border-color: var(--color-glow) !important;
  box-shadow: none !important;
}

.form-control {
  padding: 8px 0.75rem;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

p {
  margin: 0;
}

/********************* shared style  *********************/
.sec-header {
  font-size: clamp(1.7rem, 5vw, 2rem);
}

.btn-primary-custom {
  background: linear-gradient(90deg, #8b0000 60%, #be0000 100%);
  border: none;
  padding: 0.7rem 1.8rem;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1.08rem;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-custom:hover {
  background: rgb(200.2, 0, 0);
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}
@media (max-width: 576px) {
  .btn-primary-custom {
    width: 100%;
    text-align: center;
  }
}

.btn-outline-custom {
  border: 2px solid #c9a227;
  color: #c9a227;
  background: transparent;
  padding: 0.7rem 1.8rem;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1.08rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-custom:hover {
  background: #c9a227;
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 576px) {
  .btn-outline-custom {
    width: 100%;
    text-align: center;
  }
}

.sec-header p {
  color: #666666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 60px;
  margin-inline: auto;
  font-weight: 800;
  color: #8b0000;
  text-align: center;
}
.section-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #c9a227 60%, transparent 100%);
  margin: 0 auto 8px auto;
  border-radius: 18px 4px 16px 6px/10px 2px 12px 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) rotate(-2deg) skewX(-8deg);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  filter: blur(0.5px);
  font-size: 2rem;
  transition: height 0.3s;
}
.section-title:hover::before {
  height: 20px;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
  background: #f7f7f7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b0000 60%, #c9a227 100%);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #be0000 60%, rgb(219.4125, 183.825, 71.5875) 100%);
}

::-webkit-scrollbar-track {
  background: #f7f7f7;
  border-radius: 8px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #f7f7f7;
}

#goUpBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border: none;
  background: var(--white-color, #fff);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.3s, background 0.3s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
#goUpBtn.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
#goUpBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
#goUpBtn:hover .fas {
  color: #8b0000;
}
#goUpBtn .fas {
  color: var(--dark-color, #000);
  font-size: 1.3rem;
  z-index: 2;
  transition: color 0.3s;
}
#goUpBtn .progress-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-90deg);
}
#goUpBtn .progress-border circle {
  fill: none;
  stroke: var(--primary-color, #8b0000);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke 0.3s;
}
@media (max-width: 576px) {
  #goUpBtn {
    width: 44px;
    height: 44px;
    bottom: 18px;
    right: 18px;
  }
  #goUpBtn .progress-border {
    display: none;
  }
}

.navbar-brand {
  width: 80px;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  background-color: black;
}
.navbar-brand img {
  border-radius: inherit;
}

#header a,
footer a, .offcanvas a {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#header a.nav-link,
footer a.nav-link, .offcanvas a.nav-link {
  font-weight: 500;
  transition: 0.3s;
  font-size: 0.95rem;
}
#header a:hover,
footer a:hover, .offcanvas a:hover {
  color: #8b0000 !important;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border: 4px solid #ffffff;
}

/* ==================START HEADER==================== */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}
#header .nav-link {
  color: #f7f7f7;
}
@media screen and (max-width: 992px) {
  #header .navbar .collapse {
    color: #1a1a1a;
  }
}
#header.scrolled {
  position: fixed;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 992px) {
  #header.scrolled .navbar .collapse {
    color: #1a1a1a;
  }
}
#header.scrolled .nav-link {
  color: #1a1a1a;
}
#header.scrolled .fa-bars {
  color: #1a1a1a !important;
}

/* ==================END HEADER==================== */
.offcanvas .nav-link {
  color: #1a1a1a;
}
.offcanvas.offcanvas-end {
  width: 270px;
}
@media (max-width: 991px) {
  .offcanvas .navbar-brand {
    font-size: 1.5rem;
  }
  .offcanvas .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
  .offcanvas .offcanvas-body .nav-link {
    font-size: 1.1rem;
    padding: 8px 0;
  }
  .offcanvas .btn-main {
    font-size: 1rem;
    padding: 10px;
  }
}

/* ==================START HOME==================== */
#home {
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(30, 32, 34, 0.844) 60%, rgba(40, 40, 60, 0.92) 100%), url("./../assets/hero3.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3rem 1.5rem 2rem;
  overflow: hidden;
}
#home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-radial-gradient(circle at 0 100%, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 40px), repeating-radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 40px), repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 60px);
  opacity: 0.18;
  mix-blend-mode: lighten;
}
#home .hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}
#home .hero-content .hero-logo {
  max-width: 220px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.22));
}
#home .hero-content .hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
}
@media (max-width: 991.5px) {
  #home .hero-content .hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  #home .hero-content .hero-title {
    font-size: 1.5rem;
  }
}
#home .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: #c9a227;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
@media (max-width: 991.5px) {
  #home .hero-content .hero-subtitle {
    font-size: 1.05rem;
  }
}
#home .hero-content .hero-description {
  font-size: 1.05rem;
  color: #f7f7f7;
  margin-bottom: 2rem;
  margin-inline: auto;
  max-width: 600px;
  line-height: 1.7;
}
#home .hero-content .hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 991.5px) {
  #home .hero-content .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
#home .hero-content .hero-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
#home .hero-content .hero-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #c9a227;
  line-height: 1;
}
#home .hero-content .hero-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: #f7f7f7;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#home .hero-content .hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 576px) {
  #home .hero-content .hero-buttons {
    flex-direction: column;
  }
}
#home .zig-zag-3d-edge {
  --s: 60px;
  --a: 130deg;
  --d: 13px;
  position: absolute;
  bottom: 0;
  height: 30px;
  width: 100%;
  transform: rotate(180deg);
  background: conic-gradient(from calc(var(--a) / -2) at 50% calc(100% - var(--d)), rgba(132, 132, 132, 0.35), rgba(0, 0, 0, 0) 1deg calc(var(--a) - 1deg), rgba(0, 0, 0, 0.2666666667) var(--a) calc(180deg + var(--a) / 2), rgba(0, 0, 0, 0.5333333333) 0) 50%/var(--s) #fff;
  -webkit-mask: conic-gradient(from calc(var(--a) / -2) at bottom, rgba(0, 0, 0, 0), #000 1deg calc(var(--a) - 1deg), rgba(0, 0, 0, 0) var(--a)) 50%/var(--s);
          mask: conic-gradient(from calc(var(--a) / -2) at bottom, rgba(0, 0, 0, 0), #000 1deg calc(var(--a) - 1deg), rgba(0, 0, 0, 0) var(--a)) 50%/var(--s);
  z-index: 3;
}
@media (max-width: 991.5px) {
  #home {
    padding: 110px 0.5rem 40px;
  }
  #home .hero-content {
    padding: 0 0.5rem;
  }
}

/* ==================END HOME==================== */
/* ==================START STATS==================== */
#stats .stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  z-index: 1;
  /* Responsive design */
}
#stats .stat-card:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1843137255) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
#stats .stat-card:hover {
  transform: translateY(-3px) scale(1.01);
}
#stats .stat-card:hover:before {
  opacity: 1;
}
#stats .stat-card:hover .stat-number {
  color: #8b0000;
}
#stats .stat-card:hover .stat-label {
  color: #c9a227;
}
#stats .stat-card:hover .stat-desc {
  color: #1a1a1a;
  opacity: 1;
}
#stats .stat-card .stat-icon {
  font-size: 3.8rem;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, #8b0000, #c9a227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease;
}
#stats .stat-card .stat-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
}
#stats .stat-card .stat-number:after {
  content: "+";
  font-size: 2.5rem;
  color: #c9a227;
  position: relative;
  top: -10px;
}
#stats .stat-card .stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666666;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}
#stats .stat-card .stat-desc {
  margin-top: 15px;
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  transition: all 0.4s ease;
}
@media (max-width: 992px) {
  #stats .stat-card {
    padding: 40px 25px;
  }
  #stats .stat-card .stat-number {
    font-size: 3.2rem;
  }
  #stats .stat-card .stat-icon {
    font-size: 3rem;
  }
  #stats .stat-card .stat-label {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #stats .stat-card {
    padding: 30px 20px;
  }
  #stats .stat-card .stat-number {
    font-size: 2.8rem;
  }
  #stats .stat-card .stat-icon {
    font-size: 2.5rem;
  }
  #stats .stat-card .stat-label {
    font-size: 0.95rem;
  }
  #stats .stat-card .stat-desc {
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  #stats .stat-card {
    padding: 20px 15px;
  }
  #stats .stat-card .stat-number {
    font-size: 2.2rem;
  }
  #stats .stat-card .stat-icon {
    font-size: 2rem;
  }
  #stats .stat-card .stat-label {
    font-size: 0.85rem;
  }
  #stats .stat-card .stat-desc {
    font-size: 0.85rem;
  }
}

/* ==================END STATS==================== */
/* ==================START ABOUT==================== */
#about {
  position: relative;
  overflow: hidden;
}
#about .about-content {
  position: relative;
  z-index: 2;
}
#about .about-content .about-title {
  background: linear-gradient(135deg, #8b0000, #c9a227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  #about .about-content .about-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  #about .about-content .about-title {
    font-size: 1.375rem;
  }
}
#about .pixel-corner {
  --n: 5;
  --s: 12px;
  --w: 500px;
  width: calc(round(var(--w), var(--s)) + var(--s) / 2);
  aspect-ratio: 1;
  background-image: url("./../assets/about.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --_m: #0000 calc((var(--s) * (var(--n) + 0.5)) / sqrt(2)),
    #000 0 calc(100% - (var(--s) * (var(--n) + 0.5)) / sqrt(2)), #0000 0;
  clip-path: polygon(50% calc(var(--s) * var(--n) - 50%), calc(150% - var(--s) * var(--n)) 50%, 50% calc(150% - var(--s) * var(--n)), calc(var(--s) * var(--n) - 50%) 50%);
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0 25%, #000 0 50%) 0 0/var(--s) var(--s), linear-gradient(-45deg, var(--_m)), linear-gradient(45deg, var(--_m));
  -webkit-mask-composite: source-in, xor;
          mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0 25%, #000 0 50%) 0 0/var(--s) var(--s), linear-gradient(-45deg, var(--_m)) intersect, linear-gradient(45deg, var(--_m));
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  #about .pixel-corner {
    --w: 350px;
  }
}
@media (max-width: 768px) {
  #about .pixel-corner {
    --w: 250px;
    --s: 8px;
  }
}
@media (max-width: 576px) {
  #about .pixel-corner {
    --w: 180px;
    --s: 6px;
  }
}
#about .pixel-corner-2 {
  --n: 5;
  --s: 12px;
  --w: 510px;
  width: calc(round(var(--w), var(--s)) + var(--s) / 2);
  aspect-ratio: 1;
  background-image: url(./assets/about.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --_m: #0000 calc((var(--s) * (var(--n) + 0.5)) / sqrt(2)),
    #000 0 calc(100% - (var(--s) * (var(--n) + 0.5)) / sqrt(2)), #0000 0;
  clip-path: polygon(50% calc(var(--s) * var(--n) - 50%), calc(150% - var(--s) * var(--n)) 50%, 50% calc(150% - var(--s) * var(--n)), calc(var(--s) * var(--n) - 50%) 50%);
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0 25%, #000 0 50%) 0 0/var(--s) var(--s), linear-gradient(-45deg, var(--_m)), linear-gradient(45deg, var(--_m));
  -webkit-mask-composite: source-in, xor;
          mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0 25%, #000 0 50%) 0 0/var(--s) var(--s), linear-gradient(-45deg, var(--_m)) intersect, linear-gradient(45deg, var(--_m));
  position: absolute;
  pointer-events: none;
  background: linear-gradient(135deg, #8b0000 0%, #1a1a1a 100%);
  top: -6px;
  left: -5px;
}
@media (max-width: 992px) {
  #about .pixel-corner-2 {
    --w: 350px;
    display: none;
  }
}
@media (max-width: 768px) {
  #about .pixel-corner-2 {
    --w: 250px;
    --s: 8px;
  }
}
@media (max-width: 576px) {
  #about .pixel-corner-2 {
    --w: 180px;
    --s: 6px;
  }
}
#about .highlight-card {
  background: linear-gradient(135deg, #8b0000 0%, #c9a227 100%);
  color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(139, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
#about .highlight-card:hover {
  box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.18);
}
#about .highlight-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 0.8s;
  pointer-events: none;
}
@keyframes shine {
  100% {
    left: 130%;
  }
}
#about .highlight-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}
@media (max-width: 992px) {
  #about .highlight-card {
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  #about .highlight-card {
    padding: 18px 10px;
    font-size: 0.97rem;
  }
}
@media (max-width: 576px) {
  #about .highlight-card {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* ==================END ABOUT==================== */
/* ==================START TIMELINE==================== */
#timeline {
  position: relative;
}
@media (max-width: 576px) {
  #timeline .section-title::before {
    bottom: 25px !important;
  }
}
#timeline .zig-zag-3d-edge {
  --s: 60px;
  --a: 130deg;
  --d: 13px;
  position: absolute;
  bottom: 0;
  height: 30px;
  width: 100%;
  transform: rotate(180deg);
  background: conic-gradient(from calc(var(--a) / -2) at 50% calc(100% - var(--d)), rgba(132, 132, 132, 0.35), rgba(0, 0, 0, 0) 1deg calc(var(--a) - 1deg), rgba(0, 0, 0, 0.2666666667) var(--a) calc(180deg + var(--a) / 2), rgba(0, 0, 0, 0.5333333333) 0) 50%/var(--s) #fff;
  -webkit-mask: conic-gradient(from calc(var(--a) / -2) at bottom, rgba(0, 0, 0, 0), #000 1deg calc(var(--a) - 1deg), rgba(0, 0, 0, 0) var(--a)) 50%/var(--s);
          mask: conic-gradient(from calc(var(--a) / -2) at bottom, rgba(0, 0, 0, 0), #000 1deg calc(var(--a) - 1deg), rgba(0, 0, 0, 0) var(--a)) 50%/var(--s);
  z-index: 3;
}
#timeline .timeline {
  position: relative;
  padding: 30px 0;
}
#timeline .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #8b0000;
  transform: translateX(-50%);
  top: 0;
}
@media (max-width: 992px) {
  #timeline .timeline::before {
    left: 30px;
    transform: none;
  }
}
@media (max-width: 576px) {
  #timeline .timeline::before {
    left: 18px;
    width: 3px;
  }
}
#timeline .timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 45%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
#timeline .timeline .timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
#timeline .timeline .timeline-item:nth-child(odd) {
  left: 0;
}
#timeline .timeline .timeline-item:nth-child(odd) .timeline-dot {
  right: -52px;
  border-right: 20px solid #8b0000;
  border-left: none;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
#timeline .timeline .timeline-item:nth-child(even) {
  left: 55%;
}
#timeline .timeline .timeline-item:nth-child(even) .timeline-dot {
  left: -52px;
}
#timeline .timeline .timeline-item .timeline-dot {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #8b0000;
  border-right: none;
  border-radius: 0;
  background: none;
}
@media (max-width: 992px) {
  #timeline .timeline .timeline-item .timeline-dot {
    left: 40px !important;
    right: auto !important;
    border-left: 18px solid #8b0000;
    border-right: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
@media (max-width: 576px) {
  #timeline .timeline .timeline-item .timeline-dot {
    left: -28px !important;
    border-left: 13px solid #8b0000;
    border-right: none;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
}
#timeline .timeline .timeline-item .timeline-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#timeline .timeline .timeline-item .timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #c9a227;
}
#timeline .timeline .timeline-item .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
#timeline .timeline .timeline-item .timeline-content .timeline-year {
  font-weight: 700;
  color: #8b0000;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #timeline .timeline .timeline-item .timeline-content {
    padding: 18px;
  }
}
@media (max-width: 576px) {
  #timeline .timeline .timeline-item .timeline-content {
    padding: 20px;
  }
  #timeline .timeline .timeline-item .timeline-content .timeline-year {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  #timeline .timeline .timeline-item {
    width: 100%;
    padding-right: 0;
    text-align: left;
    left: 0 !important;
  }
  #timeline .timeline .timeline-item:nth-child(odd), #timeline .timeline .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 70px;
    padding-right: 0;
    text-align: left;
  }
  #timeline .timeline .timeline-item:nth-child(odd) .timeline-dot, #timeline .timeline .timeline-item:nth-child(even) .timeline-dot {
    left: -38px;
    right: auto;
    border-left: 18px solid #8b0000;
    border-right: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
@media (max-width: 576px) {
  #timeline .timeline .timeline-item {
    padding-left: 55px !important;
    margin-bottom: 30px;
  }
  #timeline .timeline .timeline-item .timeline-content {
    border-radius: 6px;
  }
  #timeline .timeline .timeline-item .timeline-dot {
    left: 25px !important;
    border-left: 13px solid #8b0000;
    border-right: none;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
}

/* ==================END TIMELINE==================== */
/* ==================START EXPERTISE==================== */
#expertise {
  position: relative;
}
@media (max-width: 576px) {
  #expertise {
    padding: 50px 0;
  }
}
#expertise .expertise-card {
  width: 100%;
  max-width: 1000px;
  height: 380px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  gap: 15px;
  padding: 20px;
  margin: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
#expertise .expertise-card:hover {
  box-shadow: 0 20px 45px rgba(139, 0, 0, 0.15);
  transform: translateY(-5px);
}
@media (max-width: 1200px) {
  #expertise .expertise-card {
    max-width: 900px;
    height: 340px;
  }
}
@media (max-width: 992px) {
  #expertise .expertise-card {
    height: auto;
    flex-direction: column;
    max-width: 500px;
    gap: 10px;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card {
    max-width: 95vw;
    padding: 10px;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card {
    height: auto;
    padding: 7px;
    gap: 7px;
    max-width: 100vw;
  }
}
#expertise .expertise-card .expertise-panel {
  flex: 1;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #8b0000 0%, #a30000 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-wrap-style: pretty;
}
#expertise .expertise-card .expertise-panel:hover {
  flex: 3;
  background: linear-gradient(135deg, #8b0000 0%, #7a0000 100%);
  border-color: #c9a227;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  #expertise .expertise-card .expertise-panel {
    min-width: 0;
  }
}
@media (max-width: 992px) {
  #expertise .expertise-card .expertise-panel {
    width: 100%;
    height: 70px;
    min-height: 70px;
    flex: unset;
  }
  #expertise .expertise-card .expertise-panel:hover {
    flex: unset;
    height: 220px;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card .expertise-panel {
    height: 60px;
    min-height: 60px;
  }
  #expertise .expertise-card .expertise-panel:hover {
    height: 180px;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card .expertise-panel {
    height: 50px;
    min-height: 50px;
    border-radius: 10px;
  }
  #expertise .expertise-card .expertise-panel:hover {
    height: 150px;
    padding: 15px;
  }
}
#expertise .expertise-card .expertise-panel .expertise-content {
  padding: 25px;
  text-align: center;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  #expertise .expertise-card .expertise-panel .expertise-content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 12px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card .expertise-panel .expertise-content {
    padding: 8px;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card .expertise-panel .expertise-content {
    padding: 15px;
  }
}
#expertise .expertise-card .expertise-panel:hover .expertise-content {
  transform: rotate(0deg);
  justify-content: flex-start;
  padding-top: 40px;
}
@media (max-width: 992px) {
  #expertise .expertise-card .expertise-panel:hover .expertise-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 18px;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card .expertise-panel:hover .expertise-content {
    padding-top: 10px;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card .expertise-panel:hover .expertise-content {
    padding-top: 7px;
  }
}
#expertise .expertise-card .expertise-panel .expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #c9a227;
  transition: all 0.4s ease;
}
@media (max-width: 992px) {
  #expertise .expertise-card .expertise-panel .expertise-icon {
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card .expertise-panel .expertise-icon {
    font-size: 1.5rem;
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card .expertise-panel .expertise-icon {
    font-size: 1.2rem;
    margin-right: 7px;
  }
}
#expertise .expertise-card .expertise-panel:hover .expertise-icon {
  transform: scale(1.2);
  color: #ffffff;
}
@media (max-width: 992px) {
  #expertise .expertise-card .expertise-panel:hover .expertise-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card .expertise-panel:hover .expertise-icon {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card .expertise-panel:hover .expertise-icon {
    margin-bottom: 7px;
  }
}
#expertise .expertise-card .expertise-panel .expertise-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media (max-width: 992px) {
  #expertise .expertise-card .expertise-panel .expertise-title {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card .expertise-panel .expertise-title {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card .expertise-panel .expertise-title {
    font-size: 0.8rem;
  }
}
#expertise .expertise-card .expertise-panel .expertise-desc {
  display: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 15px;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  padding: 0 10px;
}
@media (max-width: 992px) {
  #expertise .expertise-card .expertise-panel .expertise-desc {
    font-size: 0.9rem;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  #expertise .expertise-card .expertise-panel .expertise-desc {
    font-size: 0.85rem;
    margin-top: 7px;
  }
}
@media (max-width: 576px) {
  #expertise .expertise-card .expertise-panel .expertise-desc {
    font-size: 0.8rem;
    margin-top: 5px;
    padding: 0 3px;
  }
}
#expertise .expertise-card .expertise-panel:hover .expertise-desc {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}
#expertise .active-panel-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
#expertise .active-panel-indicator .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.expertise-panel:hover #expertise .active-panel-indicator .indicator-dot {
  background: #c9a227;
  transform: scale(1.3);
}
@media (max-width: 576px) {
  #expertise .active-panel-indicator {
    bottom: 7px;
    gap: 5px;
  }
  #expertise .active-panel-indicator .indicator-dot {
    width: 6px;
    height: 6px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==================END EXPERTISE==================== */
/* ==================START projects==================== */
#projects .sec-header p {
  color: #666666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  #projects .sec-header .section-title::before {
    bottom: 25px;
  }
}
@media (max-width: 576px) {
  #projects {
    padding: 70px 0;
  }
}
#projects .blueprint-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 0, 0, 0.1);
  transform-style: preserve-3d;
}
#projects .blueprint-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
}
#projects .blueprint-card .card-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
#projects .blueprint-card .blueprint-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
#projects .blueprint-card .blueprint-icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #8b0000;
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.4s ease;
}
#projects .blueprint-card .blueprint-icon:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 2px solid #c9a227;
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.4s ease;
}
#projects .blueprint-card .blueprint-icon i {
  font-size: 2.2rem;
  color: #8b0000;
  z-index: 2;
  transition: all 0.4s ease;
}
@media (max-width: 576px) {
  #projects .blueprint-card .blueprint-icon {
    width: 70px;
    height: 70px;
  }
  #projects .blueprint-card .blueprint-icon i {
    font-size: 1.8rem;
  }
}
#projects .blueprint-card:hover .blueprint-icon:before {
  opacity: 0.4;
  transform: scale(1.1);
}
#projects .blueprint-card:hover .blueprint-icon:after {
  opacity: 0.5;
  transform: scale(1.2);
}
#projects .blueprint-card:hover .blueprint-icon i {
  color: #c9a227;
  transform: scale(1.2);
}
#projects .blueprint-card:hover .client-name:after {
  width: 100%;
}
#projects .blueprint-card:hover .client-desc {
  color: #333333;
}
#projects .blueprint-card .client-name {
  font-weight: 700;
  color: #8b0000;
  margin-bottom: 10px;
  font-size: 1.3rem;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
}
#projects .blueprint-card .client-name:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a227;
  transition: all 0.4s ease;
}
@media (max-width: 576px) {
  #projects .blueprint-card .client-name {
    font-size: 1.2rem;
  }
}
#projects .blueprint-card .client-desc {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 0;
  transition: all 0.4s ease;
}
#projects .blueprint-card .blueprint-stamp {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border: 2px solid #c9a227;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transition: all 0.4s ease;
  transform: rotate(15deg);
}
#projects .blueprint-card .blueprint-stamp:before {
  content: "RMX";
  font-size: 0.7rem;
  font-weight: 700;
  color: #c9a227;
}
#projects .blueprint-card:nth-child(1) {
  border-top: 4px solid #8b0000;
}
#projects .blueprint-card:nth-child(2) {
  border-top: 4px solid #c9a227;
}
#projects .blueprint-card:nth-child(3) {
  border-top: 4px solid #9b3e8f;
}
#projects .blueprint-card:nth-child(4) {
  border-top: 4px solid #666666;
}
#projects .blueprint-card:nth-child(5) {
  border-top: 4px solid #8b0000;
}
#projects .blueprint-card:nth-child(6) {
  border-top: 4px solid #c9a227;
}
#projects .blueprint-card:nth-child(7) {
  border-top: 4px solid #9b3e8f;
}
#projects .blueprint-card:nth-child(8) {
  border-top: 4px solid #666666;
}
@media (max-width: 992px) {
  #projects .blueprint-card {
    margin-bottom: 25px;
  }
}
#projects .construction-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}
#projects .construction-elements .construction-element {
  position: absolute;
  font-size: 1.5rem;
  color: #8b0000;
  opacity: 0.03;
}
#projects .construction-elements .ce-1 {
  top: 10%;
  left: 5%;
}
#projects .construction-elements .ce-2 {
  top: 70%;
  right: 5%;
}

/* ==================END projects==================== */
/* ==================START SERVICES==================== */
#services .section-header {
  text-align: center;
}
#services .section-header p {
  color: #666666;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  #services .section-header {
    margin-bottom: 50px;
  }
}
#services .services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  #services .services-tabs {
    flex-direction: column;
    align-items: center;
  }
}
#services .service-tab {
  padding: 18px 30px;
  background: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid rgb(220, 220, 220);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
#services .service-tab.active, #services .service-tab:hover {
  background: linear-gradient(135deg, #8b0000 0%, #c9a227 100%);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
}
#services .service-tab.active i, #services .service-tab:hover i {
  transform: scale(1.2);
}
#services .service-tab i {
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  #services .service-tab {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  #services .service-tab {
    padding: 15px 20px;
  }
}
#services .service-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  min-height: 500px;
  display: none;
  overflow: hidden;
}
#services .service-panel.active {
  display: block;
  animation: serviceFadeIn 0.6s ease;
}
@keyframes serviceFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  #services .service-panel {
    padding: 30px 20px;
  }
}
#services .service-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  #services .service-header {
    flex-direction: column;
    text-align: center;
  }
}
#services .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: linear-gradient(135deg, #8b0000 0%, #c9a227 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  position: relative;
  overflow: hidden;
}
#services .service-icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d6d6d6 0%, transparent 100%);
  opacity: 0.1;
}
#services .service-icon i {
  font-size: 2.8rem;
  color: #ffffff;
  z-index: 2;
}
@media (max-width: 768px) {
  #services .service-icon {
    width: 70px;
    height: 70px;
  }
  #services .service-icon i {
    font-size: 2.2rem;
  }
}
@media (max-width: 992px) {
  #services .service-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#services .service-title {
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  #services .service-title {
    font-size: 1.8rem;
  }
}
#services .service-desc {
  color: #666666;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
}
#services .service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
@media (max-width: 992px) {
  #services .service-details {
    grid-template-columns: 1fr;
  }
}
#services .service-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 16px;
  padding: 30px;
  border-left: 5px solid #c9a227;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
#services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
}
#services .service-card:hover:before {
  opacity: 0.03;
}
#services .service-card:hover li {
  color: #1a1a1a;
}
#services .service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}
#services .service-card h5 {
  font-weight: 700;
  color: #c9a227;
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
}
#services .service-card ul {
  padding-left: 20px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
#services .service-card ul li {
  margin-bottom: 12px;
  color: #333333;
  position: relative;
  transition: all 0.3s ease;
}
#services .service-card ul li:before {
  content: "■";
  position: absolute;
  left: -20px;
  color: #c9a227;
  font-size: 0.8rem;
}
@media (max-width: 576px) {
  #services .service-card {
    padding: 20px;
  }
}

/* ==================END SERVICES==================== */
/* ==================START CITIES==================== */
#cities .sec-header {
  text-align: center;
}
#cities .sec-header p {
  color: #666666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  #cities .sec-header .section-title::before {
    bottom: 35px;
  }
}
#cities .cities-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  transform-style: preserve-3d;
  perspective: 1000px;
  padding: 30px 0;
  margin: 0 -80px;
  overflow: visible;
}
@media (max-width: 1200px) {
  #cities .cities-grid {
    margin: 0 -40px;
  }
}
@media (max-width: 992px) {
  #cities .cities-grid {
    margin: 0 -20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  #cities .cities-grid {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  #cities .cities-grid {
    gap: 15px;
  }
}
#cities .cities-grid .city-card {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 260px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  margin-left: -60px;
  z-index: 1;
}
#cities .cities-grid .city-card:nth-child(1) {
  margin-left: 0;
  z-index: 7;
  transform: rotate(-5deg) translateY(10px);
}
#cities .cities-grid .city-card:nth-child(2) {
  z-index: 6;
  transform: rotate(-3deg) translateY(5px);
}
#cities .cities-grid .city-card:nth-child(3) {
  z-index: 5;
  transform: rotate(-1deg) translateY(2px);
}
#cities .cities-grid .city-card:nth-child(4) {
  z-index: 4;
  transform: rotate(1deg);
}
#cities .cities-grid .city-card:nth-child(5) {
  z-index: 3;
  transform: rotate(3deg) translateY(5px);
}
#cities .cities-grid .city-card:nth-child(6) {
  z-index: 2;
  transform: rotate(5deg) translateY(10px);
}
#cities .cities-grid .city-card:nth-child(7) {
  z-index: 1;
  transform: rotate(7deg) translateY(15px);
}
#cities .cities-grid .city-card::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transform: scale(1.2);
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  background: linear-gradient(135deg, #8b0000 0%, #c9a227 100%);
  opacity: 0.09;
  z-index: 0;
}
#cities .cities-grid .city-card::before {
  position: absolute;
  content: attr(aria-label);
  left: 50%;
  bottom: -45px;
  font-size: 14px;
  line-height: 18px;
  transform: translateX(-50%);
  padding: 8px 16px;
  background-color: #8b0000;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 10;
  font-weight: 600;
  white-space: nowrap;
}
#cities .cities-grid .city-card .city-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#cities .cities-grid .city-card .city-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fbeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.08);
  transition: all 0.4s ease;
}
#cities .cities-grid .city-card .city-icon i {
  font-size: 2rem;
  color: #c9a227;
  transition: all 0.4s ease;
}
#cities .cities-grid .city-card .city-name {
  font-weight: 700;
  color: #8b0000;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
#cities .cities-grid .city-card .city-desc {
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}
#cities .cities-grid .city-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.15) !important;
  z-index: 100 !important;
  box-shadow: 0 25px 50px rgba(0, 51, 102, 0.13);
}
#cities .cities-grid .city-card:hover::before {
  opacity: 1;
  visibility: visible;
  bottom: -50px;
}
#cities .cities-grid .city-card:hover::after {
  transform: scale(1.1);
  opacity: 0.13;
}
#cities .cities-grid .city-card:hover .city-icon {
  transform: scale(1.2);
  background: #c9a227;
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.15);
}
#cities .cities-grid .city-card:hover .city-icon i {
  color: #ffffff;
}
#cities .cities-grid .city-card:active::after {
  transform: scale(1.05);
}
#cities .cities-grid .city-card:hover ~ .city-card {
  transform: translateX(40px) rotate(5deg) !important;
  transition-delay: 0.1s;
}
@media (max-width: 1200px) {
  #cities .cities-grid .city-card {
    width: 180px;
    height: 240px;
    margin-left: -50px;
  }
}
@media (max-width: 992px) {
  #cities .cities-grid .city-card {
    width: 200px;
    height: 260px;
    margin-left: 0;
    transform: none !important;
    margin-bottom: 40px;
  }
  #cities .cities-grid .city-card:hover {
    transform: translateY(-15px) scale(1.1) !important;
  }
  #cities .cities-grid .city-card:hover ~ .city-card {
    transform: none !important;
  }
}
@media (max-width: 768px) {
  #cities .cities-grid .city-card {
    width: 170px;
    height: 230px;
    padding: 20px;
  }
  #cities .cities-grid .city-card .city-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  #cities .cities-grid .city-card .city-icon i {
    font-size: 1.8rem;
  }
  #cities .cities-grid .city-card .city-name {
    font-size: 1.2rem;
  }
  #cities .cities-grid .city-card .city-desc {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  #cities .cities-grid .city-card {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 200px;
  }
  #cities .cities-grid .city-card::before {
    bottom: -40px;
    font-size: 12px;
    padding: 6px 12px;
  }
  #cities .cities-grid .city-card:hover::before {
    bottom: -45px;
  }
}
@media (max-width: 768px) {
  #cities .cities-section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  #cities body {
    padding: 20px 10px;
  }
}
@media (max-width: 576px) {
  #cities .section-header {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  #cities .section-title {
    font-size: 2rem;
  }
}

/* ==================END CITIES==================== */
/* ==================START TEAM==================== */
#team .sec-header {
  text-align: center;
}
#team .sec-header p {
  color: #666666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  #team .sec-header p {
    font-size: 1rem;
  }
}
#team .id-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  perspective: 1000px;
}
@media (max-width: 1200px) {
  #team .id-cards {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  #team .id-cards {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  #team .id-cards {
    gap: 18px;
  }
}
@media (max-width: 576px) {
  #team .id-cards {
    gap: 10px;
  }
}
#team .id-card {
  width: 380px;
  height: 750px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}
#team .id-card:hover {
  transform: translateY(-15px) rotateY(5deg);
  box-shadow: 0 35px 60px rgba(139, 0, 0, 0.25);
}
#team .id-card:hover .employee-name {
  background: linear-gradient(135deg, #8b0000 0%, #c9a227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
  #team .id-card {
    width: 340px;
  }
}
@media (max-width: 992px) {
  #team .id-card {
    width: 320px;
    height: 750px;
  }
}
@media (max-width: 768px) {
  #team .id-card {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
@media (max-width: 576px) {
  #team .id-card {
    width: 100%;
    max-width: 320px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    height: auto;
  }
}
#team .id-header {
  height: 130px;
  background: linear-gradient(135deg, #8b0000 0%, #a30000 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-bottom: 3px solid #c9a227;
}
@media (max-width: 768px) {
  #team .id-header {
    height: 110px;
    padding: 0 18px;
  }
}
@media (max-width: 576px) {
  #team .id-header {
    padding: 0 10px;
    height: 90px;
    text-align: center;
  }
}
#team .company-logo {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
#team .company-logo span {
  font-weight: 800;
  font-size: 1.5rem;
  color: #8b0000;
}
@media (max-width: 576px) {
  #team .company-logo span {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  #team .company-logo {
    width: 55px;
    height: 55px;
    margin-right: 12px;
  }
}
@media (max-width: 576px) {
  #team .company-logo {
    margin-bottom: 8px;
    width: 55px;
    height: 55px;
    margin-right: 20px;
  }
}
#team .company-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  #team .company-name {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  #team .company-name {
    font-size: 1rem;
  }
}
#team .id-photo {
  position: absolute;
  top: 45px;
  right: 14px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  background: #f7f7f7;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#team .id-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#team .id-photo .placeholder-icon {
  font-size: 3.5rem;
  color: #8b0000;
}
@media (max-width: 1200px) {
  #team .id-photo {
    width: 140px;
    height: 140px;
    top: 40px;
    right: 10px;
  }
}
@media (max-width: 992px) {
  #team .id-photo {
    width: 110px;
    height: 110px;
    top: 85px;
    right: 8px;
  }
}
@media (max-width: 768px) {
  #team .id-photo {
    width: 90px;
    height: 90px;
    top: 30px;
    right: 8px;
  }
}
@media (max-width: 576px) {
  #team .id-photo {
    width: 85px;
    height: 85px;
    top: 50px;
    right: 10px;
  }
}
#team .id-content {
  padding: 75px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}
@media (max-width: 1200px) {
  #team .id-content {
    padding: 60px 20px 20px;
  }
}
@media (max-width: 992px) {
  #team .id-content {
    padding: 50px 15px 15px;
  }
}
@media (max-width: 768px) {
  #team .id-content {
    padding: 40px 10px 10px;
  }
}
@media (max-width: 576px) {
  #team .id-content {
    padding: 30px 7px 7px;
  }
}
#team .employee-name {
  font-weight: 800;
  color: #8b0000;
  margin-bottom: 5px;
  font-size: 1.8rem;
  border-bottom: 2px solid #c9a227;
  padding-bottom: 10px;
}
@media (max-width: 1200px) {
  #team .employee-name {
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  #team .employee-name {
    font-size: 1.3rem;
    padding-bottom: 7px;
  }
}
@media (max-width: 768px) {
  #team .employee-name {
    font-size: 1.1rem;
    padding-bottom: 5px;
  }
}
@media (max-width: 576px) {
  #team .employee-name {
    font-size: 1rem;
    padding-bottom: 4px;
  }
}
#team .employee-title {
  color: #666666;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-style: italic;
}
@media (max-width: 992px) {
  #team .employee-title {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  #team .employee-title {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  #team .employee-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}
#team .employee-details {
  margin-bottom: 25px;
  flex-grow: 1;
}
@media (max-width: 992px) {
  #team .employee-details {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  #team .employee-details {
    margin-bottom: 10px;
  }
}
#team .detail-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
#team .detail-item:hover {
  transform: translateX(5px);
}
#team .detail-item:hover .detail-icon {
  background: #8b0000;
  transform: scale(1.1);
}
#team .detail-item:hover .detail-icon i {
  color: #ffffff;
}
@media (max-width: 768px) {
  #team .detail-item {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  #team .detail-item {
    gap: 10px;
    text-align: center;
    margin-bottom: 7px;
  }
}
#team .detail-icon {
  width: 32px;
  height: 32px;
  background: #fbeaea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
#team .detail-icon i {
  font-size: 1rem;
  color: #8b0000;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #team .detail-icon {
    width: 26px;
    height: 26px;
    margin-right: 8px;
  }
}
@media (max-width: 576px) {
  #team .detail-icon {
    margin-bottom: 5px;
    margin-right: 0;
  }
}
#team .detail-text {
  color: #333333;
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  #team .detail-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  #team .detail-text {
    font-size: 0.85rem;
  }
}
#team .id-footer {
  background: #fbeaea;
  padding: 20px;
  border-top: 3px solid #c9a227;
  position: relative;
  overflow: hidden;
}
#team .id-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b0000 0%, transparent 100%);
  opacity: 0.05;
}
@media (max-width: 768px) {
  #team .id-footer {
    padding: 12px;
  }
}
@media (max-width: 576px) {
  #team .id-footer {
    padding: 7px;
  }
}
#team .expertise-title {
  font-weight: 700;
  color: #8b0000;
  margin-bottom: 12px;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #team .expertise-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  #team .expertise-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }
}
#team .expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #team .expertise-list {
    gap: 5px;
  }
}
@media (max-width: 576px) {
  #team .expertise-list {
    gap: 3px;
  }
}
#team .expertise-tag {
  background: #8b0000;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
#team .expertise-tag:hover {
  background: #c9a227;
  color: #1a1a1a;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  #team .expertise-tag {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  #team .expertise-tag {
    padding: 3px 7px;
    font-size: 0.7rem;
  }
}

/* ==================END TEAM==================== */
/* ==================start GALLERY==================== */
#gallery .project-slide-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
}
#gallery .project-slide-card img {
  height: 450px;
}
#gallery .swiper-wrapper {
  height: 500px;
}
#gallery .swiper-button-next,
#gallery .swiper-button-prev {
  color: #8b0000;
}
#gallery .swiper-button-next:after {
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #8b0000 100%);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gallery .swiper-button-prev:after {
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #8b0000 100%);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gallery .swiper-button-next:hover:after,
#gallery .swiper-button-prev:hover:after {
  transform: scale(1.1);
}
#gallery .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, #1a1a1a 0%, #8b0000 100%);
  opacity: 0.7;
  margin: 0 6px !important;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.1);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, opacity 0.3s;
}
#gallery .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #1a1a1a 0%, #8b0000 100%);
  opacity: 1;
  transform: scale(1.3) rotate(-8deg);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.18);
}

/* ==================END GALLERY==================== */
/* ==================start contact==================== */
#contact .sec-header {
  text-align: center;
  margin-bottom: 50px;
}
#contact .sec-header p {
  color: #666666;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  #contact .sec-header {
    margin-bottom: 32px;
  }
  #contact .sec-header .section-title {
    font-size: 1.3rem;
  }
}
#contact .contact-form {
  background: #ffffff;
  border-radius: 16px;
}
#contact .contact-form .form-title {
  font-weight: 700;
  color: #8b0000;
  font-size: 1.3rem;
}
#contact .contact-form .form-label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.97rem;
}
#contact .contact-form .form-control {
  border: 2px solid #fbeaea;
  border-radius: 8px;
  font-size: 0.97rem;
  background: #f7f7f7;
  transition: all 0.3s ease;
}
#contact .contact-form .form-control:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.09);
  outline: none;
}
#contact .contact-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
#contact .contact-form .btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#contact .contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(139, 0, 0, 0.16);
}
#contact .contact-info {
  background: linear-gradient(135deg, #8b0000 0%, #a30000 100%);
  border-radius: 16px;
}
#contact .contact-info .info-title {
  font-weight: 700;
  font-size: 1.3rem;
}
#contact .contact-info .address-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
}
#contact .contact-info .address-card .office-name {
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
#contact .contact-info .address-card .office-name i {
  color: #c9a227;
}
#contact .contact-info .address-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  margin-bottom: 6px;
}
#contact .contact-info .address-card p i {
  color: #c9a227;
}
#contact .contact-info .contact-methods .contact-method {
  transition: all 0.3s ease;
}
#contact .contact-info .contact-methods .contact-method:hover {
  transform: translateX(4px);
}
#contact .contact-info .contact-methods .contact-method i {
  color: #c9a227;
}
#contact .contact-info .contact-methods .contact-method .fw-bold {
  font-size: 0.97rem;
}
#contact .contact-info .contact-methods .contact-method div {
  font-size: 0.93rem;
}

/* ==================END contact==================== */
#footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #8b0000;
  /* تأثيرات الخلفية */
  /* شعار الشركة */
  /* روابط سريعة */
  /* معلومات الاتصال */
  /* المكاتب */
  /* حقوق النشر */
  /* تأثيرات اللوحة */
}
@media (max-width: 992px) {
  #footer {
    padding: 50px 0 20px;
  }
}
#footer .container {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
#footer .footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: linear-gradient(rgba(139, 0, 0, 0.7) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 0, 0, 0.7) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}
#footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  #footer .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 992px) {
  #footer .footer-brand {
    margin-bottom: 40px;
    text-align: center;
    align-items: center;
  }
}
#footer .logo-container {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#footer .logo-container:hover {
  transform: translateY(-3px);
}
@media (max-width: 576px) {
  #footer .logo-container {
    flex-direction: column;
    text-align: center;
  }
}
#footer .logo-img {
  height: 55px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#footer .logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-left: 12px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  #footer .logo-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  #footer .logo-text {
    margin-left: 0;
    margin-top: 10px;
  }
}
#footer .footer-tagline {
  color: #f7f7f7;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  #footer .footer-tagline {
    font-size: 0.95rem;
  }
}
#footer .footer-links-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
#footer .footer-links-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #c9a227;
  border-radius: 2px;
}
@media (max-width: 992px) {
  #footer .footer-links-title {
    text-align: center;
  }
  #footer .footer-links-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
#footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  #footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  #footer .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
#footer .footer-links li {
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  #footer .footer-links li {
    margin-bottom: 0;
  }
}
#footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
#footer .footer-links a:hover {
  color: #c9a227;
  transform: translateX(5px);
}
#footer .footer-links a i {
  margin-right: 10px;
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}
#footer .contact-info {
  margin-bottom: 25px;
}
#footer .contact-person {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid #8b0000;
}
@media (max-width: 768px) {
  #footer .contact-person {
    padding: 12px;
  }
}
#footer .contact-name {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
#footer .contact-name i {
  margin-right: 10px;
  color: #c9a227;
}
#footer .contact-details {
  padding-left: 25px;
}
#footer .contact-details a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
#footer .contact-details a:hover {
  color: #c9a227;
}
#footer .office-info {
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 3px solid #c9a227;
}
@media (max-width: 768px) {
  #footer .office-info {
    padding: 12px;
  }
}
#footer .office-name {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
#footer .office-name i {
  margin-right: 10px;
  color: #8b0000;
}
#footer .office-address {
  color: #ccc;
  line-height: 1.6;
  padding-left: 25px;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  font-size: 0.9rem;
}
#footer .copyright a {
  color: #c9a227;
  text-decoration: none;
  transition: all 0.3s ease;
}
#footer .copyright a:hover {
  color: #8b0000;
  text-decoration: underline;
}
@media (max-width: 576px) {
  #footer .copyright {
    font-size: 0.85rem;
  }
}
#footer .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
#footer .floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid #8b0000;
  opacity: 0.05;
  border-radius: 50%;
  animation: float 20s linear infinite;
}
#footer .floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
#footer .floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 5s;
  width: 150px;
  height: 150px;
}
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, 15px) rotate(90deg);
  }
  50% {
    transform: translate(20px, 5px) rotate(180deg);
  }
  75% {
    transform: translate(5px, 20px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */