/* Navbar */
.custom-navbar {
  background-color: #111827;
  padding: 12px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.navbar-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-right: 12px;
}

.navbar-brand span {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.custom-navbar .nav-link {
  color: #e5e7eb;
  font-weight: 500;
  margin-left: 12px;
  transition: 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #f8c400;
}

.custom-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.custom-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.nav-call-btn {
  background-color: #7b1117;
  color: #ffffff;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 4px;
  border: 2px solid #7b1117;
}

.nav-call-btn:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 991px) {
  .custom-navbar .navbar-nav {
    padding-top: 15px;
  }

  .custom-navbar .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .nav-call-btn {
    margin-top: 10px;
    display: inline-block;
  }
}

/* Security banner starts */
#security-banner {
  width: 100%;
}

.security-banner-img {
  height: 85vh;
  object-fit: cover;
  filter: brightness(55%);
}

#security-banner .carousel-caption {
  bottom: 34%;
}

#security-banner .carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

#security-banner .carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.banner-btn {
  background-color: #7b1117;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 4px;
  border: 2px solid #7b1117;
}

.banner-btn:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .security-banner-img {
    height: 60vh;
  }

  #security-banner .carousel-caption {
    bottom: 24%;
  }

  #security-banner .carousel-caption h1 {
    font-size: 2rem;
  }

  #security-banner .carousel-caption p {
    font-size: 1rem;
  }
}

/* Security banner ends */

/* Security services starts */
#security-services-page {
  background-color: #f8f9fa;
}

#security-services-page h2 {
  color: #111827;
  font-weight: 700;
}

.security-service-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.security-service-img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.security-service-content {
  padding: 22px 20px;
  border-top: 4px solid #7b1117;
}

.security-service-content h3 {
  color: #111827;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.security-service-content p {
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .security-service-img {
    height: 220px;
  }
}

/* Security services ends */

/* Clients section starts */
#clients-ticker {
  background-color: #ffffff;
  overflow: hidden;
}

#clients-ticker h2 {
  font-weight: 700;
  color: #111827;
}

.clients-subtitle {
  color: #4b5563;
  font-size: 1rem;
}

.clients-slider {
  width: 100%;
  overflow: hidden;
  background-color: #f8f9fa;
  padding: 24px 0;
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  width: 180px;
  height: 90px;
  flex-shrink: 0;
  margin: 0 16px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.client-logo img {
  width: 100%;
  height: 100%;
  max-width: 145px;
  max-height: 58px;
  object-fit: contain;
}

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

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

@media (max-width: 991px) {
  .client-logo {
    width: 150px;
    height: 78px;
    margin: 0 12px;
    padding: 14px;
  }

  .client-logo img {
    max-width: 122px;
    max-height: 48px;
  }
}

@media (max-width: 576px) {
  #clients-ticker {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .clients-subtitle {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.94rem;
  }

  .clients-slider {
    padding: 18px 0;
  }

  .clients-track {
    animation-duration: 22s;
  }

  .client-logo {
    width: 118px;
    height: 66px;
    margin: 0 8px;
    padding: 10px;
    border-radius: 6px;
  }

  .client-logo img {
    max-width: 98px;
    max-height: 42px;
  }
}

/* Clients section ends */

/* Footer section starts */
.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 55px 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 6px;
  background-color: #ffffff;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.site-footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}

.site-footer p {
  line-height: 1.7;
  margin-bottom: 10px;
}

.site-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: #f8c400;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 42px 0 22px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 56px;
    height: 56px;
  }
}

/* Footer section ends */



/* WhatsApp floating button starts */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }
}

/* WhatsApp floating button ends */
