/* =================================
   GLOBAL STYLES
================================= */

body {
  background-color: #0b0b0b;
}

/* NAV BORDER FIX */
.border-danger {
  border-color: #c40000 !important;
}

html, body {
  overflow-x: hidden;
}

/* =================================
   HERO SECTION
================================= */

.hero-section {
  position: relative;
  min-height: 65vh;
  background-image: url("../images/background-image.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay for readability */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.2));
}

/* Content layer */

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* Badge */

.hero-badge {
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ff4b4b;
}

/* Title */

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Highlight word */

.hero-highlight {
  color: #ff4b4b;
}

/* Subtitle */

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* Buttons */

.hero-btn-primary {
  background: #e63946;
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
}

.hero-btn-primary:hover {
  background: #c62828;
}

.hero-btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
}

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

/* NAVBAR – MOBILE ADJUSTMENTS */
@media (max-width: 991px) {

  /* Prevent items from wrapping */
  .navbar .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  /* Logo smaller */
  .navbar img {
    width: 45px !important;
    height: auto;
  }

  /* Company name smaller */
  .navbar h3 {
    font-size: 1rem;
    margin: 0 8px;
    white-space: nowrap;
  }

  .navbar h3 span {
    font-size: 0.95rem;
  }

  /* Hamburger smaller */
  .navbar-toggler {
    padding: 4px 8px;
    font-size: 0.9rem;
  }

  .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }

  /* Force mobile menu below brand */
  .navbar>.container {
    flex-wrap: wrap !important;
  }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
  }

  .navbar-nav {
    margin-left: 0 !important;
    align-items: stretch !important;
    text-align: left;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .navbar-nav .btn {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-position: 95% !important;
  }

}



/* =================================
   2. ABOUT US SECTION
================================= */

.about-section {
  background: #f8f9fa;
}

.section-badge {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #c40000;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3;
}

.about-section p {
  color: #555;
  line-height: 1.7;
}

/* CTA CARD */

.about-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 25px;
  margin-top: 25px;
  border: 1px solid #eee;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.cta-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #c40000;
  font-weight: 600;
}

.about-cta h5 {
  margin: 0;
  font-weight: 600;
}

/* LOGO */

.about-logo-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-logo {
  max-width: 280px;
}

/* ABOUT MOBILE */

@media (max-width: 768px) {

  .about-cta {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .about-logo-wrapper {
    margin-top: 30px;
  }

}



/* =================================
   3. SERVICES SECTION
================================= */

.service-card {
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



/* =================================
   4. GALLERY SECTION
================================= */

.gallery-img {
  margin: 12px 0;
  display: block;
}

@media (max-width: 768px) {

  .gallery-img {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .gallery-track {
    justify-content: center;
  }

}



/* =================================
   5. CONTACT SECTION
================================= */

.contact-section {

  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(30, 30, 30, 0.85) 50%,
      rgba(196, 0, 0, 0.4) 100%);

  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.contact-section i {
  color: #c40000;
}

.contact-section p,
.contact-section h5 {
  color: #fff;
}

.contact-section .btn-success {
  background-color: #25D366;
  border: none;
}

.contact-section .social-links a:hover {
  color: #c40000;
}

/* CONTACT MOBILE */

@media (max-width: 768px) {

  .contact-section .text-md-start {
    text-align: center !important;
  }

  .contact-section .text-md-end {
    text-align: center !important;
  }

}