@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
* {
  font-family: "Ubuntu", sans-serif;
}

.navbar-transparent {
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-scrolled {
  background: #011e93 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.nav-link-active {
  position: relative;
  display: inline-block;
}

.nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background-color: #c41420;
  border-radius: 9999px;
}

.navbar-transparent .mobile-menu-btn {
  color: white !important;
}

.navbar-scrolled .mobile-menu-btn {
  color: #ffffff !important;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #011e93;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-content {
  padding: 2rem 1.5rem;
}

.mobile-menu-link {
  display: block;
  padding: 1rem 0;
  color: white;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #ef4444;
}

.mobile-menu-services {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  color: white;
  font-size: 1.125rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
}

.mobile-menu-services-toggle:hover {
  color: #ef4444;
}

.mobile-menu-services-toggle i {
  transition: transform 0.3s ease;
}

.mobile-menu-services.open .mobile-menu-services-toggle i {
  transform: rotate(180deg);
}

.mobile-menu-services-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-services.open .mobile-menu-services-dropdown {
  max-height: 500px;
}

.mobile-menu-sublink {
  display: block;
  padding: 0.75rem 0 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease;
}

.mobile-menu-sublink:hover {
  color: #ef4444;
}

.mobile-menu-btn.active i::before {
  content: "\f00d";
}

.hero-swiper {
  height: 100vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background: #00000097;
}

.services-swiper {
  position: relative;
  height: 545px;
}

#services {
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  #services {
    padding-bottom: 8rem;
  }
}

.service-card {
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 250px;
  position: relative;
  border-radius: 0.5rem;
}

.services-swiper .swiper-wrapper {
  display: flex;
  align-items: end;
}

.service-badge {
  background: #c41420;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-content {
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
  min-height: 0;
}

.services-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
  transition: all 0.3s ease-in-out;
  padding-bottom: 0;
  height: auto;
  min-height: 320px;
}

.services-swiper .swiper-slide-active {
  z-index: 2;
  margin-bottom: 20rem;
}

@media (min-width: 1024px) {
  .services-swiper .swiper-slide-active {
    margin-bottom: 20rem;
  }
}

.services-swiper .swiper-slide-active .service-card {
  height: 400px;
}

.services-navigation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: -5rem;
  position: relative;
  z-index: 10;
}

.services-nav-btn {
  color: white !important;
  background: transparent !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 2px solid white !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  margin-top: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}

.services-nav-btn::after {
  font-size: 14px !important;
  font-weight: bold !important;
}

.services-nav-btn:hover {
  background: white !important;
  color: #011e93 !important;
}

.services-pagination {
  position: relative !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.75rem !important;
  width: auto !important;
  bottom: auto !important;
}

.services-pagination .swiper-pagination-bullet {
  background: transparent !important;
  border: 2px solid white !important;
  opacity: 0.5 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

.services-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: white !important;
  border-color: white !important;
  width: 12px !important;
  height: 12px !important;
}

@media (max-width: 768px) {
  .service-card {
    min-height: 450px;
  }

  .services-swiper .swiper-slide {
    min-height: 450px;
  }

  .services-swiper .swiper-slide-active {
    margin-bottom: 2rem;
  }

  .service-card-content {
    padding: 1.5rem 1.25rem;
  }

  .service-price {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-description {
    font-size: 0.875rem;
  }

  .service-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .services-navigation-wrapper {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .services-nav-btn {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (min-width: 1024px) {
  .services-swiper .swiper-slide {
    min-height: 480px;
  }

  .service-card {
    min-height: 420px;
  }

  .services-swiper .swiper-slide-active {
    margin-bottom: 4rem;
  }
}

#home .swiper-button-next,
#home .swiper-button-prev {
  color: #ffffff;
  background: #000;
  width: 30px;
  height: 80px;
  transition: all 0.3s ease;
  top: 50%;
}

#home .swiper-button-next::after,
#home .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

#home .swiper-button-prev {
  left: 0;
}

#home .swiper-button-next {
  right: 0;
}

.mouse-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.mouse-icon i {
  font-size: 30px;
  color: white;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.about-section {
  padding: 5rem 0;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image-border-line {
  position: absolute;
  top: 24px;
  left: 24px;
  bottom: 24px;
  right: 24px;
  border: 1px solid #ffffff;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button-overlay i {
  color: #011e93;
  font-size: 1.5rem;
  margin-left: 3px;
}

.stats-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #011e93;
  color: white;
  padding: 1.5rem;
  border-top-left-radius: 2rem;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-text {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.95;
}

.about-content {
  padding: 2rem 0;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 4rem 0;
  }

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

  .stats-box {
    bottom: 1rem;
    right: 1rem;
    padding: 1.25rem;
    min-width: 160px;
  }

  .stats-number {
    font-size: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1.125rem;
  }

  .about-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }

  .about-image-wrapper {
    min-height: 350px;
    margin-bottom: 2rem;
  }

  .stats-box {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 1rem;
    min-width: 140px;
  }

  .stats-number {
    font-size: 1.75rem;
  }

  .stats-text {
    font-size: 0.75rem;
  }

  .about-content {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 2.5rem 0;
  }

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

  .stats-box {
    padding: 0.875rem;
    min-width: 120px;
  }

  .stats-number {
    font-size: 1.5rem;
  }

  .stats-text {
    font-size: 0.7rem;
  }
}

.bridges-section {
  padding: 5rem 0;
}

.bridges-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.bridges-image-wrapper img {
  width: 100%;
  height: 700px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.award-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -4rem;
  background: #011e93;
  color: white;
  padding: 1.5rem;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.3);
  z-index: 10;
  border: 2px solid #ffffff;
}

.award-badge i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.award-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.award-text {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.award-year {
  font-size: 0.625rem;
  font-weight: 500;
  margin-top: 0.125rem;
}

.bridges-content {
  padding: 2rem 0;
}

@media (max-width: 1024px) {
  .bridges-section {
    padding: 4rem 0;
  }

  .bridges-image-wrapper {
    min-height: 400px;
  }

  .award-badge {
    width: 120px;
    height: 120px;
    padding: 1.25rem;
  }

  .award-badge i {
    font-size: 1.75rem;
  }

  .award-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .bridges-section {
    padding: 3rem 0;
  }

  .bridges-image-wrapper {
    min-height: 350px;
    margin-bottom: 2rem;
  }

  .award-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .award-badge i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .award-number {
    font-size: 1.5rem;
  }

  .award-text {
    font-size: 0.625rem;
  }

  .award-year {
    font-size: 0.5rem;
  }

  .bridges-content {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .bridges-section {
    padding: 2.5rem 0;
  }

  .bridges-image-wrapper {
    min-height: 300px;
  }

  .award-badge {
    width: 90px;
    height: 90px;
    padding: 0.875rem;
  }

  .award-badge i {
    font-size: 1.25rem;
  }

  .award-number {
    font-size: 1.25rem;
  }

  .award-text {
    font-size: 0.5625rem;
  }

  .award-year {
    font-size: 0.4375rem;
  }
}

.gsap-fade-up {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

.gsap-fade-in {
  opacity: 0;
  will-change: opacity;
}

.gsap-slide-left {
  opacity: 0;
  transform: translateX(-100px);
  will-change: transform, opacity;
}

.gsap-slide-right {
  opacity: 0;
  transform: translateX(100px);
  will-change: transform, opacity;
}

.gsap-scale {
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.gsap-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  will-change: transform, opacity;
}

html {
  scroll-behavior: smooth;
}

button,
.bg-\[#C41420\] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

button:hover,
.bg-\[#C41420\]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(196, 20, 32, 0.3);
}

.hero-slide,
.about-image-wrapper,
.bridges-image-wrapper,
.service-card {
  will-change: transform;
}

.text-reveal {
  overflow: hidden;
}

.parallax-container {
  overflow: hidden;
}

section#contact select {
  color: white !important;
  background-color: transparent !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

section#contact select:focus {
  outline: none !important;
  border-color: #C41420 !important;
}

section#contact select option {
  background-color: #011E93 !important;
  color: white !important;
  padding: 0.75rem 1rem !important;
}

section#contact select option:hover {
  background-color: #C41420 !important;
  color: white !important;
}

section#contact select option:checked,
section#contact select option:focus {
  background-color: #C41420 !important;
  color: white !important;
}

section#contact select::-webkit-list-button {
  background-color: #011E93 !important;
}

@-moz-document url-prefix() {
  section#contact select option {
    background-color: #011E93 !important;
    color: white !important;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}
