/* Global font → Montserrat */
body {
  font-family: "Montserrat", sans-serif;
}

#fp-nav ul li a span {
  background-color: white; /* Replace 'red' with your desired color */
}

/* Navbar specific font → Tw Cen MT Std */
.navbar {
  font-family: "Tw Cen MT Std", sans-serif;
}

/* Navbar base */
.custom-navbar {
  background: transparent;
  transition: background 0.3s ease;
  padding: 1.2rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-family: "Tw Cen MT Std", sans-serif; /* navbar font */
}

/* When scrolled, add transparent dark layer */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(6px); /* optional: gives glass effect */
}

/* Logo */
.custom-navbar .navbar-brand {
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
}

/* Links */
.custom-navbar .nav-link {
  color: white;
  font-weight: 600;
  margin: 0 0.6rem;
  position: relative;
}

/* Hover underline effect */
.custom-navbar .nav-link:hover {
  color: #0dcaf0;
}

.nav-link.active,
.contact-btn.active {
  color: #0dcaf0 !important; /* highlight color */
  font-weight: bold;
}

.footer {
  background-color: #000;
}

.footer-fixed {
  position: fixed;
  bottom: -100px; /* hidden below screen */
  left: 0;
  width: 100%;
  transition: bottom 0.5s ease;
  z-index: 100;
}
.footer-fixed.show {
  bottom: 0; /* slide up */
}

/* Contact button */
.contact-btn {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: white;
  color: black;
}

/* Bigger hamburger icon */
.navbar-toggler {
  border: none; /* remove border if you want clean look */
  padding: 0.5rem 0.75rem; /* adjust clickable area */
}

.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler-icon {
  width: 60px; /* default 1.5rem */
  height: 60px; /* default 1.5rem */
  background-size: 100% 100%; /* make sure it fills the space */
}

section {
  text-align: center;
  font-size: 2.5rem;
  color: white;
}

#section1 {
  background: #000;
}
#section2 {
  background: #000;
}
#section3 {
  background: #000;
}
#section4 {
  background: #000;
}

.page1 {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: flex-start; /* push content to the left */
  padding-left: 10%; /* safe space from the edge */
  text-align: left; /* override center */
}

.page1 .content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: white;
}

/* Make video cover */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page2 {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: flex-end; /* push content to the left */
  padding-right: 10%; /* safe space from the edge */
  text-align: left; /* override center */
}

.page2 .content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: white;
}

/* Grey background block */
/* .services-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  position: relative;
  z-index: 1;
} */

/* Make grid go full width */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0; /* no gap for tight "chocolate bar" look */
  width: 100%;
}

/* Each item (remove rounding + shadow) */
.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 0; /* no round edges */
  box-shadow: none; /* optional: remove shadows for clean block look */
}

/* Image setup */
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.services-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.services-grid {
  margin-bottom: 100px;
  width: 100%;
}

/* Overlay */
.service-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
}

/* Hover effects */
.service-item:hover img {
  transform: scale(1.1);
}

.service-item:hover .overlay {
  opacity: 1;
}

.contact-section {
  background: #f5f5f5;
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.contact-item {
  text-decoration: none;
  color: inherit;
}

.contact-card {
  position: relative;
  /* border-radius: 12px; */
  overflow: hidden;
  height: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.contact-card:hover img {
  transform: scale(1.05);
}

.contact-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: opacity 0.4s ease;
  opacity: 0;
  padding: 10px;
}

.contact-card:hover .overlay {
  opacity: 1;
}

/* WORK PAGE */
.work-header {
  height: 680px;
  overflow: hidden;
  position: relative;
}
.work-header .header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.logo-work {
  width: 150px;
  height: auto;
}

.about-section {
  background: #fff;
}

.about-section p {
  font-size: 1rem;
  color: #444;
}

.about-section img {
  border-radius: 12px;
  width: 240px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Map Section */
.map-section .row {
  min-height: 400px; /* base height, flexible */
}

.map-section iframe {
  width: 100%;
  height: 100%; /* fill available height */
  border: 0;
  display: block;
}

.map-section .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.map-section .bg-light {
  justify-content: center;
}

.map-section p {
  font-size: 0.95rem;
  color: #555;
}

/* --- Social Section --- */
.social-section {
  background: #fff;
}

.social-section .footer-icon i {
  font-size: 2rem; /* adjust size as needed */
  color: rgba(0, 0, 0, 0.7); /* 80% black */
  transition: color 0.3s ease;
}

.social-section .footer-icon:hover i {
  color: rgba(0, 0, 0, 1); /* darker on hover */
}

.social-section a img {
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-section a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* Page1 text centered */
  #section1 .page1 .content {
    text-align: center !important;
    margin: 0 auto !important; /* horizontal centering */
  }

  /* Navbar adjustments */
  .custom-navbar .navbar-brand {
    font-size: 2rem !important; /* bigger logo */
  }

  .custom-navbar .nav-link {
    font-size: 1.1rem !important; /* bigger menu font */
  }

  /* Hamburger/burger icon bigger */
  .navbar-toggler-icon {
    width: 40px !important;
    height: 40px !important;
    background-size: 100% 100% !important;
  }
}

.clients-section {
  background-color: #ffffff;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 2rem;
  justify-items: center;
  align-items: center;
  padding: 0 2rem;
}

.client-item {
  background-color: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.client-item:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.client-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-item:hover .client-logo {
  filter: grayscale(0%);
}

/* ✅ Smaller, softer caption text */
.client-name {
  font-size: 0.75rem; /* smaller font */
  letter-spacing: 0.5px;
  color: #6c757d !important;
  text-transform: lowercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
  justify-items: center;
  align-items: center;
  /* padding: 0 2rem; */
}

.work-item {
  background-color: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.work-item:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.work-logo {
  width: auto;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.work-item:hover .work-logo {
  filter: grayscale(0%);
}

/* ✅ Smaller, softer caption text */
.work-name {
  font-size: 0.75rem; /* smaller font */
  letter-spacing: 0.5px;
  color: #6c757d !important;
  text-transform: lowercase;
}

/* Mobile style overrides */
@media (max-width: 768px) {
  /* Section 1 text center */
  #section1 .page1 .content {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 90%;
  }

  /* Navbar brand bigger */
  .custom-navbar .navbar-brand {
    font-size: 2rem !important;
  }

  /* Burger icon bigger */
  .navbar-toggler-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .client-logo {
    width: 80px;
  }

  .client-name {
    font-size: 0.7rem;
  }
}
