html,
body {
  overflow-x: hidden;
}
[data-aos] {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
:root {
  --body-color: #f6f6f6;
  --brand-red: #d40000;
  --text-dark: #222222;
  --bg-light: #ffffff;
  --border-grey: #e0e0e0;
  --gold-accent: #d4a552;
  --light-grey-bg: #f8f8f8;
}
/* ========== BASE ========== */
body {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  color: #222;
  margin: 0;
  padding: 0;
  background-color: var(--body-color);
}
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* ========== NAVBAR ========== */
.navbar {
  padding: 1rem 1.5rem;
  transition: background-color 0.4s ease;
}
.navbar .navbar-item {
  position: relative;
  font-weight: 600;
  background-color: transparent;
  color: inherit;
  padding: 0 0.75rem;
}

/* Apply the underline effect only to navbar items that are NOT under .navbar-brand */
.navbar .navbar-menu .navbar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--brand-red); /* or #e63946 */
  transition: width 0.3s ease;
}

.navbar .navbar-menu .navbar-item:hover::after {
  width: 100%;
}

.navbar.is-solid {
  background-color: rgba(3, 3, 3, 0.8);
}
.navbar-burger:hover {
  background-color: #e5e5e5;
}

.navbar-brand .navbar-item img{
    height: 70px !important;
    max-height: 100%;
    width: auto;
  }

/* ========== HERO SECTION ========== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 768px) {
  
  .hero-carousel {
    height: 350px;
  }

  .hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-slide.is-active {
  opacity: 1;
  z-index: 2;
}

/* Hero content styling */
.hero-body {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-body.inner {
  height: 350px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 500;
  color: #eee;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .hero-body {
    min-height: 350px;
    height: 350px;
  }
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .service-card {
    min-height: 100% !important;
  }
}

/* ========== HERO BUTTON ========== */
.hero-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--brand-red);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}
.hero-btn:hover {
  background: var(--brand-red);
  color: #fff;
}

/* ========== TYPOGRAPHY UTILS ========== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 640px;
}
.section-title .highlight {
  color: var(--brand-red);
  font-weight: 800;
}
.section-description {
  font-size: 1.125rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
}

/* ========== LABEL TAG ========== */
.label-tag {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* border: 1px solid #d4a552;
  border-radius: 15px;
  padding: 5px 10px; */
  height: auto;
  align-self: flex-start;
  width: 100%;
  max-width: 150px;
}

.label-tag .dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-red);
  border-radius: 50%;
  display: inline-block;
}
.label-tag.light {
  color: #eee;
}
.label-tag .dot.gold {
  background-color: var(--brand-red);
}
.dot {
  height: 8px;
  width: 8px;
  background-color: var(--brand-red);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}
/* ========== SERVICE CARDS ========== */
.service-card {
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
  text-align: left;
  min-height: 300px;
}
.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-card .icon-top {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d4a552;
}
.service-card hr {
  margin: 1rem 0;
}

/* feature-highlight */
#feature-highlight {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/sketch/1.png") no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

/* ========== FEATURES ========== */
.text-gold {
  color: #d4a552;
}
.feature-item {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.feature-img img {
  border-radius: 1.25rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}
/* ========== FOOTER ========== */
.footer {
  padding: 3rem 1.5rem;
}

.footer {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/sketch/3.png") no-repeat center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.45;
  z-index: 0;
}

/* Make sure footer content appears above the overlay */
.footer .container {
  position: relative;
  z-index: 2;
}
.foot-nav li a,
.foot-nav li a:visited {
  color: #fff !important;
}

.foot-nav li a:hover {
  color: var(--brand-red) !important;
}

/* Service Section with Gemini */
.title.is-2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.title .has-text-warning {
  color: #d4a552 !important; /* Adjust based on your actual gold color */
}

.subtitle.is-6 {
  font-size: 0.95rem;
}

.service-image-wrapper {
  position: relative;
  overflow: hidden; /* Ensures image caption stays within bounds */
  border-radius: 12px; /* For rounded corners on the image wrapper */
}

.service-image-wrapper img {
  border-radius: 12px; /* Apply rounded corners to the image */
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out; /* Smooth scale transition */
}

.service-image-wrapper:hover img {
  transform: scale(1.03); /* Subtle zoom on hover */
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  padding: 1rem;
  box-sizing: border-box;
  font-size: 0.85rem;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease, background-color 0.3s ease;
}

.service-list-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.service-list-item:hover {
  /* color: #d4a552; */
  color: var(--brand-red);
}

@media (min-width: 769px) {
  .service-list-item:hover {
    transform: translateX(5px);
  }  
}

.service-list-item.active {
  /* color: #d4a552; */
  color: var(--brand-red);
}

.service-no {
  font-size: 1.2rem;
  font-weight: bold;
  color: #b0b0b0;
  margin-right: 1.5rem;
  transition: color 0.3s ease;
  width: 25px;
  text-align: right;
}
/* .service-number {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      font-weight: bold;
      border-radius: 4px;
      padding: 0.3rem 0.6rem;
      font-size: 0.9rem;
      z-index: 2;
    } */

.service-list-item.active .service-no {
  /* color: #d4a552; */
  color: var(--brand-red);
}

.service-text {
  flex-grow: 1; /* Allows text to take available space */
  font-size: 1.15rem; /* Larger text for list items */
  color: #363636; /* Default text color */
  transition: color 0.3s ease;
}

.service-list-item.active .service-text {
  /* color: #d4a552; */
  color: var(--brand-red);
}

.service-list-item:hover .service-text {
  /* color: #d4a552; */
  color: var(--brand-red);
}

.arrow-icon {
  margin-left: 1rem;
  color: #b0b0b0; /* Light grey for inactive arrow */
  opacity: 0; /* Hidden by default */
  transform: translateX(-10px); /* Start slightly left */
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.service-list-item.active .arrow-icon,
.service-list-item:hover .arrow-icon {
  /* color: #d4a552; */
  color: var(--brand-red);
  opacity: 1; /* Visible on active/hover */
  transform: translateX(0); /* Move to original position */
}

/* Specific Material Icons adjustments for the arrow */
.arrow-icon .material-icons {
  font-size: 1.5rem; /* Adjust size as needed */
  /* You can try to simulate boldness by increasing font-weight if supported,
       but it's not a standard Material Icons feature.
       A slight filter or shadow might help, but can look hacky. */
  /* font-weight: 900; - This usually doesn't work for Material Icons fonts as they are icon fonts */
  /* text-shadow: 0 0 1px #d4a552; - A subtle glow for boldness, optional */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .title.is-2 {
    font-size: 2rem;
  }
  .service-list-item {
    padding: 1rem 0;
  }
  .service-no {
    font-size: 1rem;
    margin-right: 1rem;
  }
  .service-text {
    font-size: 1rem;
  }
  .arrow-icon {
    margin-left: 0.5rem;
  }
  .image-caption {
    padding: 0.75rem;
    font-size: 0.75rem;
  }
}

/* Architecture Process */
.process-section {
  background-color: var(--light-grey-bg);
}

@media (min-width: 769px) {
  .process-section {
    padding: 4rem 0 8rem;
  }
}

/* Header Adjustments */
.process-header .column {
  display: flex; /* Use flexbox for alignment within columns */
  flex-direction: column;
  justify-content: flex-start; /* Align content to the start */
}

.process-header-right {
  justify-content: flex-end; /* Align the description text to the bottom right */
  align-items: flex-end; /* Align items to the end of the cross-axis */
}

.process-tag.is-warning.is-light {
  background: none !important;
  color: var(--brand-red) !important;
  border: 1px solid var(--brand-red) !important;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 20px;
  max-width: max-content !important;
}
.process-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.process-title strong {
  color: var(--text-dark);
}

.process-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  text-align: right; /* Align text to the right for the gap effect */
}

/* Staggered Columns and Cards */
.process-cards-grid {
  /* Remove default column padding to control spacing better with custom padding */
  margin-left: 0;
  margin-right: 0;
}

.process-cards-grid .column {
  /* padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 3rem; */
}

.process-column-staggered {
  position: relative; /* For the number absolute positioning */
  transition: transform 0.3s ease-in-out; /* Smooth transition for stagger effect */
}

.process-offset-down {
  transform: translateY(
    30px
  ); /* Adjust this value for desired stagger amount */
}

.process-offset-down-more {
  transform: translateY(60px); /* Adjust this value */
}

.process-offset-down-most {
  transform: translateY(90px); /* Adjust this value */
}

/* Card Styling */
.process-card.card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-grey);
  box-shadow: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: var(--bg-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.process-card .card-image {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.process-card .card-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
}

.process-card:hover .card-image img {
  transform: scale(1.05);
}

.process-card .card-content {
  padding: 0 10px;
  margin-bottom: 3rem;
  /* background-color: var(--bg-light);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.process-card .title.is-6 {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.process-card .is-size-7 {
  color: #666666;
  line-height: 1.5;
}

/* Overlapping Numbers at the Bottom */
.process-number {
  position: absolute;
  bottom: 0px;
  right: -35px;
  transform: translateX(-50%);
  font-size: 5rem;
  font-weight: bold;
  color: rgba(145, 145, 145, 0.3);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.process-card:hover .process-number {
  color: rgba(212, 0, 0, 0.2); /* Slightly darker red on hover for number */
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .section-description {
    max-width: 100%;
  }
  /* Tablets and below */
  .process-header-left,
  .process-header-right {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .process-description {
    text-align: center; /* Center text on smaller screens */
  }

  /* Reset stagger on tablet/mobile */
  .process-offset-down,
  .process-offset-down-more,
  .process-offset-down-most {
    transform: translateY(0);
  }
  .process-cards-grid .column {
    padding-bottom: 1.5rem; /* Reduce bottom padding */
  }

  .process-number {
    font-size: 6rem;
    bottom: -15px;
  }
}
@media (max-width: 768px) {
  /* Mobile */
  .process-title {
    font-size: 1.8rem;
  }
  .process-description {
    font-size: 0.85rem;
  }
  .process-number {
    font-size: 5rem;
    bottom: 0px;
  }
  .process-card .card-content {
    padding: 1rem 0.75rem;
  }
  .process-card .title.is-6 {
    font-size: 1rem;
  }
  .process-card .is-size-7 {
    font-size: 0.7rem;
  }
}

/* --- CREATIVE PROJECT (GALLERY) --- */
.carousel {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  padding: 20px 0;
}
.carousel-item {
  flex: 0 0 auto;
  width: 25%;
  margin-right: 10px;
}
.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}
/* .card:hover {
      transform: scale(1.05);
    } */
.carousel::-webkit-scrollbar {
  display: none;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
/* Marina */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  height: 50vh;
}
.cross-bg {
  position: relative;
  overflow: visible;
}

.crosing {
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.crosing::before,
.crosing::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.05);
}

.crosing::before {
  width: 1px;
  height: 250px;
  left: 0px;
  top: -30px;
}

.crosing::after {
  height: 1px;
  width: 300px;
  top: 0px;
  transform: translateX(-75%);
  left: 0;
}

.material-icons {
  font-size: 18px;
  vertical-align: middle;
}

.is-rounded-border {
  border-radius: 24px;
}

/* Global form styles */
.contact-us input,
.contact-us textarea,
.contact-us select {
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border 0.3s ease;
}

/* Focus effect: gold border like Screenshot 2 */
.contact-us input:focus,
.contact-us textarea:focus,
.contact-us select:focus {
  border: 1px solid #b7935a; /* gold color */
  box-shadow: none;
}

/* Textarea rounded corners (more subtle than inputs if needed) */
.contact-us textarea {
  border-radius: 15px;
  resize: vertical;
}

/* Send Message Button (Screenshot 2 style) */
.button.send-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background-color: #f7f3ef;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button.send-button:hover {
  background-color: #b7935a;
  color: #fff;
}

.button.send-button i.material-icons {
  font-size: 18px;
}

.has-text-highlight {
  color: var(--brand-red);
}
.has-text-semi-highlight {
  color: #f55959;
}

/* ===== MOBILE VERSION===== */
@media (max-width: 1023px) {
  body {
    padding-top: 72px;
  }
}
@media (max-width: 1023px) {
  .label-tag {
    display: none;
  }
}
@media (max-width: 1023px) {
  .mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    z-index: 999;
    padding: 0.75rem 0.5rem;
    background-color: var(--body-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .navbar-burger {
    color: #222;
  }
  .mobile-drawer {
    position: fixed;
    top: 69px;
    left: 0;
    width: 260px;
    height: calc(100vh - 69px);
    background-color: var(--body-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 998;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }

  .mobile-drawer.is-active {
    transform: translateX(0);
  }

  .mobile-drawer .navbar-item {
    display: block;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #222;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 997;
    display: none;
  }

  .mobile-overlay.is-active {
    display: block;
  }

  body.is-clipped-mobile {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}
.footer-top-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .footer-top-mobile {
    height: 50px;
  }
}
