/* === INDUSTRIAL TEMPLATE === */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --orange: #f2660f;
  --orange-dark: #d4590d;
  /* --dark: #111111; */
  --dark-2: #002244;
  --gray: #6c757d;
  --gray-light: #f8f9fa;
  --dark: #002244;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Header */
header.fixed-top {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s;
}

header .navbar-brand {
  letter-spacing: -0.5px;
}

header .nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

header .nav-link:hover,
header .nav-link.active {
  color: var(--orange) !important;
}

header .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--orange);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: #fff;
}

.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.btn-dark-blue {
  background: var(--dark);
  color: #fff;
  border: none;
}
.btn-dark-blue:hover {
  background: var(--dark);
  color: #fff;
}

.btn-outline-dark-blue {
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn-outline-dark-blue:hover {
  background: var(--dark);
  color: #fff;
}

/* Utility classes */
.text-orange { color: var(--orange); }
.text-dark-blue { color: var(--dark); }
.bg-orange { background: var(--orange); }
.bg-dark-blue { background: var(--dark); }
.bg-gray-light { background: var(--gray-light); }
.border-orange { border-color: var(--orange); }
.badge-accent { background: var(--orange); color: #fff; }
.badge-soft-orange {
  background: color-mix(in srgb, var(--orange) 20%, transparent);
  color: var(--orange);
  border: 1px solid var(--orange);
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* Hero */
#hero h1 {
  line-height: 1.2;
}

/* Industries cards */
.industries-card {
  border-radius: 12px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.industries-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Building section */
.building-card {
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 280px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

/* CTA section */
.cta-section {
  background: var(--orange);
}

.cta-section .play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.cta-section .play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.quote-form {
  border-radius: 12px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

/* Testimonials */
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
  cursor: pointer;
  transition: border-color 0.3s;
}
.testimonial-avatar.active,
.testimonial-avatar:hover {
  border-color: var(--orange);
}

.nav-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-arrow.active,
.nav-arrow:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

/* Footer */
footer a {
  transition: color 0.3s;
}
footer a:hover {
  color: var(--orange) !important;
}

.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.social-circle:hover {
  opacity: 0.85;
  color: #fff !important;
}

/* Client logos */
.client-logo {
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s;
  max-height: 40px;
}
.client-logo:hover {
  filter: grayscale(0%) opacity(1);
}

/* Orange tint on images */
.img-orange-tint img {
  filter: sepia(0.8) saturate(2.5) hue-rotate(-15deg);
  transition: filter 0.4s ease;
}
.img-orange-tint:hover img {
  filter: none;
}

/* Section padding */
.section-padding {
  padding: 90px 0;
}

/* Responsive */
@media (max-width: 991px) {
  .building-card {
    margin-top: 0;
    max-width: 100%;
  }
  .quote-form {
    margin-top: 0;
  }
}
