/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
/* === ABOUT IMAGE GRID === */
.about-image-grid img {
  border-radius: var(--border-radius);
}

/* === STAT BOX === */
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}
.stat-box h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* === MVV SECTION === */
.mvv-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.mvv-icon {
  margin-bottom: 1.5rem;
}

.values-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.values-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}
.values-list li:last-child {
  border-bottom: none;
}

/* === WHY US CARDS === */
.why-us-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.why-us-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}
.why-us-card .icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === TEAM SECTION === */
.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* === CERTIFICATIONS === */
.cert-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  height: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .why-us-card {
    flex-direction: column;
    text-align: center;
  }
  .stat-box h3 {
    font-size: 2rem;
  }
}
/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
/* === CONTACT CARDS === */
.contact-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.contact-card a {
  color: var(--primary-color);
}
.contact-card a:hover {
  color: var(--primary-dark);
}

.contact-card a {
  word-break: break-word;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* === QUOTE FORM === */
.quote-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
}

.quote-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.quote-form .form-control,
.quote-form .form-select {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .quote-form-wrapper {
    padding: 2rem 1.5rem;
  }
}
/* ========================================
   FOOTER COMPONENT STYLES
   ======================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
}
.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-contact i {
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact a:hover {
  color: var(--white);
}

.footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.5rem;
  color: var(--white);
}
.footer .social-links a:hover {
  background: var(--primary-color);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--white);
}

/* === SCROLL TO TOP === */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}
/* ========================================
   HOME PAGE STYLES
   ======================================== */
/* === HERO SECTION === */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
  background-image: url("https://images.unsplash.com/photo-1557862921-37829c790f19?w=1920&h=1080&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: #ffffff;
}
@media (min-width: 992px) {
  .hero-section {
    max-height: 80vh;
    min-height: 80vh;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 64, 175, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.hero-features .feature-item i {
  color: #10b981;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === EMERGENCY BANNER === */
.emergency-banner {
  background: #dc2626;
  color: #ffffff;
  padding: 1.5rem 0;
}
.emergency-banner h3 {
  margin: 0;
}

/* === ABOUT PREVIEW SECTION === */
.about-image-wrapper {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #1e3a8a;
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.experience-badge h3 {
  font-size: 3rem;
  margin-bottom: 0;
}

.feature-box {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.feature-box:hover {
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* === SERVICE CARDS === */
.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li i {
  color: #10b981;
}

/* === INDUSTRY CARDS === */
.industry-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background: #1e3a8a;
  color: #ffffff;
}
.industry-card:hover i {
  color: #ffffff;
}

/* === FEATURE CARDS === */
.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon-circle {
  width: 80px;
  height: 80px;
  background: #f9fafb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.feature-icon-circle i {
  color: #1e3a8a;
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.testimonial-card .stars {
  color: #f59e0b;
}

.testimonial-author h5 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}
.testimonial-author span {
  color: #6b7280;
  font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .hero-section {
    min-height: 50vh;
    padding: 3rem 0 2.5rem;
    max-height: 73vh;
  }
  .experience-badge {
    position: static;
    margin-top: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}
/* ========================================
   INDUSTRIES PAGE STYLES
   ======================================== */
.industry-detail {
  margin-bottom: 4rem;
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card-small {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}
.industry-card-small:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
/* ========================================
   Pioneer Investigation Services - Main SCSS
   Modern, Responsive Security Services Website
   ======================================== */
/* === ROOT VARIABLES === */
:root {
  --primary-color: #1e3a8a;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #dc2626;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-dark: #111827;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* === BUTTONS === */
.btn {
  padding: 0.75rem 2rem !important;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: #1e3a8a !important;
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-outline-light:hover {
  background: #ffffff !important;
  color: #1e3a8a !important;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-link {
  color: #1e3a8a !important;
  font-weight: 600;
  padding: 0;
}
.btn-link:hover {
  color: var(--primary-dark);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
/* === IMPORT COMPONENT STYLES === */
/*@import 'navbar';
@import 'footer';
@import 'home';
@import 'services';
@import 'Industries';
@import 'About';
@import 'contact';
*/
/* ========================================
   NAVBAR COMPONENT STYLES
   ======================================== */
/* === TOP BAR === */
.top-bar {
  background: var(--bg-dark);
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}
.top-bar a {
  color: var(--white);
}
.top-bar a:hover {
  color: var(--primary-light);
}
.top-bar .contact-info span {
  margin-right: 1rem;
}
.top-bar .social-links a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-left: 0.5rem;
}
.top-bar .social-links a:hover {
  background: var(--primary-color);
}

/* === NAVIGATION === */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
}
.navbar-brand i {
  font-size: 2rem;
  color: var(--primary-color);
}
.navbar-brand .brand-text {
  line-height: 1.2;
}
.navbar-brand small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: var(--text-dark);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.nav-active {
  color: var(--primary-color);
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.nav-active::after {
  width: 80%;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 0.5rem 0 !important;
  }
}
@media (max-width: 768px) {
  .top-bar {
    text-align: center;
  }
  .top-bar .col-md-6 {
    text-align: center !important;
  }
  .top-bar .contact-info,
  .top-bar .social-links {
    display: block;
    margin: 0.5rem 0;
  }
}
@charset "UTF-8";
/* ========================================
   SERVICES PAGE STYLES
   ======================================== */
/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 6rem 0 3rem;
  color: var(--white);
}

.custom-breadcrumb {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.custom-breadcrumb .crumb {
  /*color: var(--white);*/
  text-decoration: none;
  font-weight: 500;
}
.custom-breadcrumb .crumb.active {
  color: rgba(255, 255, 255, 0.7) !important;
  cursor: default;
  text-decoration: none;
}
.custom-breadcrumb .crumb-separator {
  color: rgba(255, 255, 255, 0.7);
}

/* === SERVICE DETAIL === */
.service-detail img {
  border-radius: var(--border-radius);
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.custom-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  font-size: 1rem;
}

.service-benefits .benefit-item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}

/* === ADDITIONAL SERVICES === */
.additional-service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.additional-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.additional-service-card .ul-list-card-service {
  float: left !important;
}

/* === PROCESS STEPS === */
.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
}