:root {
  --brand-maroon: #8b1e3f;
  --brand-blood: #680000;
  --brand-gold: #bcb892;
  --brand-dark: #2d3e40;
  --brand-dark-green: #406870;
  --brand-light-gray: #9e9e9e;
  --brand-gray: #4a5568;
  --brand-grey: #626262;
  --brand-dark-gray: #1e1d1d;
  --header-height: 120px;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

body {
  font-family: "Source Sans Pro", sans-serif;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 30px 0 30px 15px;
}

.hero-banner img {
  width: 100%;
}

/* Logo Styles */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--brand-maroon);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: "Libre Baskerville", serif;
}

.logo-text {
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  color: var(--brand-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a.active {
  color: var(--brand-gold);
}

.nav-menu a:not(.active) {
  color: var(--brand-dark-green);
}

.nav-menu a:hover {
  color: var(--brand-gold);
}

/* Hamburger Button */
.hamburger-btn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-icon span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--brand-gray);
}

/* Desktop: Logo left, menu right - all one line */
@media (min-width: 992px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-wrapper {
    flex-shrink: 0;
  }

  .nav-wrapper {
    display: flex;
    align-items: center;
  }

  .hamburger-btn {
    display: none;
  }
}

/* Tablet: Logo centered above, menu centered below */
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-wrapper {
    margin-bottom: 15px;
  }

  .nav-wrapper {
    display: flex;
    align-items: center;
  }

  .hamburger-btn {
    display: none;
  }

  .nav-menu {
    gap: 30px;
  }
}

/* Mobile: Logo centered, hamburger below */
@media (max-width: 767.98px) {
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-wrapper {
    margin-bottom: 10px;
  }

  .nav-wrapper .nav-menu {
    display: none;
  }

  .nav-wrapper {
    display: block;
  }
}

/* Offcanvas Styles */
.offcanvas-fullscreen {
  height: 100% !important;
  background-color: var(--brand-dark) !important;
}

.offcanvas-fullscreen .offcanvas-header {
  padding: 20px 30px;
  border-bottom: none;
}

.offcanvas-fullscreen .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.offcanvas-fullscreen .btn-close:hover {
  opacity: 1;
}

.offcanvas-fullscreen .logo-text {
  color: #fff;
}

.offcanvas-fullscreen .offcanvas-body {
  padding: 30px;
}

.offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.offcanvas-nav li {
  margin-bottom: 15px;
}

.offcanvas-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.offcanvas-nav a:hover,
.offcanvas-nav a.active {
  color: var(--brand-gold);
  text-underline-offset: 5px;
}

/* Search Box in Offcanvas */
.offcanvas-search {
  position: relative;
  margin-bottom: 40px;
}

.offcanvas-search input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.offcanvas-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.offcanvas-search input:focus {
  outline: none;
  border-color: var(--brand-gold);
}

.offcanvas-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.offcanvas-search button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Social Icons in Offcanvas */
.offcanvas-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.offcanvas-social a {
  color: #fff;
  font-size: 18px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.offcanvas-social a:hover {
  opacity: 1;
  color: var(--brand-gold);
}

/* Our Projects Section */
.our-projects {
  background: #fff;
}

.our-projects .section-header h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  color: var(--brand-dark-green);
  margin-bottom: 15px;
}

.our-projects .section-divider {
  position: absolute;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin: 0 auto;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 80px;
}

.project-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  font-family: "Libre Baskerville", serif;
  height: 225px;
  width: 100%;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .project-name {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-light-gray);
  color: var(--brand-dark-green);
  padding: 0 10px 30px 0px;
  font-size: 28px;
  font-weight: 500;
}

.project-card .project-name::after {
  display: flex;
  justify-content: center;
  content: "";
  position: absolute;
  bottom: 0;
  margin-bottom: 10px;
  width: 25%;
  height: 1px;
  background: var(--brand-maroon);
}

/* View All Projects Card */
.view-all-card {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  transition: color 0.4s, border-color 0.4s;
  font-family: "Libre Baskerville", serif;
  height: 225px;
  width: 100%;
}

.view-all-card span {
  display: inline-block;
  transition: transform 0.6s ease;
}

.view-all-card:hover {
  color: var(--brand-maroon);
}

.view-all-card:hover span {
  transform: rotateX(360deg);
}

@keyframes flipVertical {
  0% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(360deg);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-projects .section-header h2 {
    font-size: 24px;
  }
}

/* Showcase Carousel */
.showcase-carousel {
  width: 100%;
  overflow: hidden;
}

/* Carousel height = viewport minus header height */
.showcase-carousel .carousel {
  height: calc(100vh - var(--header-height));
}

.showcase-carousel .carousel-inner {
  height: 100%;
}

.showcase-carousel .carousel-item {
  height: 100%;
  overflow: hidden;
}

.showcase-carousel .carousel-zoom {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.showcase-carousel .carousel-zoom img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: zoomIn 15s ease-out forwards;
}

.showcase-carousel .carousel-item.active .carousel-zoom img {
  animation: zoomIn 15s ease-out forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

/* Carousel Controls */
.showcase-carousel .carousel-control-prev,
.showcase-carousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
}

.showcase-carousel .carousel-arrow {
  width: 50px;
  height: 50px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 75px;
  transition: background 0.3s;
}

.showcase-carousel .carousel-control-prev {
  left: 20px;
}

.showcase-carousel .carousel-control-next {
  right: 20px;
}

/* Carousel Indicators */
.showcase-carousel .carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.showcase-carousel .carousel-indicators button.active {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  background-color: transparent;
  opacity: 1;
}

.showcase-carousel .carousel-indicators button:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 767.98px) {
  .showcase-carousel .carousel {
    height: calc(60vh - var(--header-height));
  }

  .showcase-carousel .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .showcase-carousel .carousel-control-prev {
    left: 10px;
  }

  .showcase-carousel .carousel-control-next {
    right: 10px;
  }
}

/* Carousel Fade Effect Override */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
}

/* Welcome Section */
.welcome-section {
  background: #fff;
  padding: 80px 0;
}

.welcome-subtitle {
  font-family: "Andada Pro", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-blood);
  font-style: italic;
}

.welcome-title {
  font-family: "Libre Baskerville", serif;
  font-size: 3.75rem;
  color: var(--brand-dark);
  margin: 40px 0 20px 0;
}

.welcome-divider {
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin-bottom: 25px;
}

.welcome-content p {
  font-size: 1.5rem;
}

.welcome-content p {
  font-family: "Libre Baskerville", serif;
  color: var(--brand-dark);
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Project Types Grid */
.project-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 50px;
  margin-top: 35px;
}

.project-type {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Project Types with Fontello Icons */
.project-type i {
  font-size: 36px;
  color: var(--brand-gold);
  flex-shrink: 0;
  width: 45px;
  text-align: center;
}

.project-type i:before {
  margin-left: 0;
  margin-right: 0;
}

.project-type span {
  font-size: 16px;
  color: var(--brand-dark);
  font-weight: 500;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

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

.stat-icon {
  margin-bottom: 15px;
}

.stat-icon i {
  font-size: 4.2em;
  color: var(--brand-dark-green);
}

.stat-icon i:before {
  margin-left: 0;
  margin-right: 0;
}

.stat-number {
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--brand-dark-green);
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: var(--brand-dark-green);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .welcome-section {
    padding: 60px 0;
  }

  .stats-grid {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 40px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767.98px) {
  .welcome-title {
    font-size: 28px;
  }

  .project-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 35px;
  }

  .stat-number {
    font-size: 48px;
  }
}

/* Our Subsidiaries Section */
.subsidiaries-section {
  background: #fff;
  padding: 60px 0;
}

.subsidiaries-section .section-header h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-size: 3rem;
}

.subsidiaries-section .section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--brand-dark-green);
  /* margin: 0 auto; */
}

/* Subsidiaries Grid */
.subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.subsidiary-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}

.subsidiary-card img {
  max-width: 100%;
  height: auto;
  /* max-height: 80px; */
  object-fit: contain;
}

/* Responsive */
@media (max-width: 991.98px) {
  .subsidiaries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .subsidiaries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .subsidiary-card {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .subsidiaries-grid {
    grid-template-columns: 1fr;
  }
}

/* Our Services Section */
.services-section {
  background: #f8f8f8;
  padding: 60px 0;
}

.services-section .section-header h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  color: var(--brand-dark);
  margin-bottom: 15px;
}

.services-section .section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--brand-gold);
  margin-bottom: 15px;
}

.services-section .section-subtitle {
  font-size: 14px;
  color: var(--brand-gray);
  margin-bottom: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.service-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  color: var(--brand-dark-green);
  margin-bottom: 10px;
}

.service-card .service-divider {
  width: 40px;
  height: 2px;
  background-color: var(--brand-gold);
  margin-bottom: 20px;
}

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

.service-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-maroon);
  line-height: 1.6;
}

.service-card ul li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: var(--brand-maroon);
  font-size: 18px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767.98px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-section .section-header h2 {
    font-size: 24px;
  }
}

/* Footer */
.footer {
  background-color: var(--brand-grey);
  padding: 60px 0 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
}

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

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--brand-gold);
}

/* Location List */
.location-list p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-list p strong {
  color: #fff;
  font-weight: 600;
}

/* Contact List */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 15px;
}

.contact-list li i {
  color: #fff;
  width: 16px;
  margin-top: 3px;
}

.contact-list li a,
.contact-list li span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-list li a:hover {
  color: var(--brand-gold);
}

/* Footer Logo Column */
.footer-col-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  /* max-width: 120px; */
  /* height: auto; */
  margin-bottom: 25px;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #790000;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #fff;
}

/* .footer-social a:hover {
  background-color: var(--brand-gold);
  color: var(--brand-dark);
} */

/* Footer Buttons */
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Footer Buttons with Left-to-Right Fill Effect */
.btn-company-profile,
.btn-report {
  /* display: inline-block; */
  padding: 24px 30px;
  background-color: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  color: var(--brand-dark-green);
  font-size: 11px;
  text-decoration: none;
  /* text-align: start; */
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn-company-profile::before,
.btn-report::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-company-profile:hover::before,
.btn-report:hover::before {
  width: 100%;
}

.btn-company-profile:hover,
.btn-report:hover {
  color: var(--brand-dark-green);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  background-color: var(--brand-dark-gray);
  text-align: center;
}

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

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--brand-gold);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--brand-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow: hidden;
  transition: opacity 0.3s, visibility 0.3s, color 0.4s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.back-to-top:hover::before {
  width: 100%;
}

.back-to-top:hover {
  color: var(--brand-dark-green);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Back to Top Responsive */
@media (max-width: 767.98px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .footer-col-logo {
    align-items: flex-start;
    grid-column: span 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-logo {
    order: 1;
  }

  .footer-social {
    order: 2;
    margin-bottom: 0;
  }

  .footer-buttons {
    order: 3;
    flex-direction: row;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col-logo {
    grid-column: span 1;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
  }

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

  .footer-buttons {
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  .btn-company-profile,
  .btn-report {
    width: 100%;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Language Switcher - Right side with hover dropdown */
.language-switcher {
  position: fixed;
  bottom: 0;
  right: 10%;
  z-index: 1000;
}

.language-switcher .lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 14px;
  color: var(--brand-dark);
  transition: all 0.3s;
  width: 200px;
  height: 58px;
}

.language-switcher .lang-toggle img {
  width: 20px;
  height: auto;
}

.language-switcher .lang-toggle i {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s;
}

.language-switcher .lang-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  min-width: 200px;
  overflow: hidden;
}

.language-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher:hover .lang-toggle,
.language-switcher:focus-within .lang-toggle,
.language-switcher .lang-toggle:hover,
.language-switcher .lang-dropdown:hover~.lang-toggle {
  border-radius: 0;
}

.language-switcher:hover .lang-toggle i {
  transform: rotate(180deg);
}

.language-switcher .lang-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 14px;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.language-switcher .lang-link:last-child {
  border-bottom: none;
}

.language-switcher .lang-link:hover {
  background: #f8f8f8;
}

.language-switcher .lang-link.active {
  background: #f0f0f0;
  color: var(--brand-maroon);
}

.language-switcher .lang-link img {
  width: 20px;
  height: auto;
}

@media (max-width: 767.98px) {
  .language-switcher {
    bottom: 20px;
    right: 80px;
  }

  .language-switcher .lang-toggle {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Full Screen Image Section */
.fullscreen-image {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fullscreen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission & Vision Sections */
.mission-section,
.vision-section {
  background: #fff;
  padding: 60px 0;
}

.section-title {
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  color: var(--brand-dark);
  margin-bottom: 15px;
}

.section-divider-left {
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin-bottom: 30px;
}

.mission-item,
.vision-item {
  margin-bottom: 20px;
  line-height: 1.8;
}

.mission-label,
.vision-label {
  font-weight: 700;
  color: var(--brand-maroon);
  margin-right: 5px;
}

.mission-item p,
.vision-item p {
  display: inline;
  color: var(--brand-dark);
  font-size: 16px;
}

/* Services About Section */
.services-about-section {
  background: #fff;
  padding: 60px 0;
}

.services-intro {
  color: var(--brand-gray);
  font-size: 14px;
  margin-bottom: 30px;
}

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

.service-column h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 400;
}

.service-column h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 3px;
  background-color: var(--brand-gold);
  margin-top: 5px;
  border-radius: 10px;
}

.service-column ul {
  list-style: square;
  padding-left: 20px;
  margin: 0;
}

.service-column ul li {
  color: var(--brand-blood);
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* General Manager Section */
.gm-section {
  background: url('../images/gm-bg.jpg') center/cover no-repeat;
  position: relative;
  min-height: 600px;
}

.gm-overlay {
  background: var(--brand-grey);
  padding: 90px 0;
  min-height: 600px;
}

.gm-section h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 3.75rem;
  color: #fff;
  margin-bottom: 30px;
}

.gm-quote {
  font-style: italic;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.gm-name {
  color: var(--brand-blood);
  font-weight: 700;
  font-size: 1.875rem;
  font-family: "Abril Fatface";
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.gm-image {
  max-width: 100%;
  margin-top: 20px;
}

.gm-image img {
  width: 100%;
  /* max-width: 500px; */
  height: auto;
}

/* Partners Section */
.partners-section {
  background: #fff;
  padding: 60px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

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

.partner-logo img {
  /* max-width: 100%; */
  max-height: 128px;
  object-fit: contain;

}


/* About Page Responsive */
@media (max-width: 991.98px) {
  .services-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .services-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .gm-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Page Hero */
.contact-hero {
  height: 200px;
  background: var(--brand-dark-green);
  position: relative;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

/* Locations Section */
.locations-section {
  padding: 0;
  margin-top: 120px;
  position: relative;
  z-index: 10;
}

.locations-wrapper {
  display: flex;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.locations-map {
  flex: 1;
  min-height: 400px;
  margin-top: -30px;
  margin-bottom: 30px;
  border: solid 10px var(--brand-blood)
}

.locations-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.locations-info {
  flex: 1;
  background: var(--brand-grey);
  color: #fff;
  padding: 40px;
}

.locations-info h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.locations-divider {
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin-bottom: 30px;
}

.location-item {
  margin-bottom: 25px;
}

.location-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.location-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 5px;
}

.location-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.location-contact i {
  color: var(--brand-gold);
  font-size: 12px;
}

.location-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  margin-right: 10px;
  transition: color 0.3s;
}

.location-contact a:hover {
  color: var(--brand-gold);
}

/* Contact Form Section */
.contact-form-section {
  background: #fff;
  padding: 80px 0;
}

.contact-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-wrapper h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 36px;
  color: var(--brand-dark-green);
  margin-bottom: 15px;
}

.contact-form-divider {
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin: 0 auto 40px;
}

.contact-form {
  text-align: left;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  font-size: 14px;
  color: var(--brand-dark);
  transition: border-color 0.3s, background 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.form-consent {
  margin: 20px 0;
}

.form-consent p {
  font-size: 13px;
  color: var(--brand-dark-green);
  font-weight: 500;
}

.btn-send {
  display: inline-block;
  padding: 15px 50px;
  background-color: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  color: var(--brand-dark-green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn-send::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-send:hover::before {
  width: 100%;
}

.btn-send:hover {
  color: var(--brand-dark-green);
}

/* Contact Page Responsive */
@media (max-width: 991.98px) {
  .locations-wrapper {
    flex-direction: column;
    max-width: 100%;
    margin: 0 20px;
  }

  .locations-map {
    min-height: 300px;
  }

  .locations-info {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .contact-hero {
    height: 150px;
  }

  .locations-section {
    margin-top: 30px;
  }

  .locations-wrapper {
    margin: 0 15px;
  }

  .locations-info h2 {
    font-size: 26px;
  }

  .contact-form-wrapper h2 {
    font-size: 28px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .contact-form-section {
    padding: 60px 0;
  }
}

/* Projects Page Hero */
.projects-hero {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.projects-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Projects Page Section */
.projects-page-section {
  background: #fff;
  padding: 80px 0;
}

.projects-page-title {
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  color: var(--brand-dark-green);
  text-align: center;
  margin-bottom: 15px;
}

.projects-page-divider {
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin: 0 auto 40px;
}

/* Filter Tabs */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}

/* Filter Buttons */
.filter-btn {
  padding: 15px 35px;
  background: transparent;
  border: 1px solid #fff;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.filter-btn:first-child {
  border-radius: 0;
}

.filter-btn:last-child {
  border-radius: 0;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  /* background: var(--brand-maroon); */
  transition: width 1s ease;
  /*aaaaaaa*/
}

.filter-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}

.filter-btn:hover::after {
  width: 100%;
}

.filter-btn.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}

.filter-btn.active::after {
  width: 100%;
}

/* Projects Grid - Simultaneous Flying Animation */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Project Item - Simultaneous Flying Animation */
.project-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  will-change: transform, opacity;
  transform-origin: center center;
}

.project-item.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.project-item.hidden {
  opacity: 0;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  overflow: hidden;
  pointer-events: none;
}

.project-item.fading-out {
  pointer-events: none;
  z-index: 1;
}

.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* .project-item:hover .project-image img {
  transform: scale(1.1);
} */

/* Red overlay on hover using ::before */
.project-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand-maroon);
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.project-item:hover::before {
  opacity: 0.7;
}

.project-overlay {
  display: none;
  /* Using ::before instead */
}

.project-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-light-gray);
  color: #fff;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  max-height: 43px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.project-item:hover .project-label {
  transform: translateY(0);
}

/* Projects Page Responsive */
@media (max-width: 1200px) {
  .projects-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .projects-page-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .filter-btn {
    padding: 12px 25px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .projects-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .projects-filter {
    flex-wrap: wrap;
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 9px;
  }

  .projects-page-title {
    font-size: 2rem;
  }

  .project-label {
    font-size: 9px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .projects-page-grid {
    grid-template-columns: 1fr;
  }

  .projects-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

/* Project Detail Page Styles */
.project-detail-section {
  background: #fff;
  padding: 80px 0;
}

.project-main-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  cursor: pointer;
  overflow: hidden;
}

.project-main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.project-main-image:hover img {
  transform: scale(1.02);
}

.project-detail-title {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  color: var(--brand-dark-green);
  text-align: left;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Thumbnail Gallery */
.project-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.project-thumbnail {
  aspect-ratio: 1.2;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .project-thumbnail:hover img {
  transform: scale(1.1);
} */

.project-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand-light-gray);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.project-thumbnail:hover::before {
  opacity: 0.3;
}

/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease, transform 0.3s ease;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--brand-gold);
  transform: rotate(90deg);
}

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.lightbox-image-container {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 20px;
  opacity: 0.7;
}

.lightbox-nav:hover {
  color: var(--brand-gold);
  opacity: 1;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Project Detail Responsive */
@media (max-width: 768px) {
  .project-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .project-detail-title {
    font-size: 1.5rem;
  }

  .lightbox-content {
    padding: 40px 20px;
  }

  .lightbox-nav {
    font-size: 30px;
    padding: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
}

/* ==================== 404 Error Page ==================== */
.error-404-section {
  /* background-color: #808080; */
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.error-404-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

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

.error-404-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 4rem;
  color: var(--brand-dark-green);
  margin-bottom: 20px;
  font-weight: 400;
}

.error-404-subtitle {
  color: var(--brand-grey);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: var(--brand-dark-green);
  border: 2px solid var(--brand-dark-green);
  padding: 15px 40px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.error-404-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--brand-dark-green);
  transition: all 0.3s ease;
  z-index: -1;
}

.error-404-btn:hover {
  color: #fff;
}

.error-404-btn:hover::before {
  width: 100%;
}

.error-404-btn i {
  transition: transform 0.3s ease;
}

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

.error-404-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 12rem;
  font-weight: 400;
  color: var(--brand-grey);
  line-height: 1;
  letter-spacing: -10px;
}

/* Responsive 404 */
@media (max-width: 768px) {
  .error-404-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

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

  .error-404-title {
    font-size: 2.5rem;
  }

  .error-404-number {
    font-size: 6rem;
    letter-spacing: -5px;
  }
}

/* ==================== Map Preloader ==================== */
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #e0e0e0;
}

.map-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.map-preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #ccc;
  border-top-color: #888;
  border-radius: 50%;
  animation: mapSpinner 0.8s linear infinite;
}

.map-preloader-text {
  margin-top: 15px;
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@keyframes mapSpinner {
  to {
    transform: rotate(360deg);
  }
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==================== Contact Form ==================== */
.contact-form-section {
  background-color: #f9f9f9;
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--brand-dark-green);
  margin-bottom: 5px;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--brand-dark-green);
  box-shadow: 0 0 0 2px rgba(26, 60, 52, 0.1);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  align-items: center;
}

.contact-form .form-check-label {
  font-size: 14px;
  color: var(--brand-dark-green);
  cursor: pointer;
}

.contact-form .form-check-input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.contact-form .form-check-input:checked {
  background-color: var(--brand-dark-green);
  border-color: var(--brand-dark-green);
}

.btn-submit {
  background-color: var(--brand-dark-green);
  color: #fff;
  border: 2px solid var(--brand-dark-green);
  padding: 15px 40px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
  background-color: transparent;
  color: var(--brand-dark-green);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  padding: 15px;
  border-radius: 0;
  font-size: 0.95rem;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}