/* ==================================================
   1. ROOT + RESET
================================================== */

:root {
  --primary: #0B3C5D;
  --accent: #ff7a1a;
  --light-bg: #f5f7fa;
  --dark-bg: #071722;
  --text-dark: #111;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}


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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1, h2, h3 {
  font-family: "Outfit", sans-serif;
}



/* ==================================================
   9. TABLET (768px+)
================================================== */


/*TABLET CSS*/



/* @media only screen and (min-width:1000px) { */



/* HERO BACKGROUND */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(
      rgba(10, 30, 45, 0.75),
      rgba(10, 30, 45, 0.85)
    ),
    url("../images/images1.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* NAVIGATION */
.nav {
  position: fixed;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(15, 35, 50, 0.55);
  padding: 18px 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */


.logo {
    position: relative ; display: block; 
}

.logo img {
    position: relative;  width: 60px; border-radius: 15px; display: block;
}


.logo-main {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-sub {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff7a1a;
}

/* NAV CTA */
.nav-cta {
  background: #ff7a1a;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background: #ff8f3a;
}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.hero-text {
  max-width: 650px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(15, 35, 50, 0.55);
  color: #ff9b52;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 15px;
  margin-bottom: 20px;
}

/* HEADLINE */
.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px; color: #eee;
}

.hero-text h1 span {
  color: #ff7a1a;
}

/* DESCRIPTION */
.hero-description {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 35px; color: #eee;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #ff7a1a;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #ff8f3a;
}

.btn-secondary {
  border: 1px solid #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #0b1e2d;
}



.scroll    {
    position: fixed; z-index: 11;  bottom: 0px; right: 0; padding: 8px 10px; background: #222; color: #fafafa; text-align: center; display: none;
}

.scroll a   {
    color: #fafafa; text-decoration: none;
}

.scroll span   {
    font-size: 14px; position: relative; display: block;
}

.scroll i  {
    margin-right: 0px; position: relative; display: block;
}
    

#wrapper {
    position: relative; box-sizing: border-box; width: 100%; box-sizing: border-box; padding: 8% 5% 5% 5%;
}

.company-overview {
  position: relative;
  padding: 100px 20px;
  background: url('../images/overview-img.png') center/cover no-repeat;
  color: #ffffff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.company-overview .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,25,40,0.85), rgba(15,45,70,0.85));
  z-index: 0;
}

.overview-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */

.overview-left h2 {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px; 
  color: orange;
}

.overview-left h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.overview-left p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

.overview-stats {
  display: flex;
  gap: 30px;
}

.overview-stats strong {
  display: block;
  font-size: 20px;
}

.overview-stats span {
  font-size: 13px;
  opacity: 0.75; color: orange;
}

/* RIGHT SIDE */

.overview-right {
  display: grid;
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.9;
}

.our-services  {
    position: relative; width: 100%; padding: 5% 0; text-align: center;
}


.services-logo {
   position: relative; width: 200px; margin-bottom: 20px;   animation: flipHorizontal 3s infinite linear;
  transform-style: preserve-3d;
}


@keyframes flipHorizontal {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.our-services h2  {
    font-size: 40px; 
}



.services-wrap {
  position: relative; box-sizing: border-box; text-align: center; display: flex; width: 100%;
}


.services-wrap img {
    width: 100%; border-radius: 20px;
}

.services-cont  {
    margin: 20px;
}

.services-cont-inside {
    position: relative; box-shadow: 10px 10px 10px lightgray; width: 80%; margin: 0px auto; margin-top: -30px; padding: 20px; background: white
}

.services-cont-inside h3 {
    font-size: 20px; margin-bottom: 15px;
}

.services-cont-inside p {
    font-size: 14px;
}




.bqs-section {
  background: #f3f4f6;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.bqs-container {
  max-width: 1200px;
  margin: auto;
}

.bqs-section h2 {
  font-size: 38px;
  margin-bottom: 8px;
  color: #111827;
}

.bqs-subtitle {
  font-size: 22px;
  color: #6b7280;
  margin-bottom: 50px;
}

/* GRID */

.bqs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARDS */

.bqs-card {
  background: white;
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.bqs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICON */

.bqs-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* TEXT */

.bqs-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111827;
}

.bqs-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}





.rob-section {

  padding: 80px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.rob-container {
  max-width: 1200px;
  margin: auto;
}

.rob-section h2 {
  font-size: 38px;
  margin-bottom: 8px;
  color: #111827;
}

.rob-subtitle {
  font-size: 22px;
  color: #6b7280;
  margin-bottom: 50px;
}

/* GRID */

.rob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARDS */

.rob-card {
  background: white;
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.rob-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICON CIRCLE */

.rob-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* TEXT */

.rob-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111827;
}

.rob-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}



.our-services  {
    position: relative; width: 100%; padding: 5% 0; text-align: center;
}


.our-services img {
  margin: 0px auto;
}

.services-logo {
   position: relative; width: 200px; margin-bottom: 20px;   animation: flipHorizontal 3s infinite linear;
  transform-style: preserve-3d;
}


@keyframes flipHorizontal {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.our-services h2  {
    font-size: 40px;  margin-top: 10px;
}




.services-section {
  background: #f3f4f6;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */

.services-text h2 {
  font-size: 38px;
  margin-bottom: 8px;
  color: #111827;
}

.services-subtitle {
  font-size: 22px;
  color: #6b7280;
  margin-bottom: 30px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  list-style: none;
}

/* custom bullet */

.services-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 28px;
  color: #2563eb; /* brand color */
}

.services-list strong {
  color: #111827;
}

/* RIGHT SIDE */

.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.image-caption {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
  text-align: right;
}

/* ✅ Hover polish */

.services-image img:hover {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}



/* ===== INVESTIGATIVE SECTION ===== */

.investigative-section {
    padding: 80px 5%;
  
}

.investigative-section .container {
    max-width: 1200px;
    margin: auto;
}

.investigative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.investigative-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.investigative-content .subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

.investigative-list {
    list-style: disc;
    padding-left: 20px;
}

.investigative-list li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.investigative-list strong {
    color: #111;
}

.investigative-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.image-credit {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    text-align: right;
}

/* ===== TRACK RECORD SECTION ===== */

.track-record {
    padding: 80px 5%;
    background: #f5f7fa; border-radius: 14px;
}

.track-record .container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.track-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.track-card .icon {
    font-size: 40px;
    color: #2563eb; /* modern blue */
    margin-bottom: 20px;
}

.track-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #111;
}

.track-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}






.clients-section {
  background: linear-gradient(135deg, #0b1c2d, #123a5a, #0e2a44);
  color: #ffffff;
  padding: 80px 20px 40px;
  font-family: Arial, sans-serif;
}

.clients-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.clients-left h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 18px;
}

.intro {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.client-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.client-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.client-card .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.client-card h3 {
  margin: 6px 0 8px;
  font-size: 20px;
}

.client-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #1fa3a3;
  font-weight: bold;
}

.clients-right {
  position: relative;
}

.clients-right img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.stat {
  position: absolute;
  background: #ffffff;
  color: #0b1c2d;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.stat strong {
  display: block;
  font-size: 14px;
}

.stat1 { top: 20px; left: -20px; }
.stat2 { bottom: 30px; left: 20px; }
.stat3 { top: 50%; right: -20px; }

.clients-cta {
  max-width: 1200px;
  margin: 60px auto 0;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.clients-cta h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.cta-btn {
  display: inline-block;
  background: #ff8c42;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.cta-btn:hover {
  background: #ffa366;
  transform: translateY(-2px);
}






.approach-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f7fafc, #eef3f8);
  font-family: Arial, sans-serif;
}

.approach-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.approach-left h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #0f2a3d;
}

.approach-subtitle {
  font-size: 18px;
  color: #4a6a80;
  margin-bottom: 30px;
}

.approach-cards {
  display: grid;
  gap: 18px;
}

.approach-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  border: 1px solid #e6edf3;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.approach-card .icon {
  font-size: 30px;
  min-width: 42px;
}

.approach-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #123a5a;
}

.approach-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a4a4a;
}

.approach-right {
  position: relative;
}

.approach-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.approach-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(15,42,61,0.9);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}




.why-choose {
  
  padding: 80px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #b0c4d4;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card:hover {
  transform: translateY(-8px);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; 
}

.feature-box {
  text-align: left; background: linear-gradient(135deg, #0c1f2f, #132f45); padding: 20px; margin: 10px;   border-radius: 18px;
}

.feature-box .icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #4db8ff; 
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-box p {
  color: #c6d6e2;
  line-height: 1.6;
  font-size: 15px;
}





/* QUOTE SECTION */
.quote-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0b1e2d, #102c3f);
  color: #fff;
}

.quote-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.quote-badge {
  display: inline-block;
  background: rgba(255,122,26,0.15);
  color: #ff9b52;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.quote-info h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.quote-description {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 30px;
}

.quote-highlights div {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.9;
}

/* FORM WRAPPER */
.quote-form-wrapper {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* FORM */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff7a1a;
  background: rgba(255,255,255,0.12);
}

/* BUTTON */
.quote-btn {
  margin-top: 10px;
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: #ff7a1a;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #ff8f3a;
  transform: translateY(-3px);
}
    




.coverage-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #eef4f8, #ffffff);
  font-family: Arial, sans-serif;
}

.coverage-container {
  max-width: 1200px;
  margin: auto;
}

.coverage-header {
  text-align: center;
  margin-bottom: 50px;
}

.coverage-header h2 {
  font-size: 36px;
  color: #0f2a3d;
  margin-bottom: 8px;
}

.coverage-header p {
  font-size: 18px;
  color: #5c768a;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.coverage-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #e7eef5;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.coverage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(15,42,61,0.04));
  opacity: 0;
  transition: opacity 0.25s;
}

.coverage-card:hover::after {
  opacity: 1;
}

.coverage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

.coverage-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.coverage-card h3 {
  font-size: 20px;
  color: #123a5a;
  margin-bottom: 10px;
}

.coverage-card p {
  font-size: 14.8px;
  line-height: 1.6;
  color: #4a4a4a;
}




.compliance-section {

  padding: 70px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.compliance-section h2 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #222;
}

.subtitle {
  font-size: 22px;
  color: #777;
  margin-bottom: 50px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  padding: 10px 20px;
}

.icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #4c6ef5; /* change to your brand color */
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}




.collage-wrapper {
  width: 100%;
  overflow: hidden;
 
}

.collage-track {
  display: flex;
  gap: 20px;
  animation: scrollLeft 40s linear infinite;
}

.collage-track img {
  height: 180px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;

}

/* pause when mouse hovers */
.collage-wrapper:hover .collage-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FOOTER */
.footer {
  background: #071722;
  color: #fff;
  padding-top: 80px;
  margin-top: 120px;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  padding-bottom: 60px;
}

/* LOGO */


.footer-logo img {
    width: 90%; margin-bottom: 10px; border-radius: 20px;
}

/* DESCRIPTION */
.footer-description {
  opacity: 0.7;
  line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff7a1a;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px; font-size: 14px; list-style: none;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff7a1a;
  padding-left: 5px;
}

.footer-col ul li span {
 border: 1px solid #ff7a1a; padding: 5px; border-radius: 50%;
}

/* CONTACT INFO */
.contact-info li {
  opacity: 0.8;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
  opacity: 0.6;
}

.footer-bottom a {
  color:  #ff7a1a ;
}




/* ==========================================
   SAFE RESPONSIVE COLLAPSE (NON-DESTRUCTIVE)
========================================== */

/* ---------- Tablet & Down (992px and below) ---------- */
@media (max-width: 992px) {

  /* Reduce large paddings */
  section {
    padding: 70px 20px !important;
  }

  .hero {
    padding: 0 !important; height: 70vh;
  }

  .hero-text h1 {
    font-size: 42px !important;
  }


  /* NAVIGATION */
.nav {
  position: fixed;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(15, 35, 50, 0.55);
  padding: 18px 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */


.logo {
    position: relative ; display: block; 
}

.logo img {
    position: relative;  width: 60px; border-radius: 15px; display: block;
}


.logo-main {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-sub {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff7a1a;
}

/* NAV CTA */
.nav-cta {
  background: #ff7a1a;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

  /* Collapse multi-column grids to 2 columns */
  .bqs-grid,
  .rob-grid,
  .coverage-grid,
  .features,
  .image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

}


/* ---------- Mobile (768px and below) ---------- */
@media (max-width: 768px) {

  /* Stack everything to single column */
  .overview-container,
  .services-container,
  .investigative-grid,
  .clients-container,
  .approach-container,
  .quote-container,
  .bqs-grid,
  .rob-grid,
  .coverage-grid,
  .image-grid,
  .features,
  .footer-container {
    grid-template-columns: 1fr !important;
  }

  /* Hero adjustments */
  .hero {
    padding: 0px !important; width: 100%; height: 100vh;
  }

  .hero-text h1 {
    font-size: 34px !important;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center;
  }


 /* NAVIGATION */
.nav {
  position: relative;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(15, 35, 50, 0.55);
  padding: 18px 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;

  margin: 0px auto;
  display: block;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */


.logo {
    position: relative ; display: block; 
}

.logo img {
    position: relative;  width: 60px; border-radius: 15px; display: block; 
    margin-bottom: 20px;
}


.logo-main {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-sub {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 50px; text-align: center;
}

.nav-links li {
    list-style: none; font-size: 12px; 
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff7a1a;
}

/* NAV CTA */
.nav-cta {
  background: #ff7a1a;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease; position: absolute; top: 10%; right: 10%;
}

#wrapper {
  position: relative; box-sizing: border-box; padding: 0;
}

.company-overview {
  position: relative; width: 100%; 
}

  .overview-container {
    width: 100%; margin-left: 0; box-sizing: border-box; display: block; 
  }


.overview-left {
position: relative; width: 100%; box-sizing: border-box;
}

.overview-stats {position: relative;
  width: 100%; box-sizing: border-box; margin-bottom: 20px; display: block; 
}

.overview-stats span {
  margin-bottom: 20px;
}

  /* Fix oversized cards */
  .service-card,
  .bqs-card,
  .rob-card,
  .feature-card,
  .client-card {
    width: 100% !important;
  }

}