
:root {
  --color-primary-light: #f7f7f7;
  /* Off-White/Light Gray */
  --color-secondary-dark: #1a1a1a;
  /* Deep Charcoal Text */
  --color-accent: #b88a00;
  /* Subtle Brass/Gold */
}

/* Applying Custom Fonts */
.font-heading {
  font-family: "Inter", sans-serif;
}

.font-body {
  font-family: "Manrope", sans-serif;
}

/* Color Adjustments for Light Theme */
.bg-primary-light {
  background-color: var(--color-primary-light);
}

.text-secondary-dark {
  color: var(--color-secondary-dark);
}

.border-primary-dark {
  border-color: var(--color-secondary-dark);
}

.hover\:shadow-gold:hover {
  box-shadow: 0 10px 20px -5px rgba(184, 138, 0, 0.3);
}

/* Hero Backgrounds (Dark for cinematic feel) */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-bg-layer.active {
  opacity: 1;
}

/* Mobile Menu Overlay Styles */
#mobile-menu-overlay {
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  background-color: var(--color-primary-light);
}

#mobile-menu-overlay.open {
  transform: translateX(0);
}

.nav-link-item {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#mobile-menu-overlay.open .nav-link-item {
  opacity: 1;
  transform: translateY(0);
}

/* Process Card Hover Effect (Subtle scale/gold shadow) */
.process-card {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s ease;
}

.process-card:hover {
  transform: translateY(-5px);
}

#slider-container {
  /* Hide scrollbar for aesthetics */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */

  /* Enforces snapping to card position */
  scroll-snap-type: x mandatory;

  /* Ensure the container is always slightly bigger than 1 card to allow scroll */
  padding-bottom: 0.5rem;
}

#slider-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Apply snap alignment to each card */
.slider-card {
  scroll-snap-align: start;
  /* Snap to the start of the card */
  flex-shrink: 0;
  /* Prevents cards from shrinking */

  /* Calculate widths for displaying 3 items in the row, but only showing 1 for snapping */
  /* This ensures only 1 card is centered/visible for the scroll break effect */

  /* Mobile: Show approx 1.1 cards to suggest scrolling, snap 1 card */
  width: calc(100% - 2rem);
}

/* Tablet/Desktop: Show 3 cards side-by-side but allow scrolling to snap 1 by 1 */
@media (min-width: 768px) {
  .slider-card {
    /* Show exactly 3 cards plus the gap (space-x-8, which is 2rem) */
    /* Width calculation: (100% - 2*gap) / 3 cards */
    width: calc((100% / 3) - 1.333rem);
    /* Adjusted for space-x-8 gap of 2rem */
  }
}
/* ------------------------- Logos marquee [index.html] --------------------------- */


            /* CSS for Continuous Logo Marquee */
            .logo-strip-marquee {
                display: flex;
                animation: marquee 30s linear infinite;
                /* Control speed here */
                white-space: nowrap;
                width: max-content;
                /* Ensure enough width for two sets of logos */
                padding-right: 4rem;
                /* Buffer to prevent jank */
            }

            .logo-item-marquee {
                flex-shrink: 0;
                width: 150px;
                /* Adjust based on desired spacing */
                margin-right: 3rem;
                /* Spacing between logos */
            }

            @keyframes marquee {
                from {
                    transform: translateX(0);
                }

                to {
                    transform: translateX(-50%);
                }

            
            }
/* ------------------------- Form Styling [contact.html] --------------------------- */

.input-style {
  background-color: transparent;
  border: 1px solid var(--color-secondary-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-style:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}


/* ----------------- Custom Styles for Fixed Buttons (whatsapp & move to top) [index.html] ------------ */
.floating-btn {
  position: fixed;
  /* Default position for both buttons */
  bottom: 1rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* Apply smooth transition to all properties, especially 'bottom' and 'opacity' */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WhatsApp Button Base Style */
#whatsapp-btn {
  background-color: #25d366; /* WhatsApp brand color */
}

/* WhatsApp Button Stacking Position (Activated via JS) */
#whatsapp-btn.stacked {
  /* 2rem (base) + 3rem (button height) + 1rem (spacing) = 6rem */
  bottom: 5rem;
}

/* Scroll to Top Button Styling */
#scrollToTop-btn {
  background-color: var(--color-accent);
  opacity: 0; /* Initially hidden */
  pointer-events: none;
}
#scrollToTop-btn.show {
  opacity: 1;
  pointer-events: auto;
}
