    /* ================================
   ROOT BRAND COLORS & FONTS
================================ */
:root {
  --navy: #0f2430;
  --navy-dark: #0b1b24;
  --blue: #1e6fb9;
  --green: #2aa05a;
  --grey: #a8b3bd;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.12);
}

/* ================================
   HEADER BASE
================================ */
.site-header {
  width: 100%;
  background: linear-gradient(90deg, var(--navy), var(--navy-dark));
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* ================================
   HEADER CONTAINER
================================ */
.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================
   LOGO SECTION
================================ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--white);
}

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.header-logo span {
  font-size: 16px;
  line-height: 1.2;
}

/* ================================
   NAVIGATION
================================ */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 0;
}

.header-nav li {
  position: relative;
}

.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline effect */
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a:hover {
  color: var(--green);
}

/* ================================
   ACTION AREA (CTA)
================================ */
.header-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tagline {
  font-size: 13px;
  color: var(--grey);
  white-space: nowrap;
}

.btn-quote {
  background: var(--green);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-quote:hover {
  background: #238a4b;
  transform: translateY(-1px);
}

/* ================================
   MOBILE MENU BUTTON (OPTIONAL)
================================ */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--white);
  cursor: pointer;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1024px) {
  .header-nav ul {
    gap: 18px;
  }

  .tagline {
    display: none;
  }
}

@media (max-width: 860px) {
  .header-container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-nav {
    width: 100%;
    order: 3;
    justify-content: center;
  }

  .header-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .header-action {
    order: 2;
  }
}

@media (max-width: 560px) {
  .header-nav ul {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-action {
    gap: 8px;
  }

  .btn-quote {
    padding: 8px 12px;
    font-size: 13px;
  }

  .header-logo span {
    font-size: 14px;
  }
}

 .site-header {
  background: #0f2430;
  border-bottom: 3px solid #2aa05a;
}

.navbar-dark .nav-link {
  color: #fff;
  font-weight: 600;
}

.mega-menu {
  background: #ffffff;
  border-top: 4px solid #2aa05a;
}

.mega-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f2430;
}
/* ===============================
   HEADER ACTION / TAGLINE
================================ */

.header-action {
  display: flex;
  align-items: center;
  margin-right: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

/* TAGLINE TEXT */
.header-action .tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #d4f5e2; /* soft military green */
  white-space: nowrap;
}

/* Optional separator dot color tuning */
.header-action .tagline::selection {
  background: #2aa05a;
  color: #fff;
}

/* Hover effect */
.header-action:hover {
  background: rgba(42, 160, 90, 0.15);
  border-color: rgba(42, 160, 90, 0.6);
  transition: all 0.3s ease;
}

/* ===============================
   RESPONSIVE BEHAVIOR
================================ */

/* Hide on small screens */
@media (max-width: 991px) {
  .header-action {
    display: none;
  }
}

/* NAV LINK ANIMATION */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 600;
  color: #ffffff !important;
  padding-bottom: 6px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #2aa05a; /* military green */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0f2430, #0b1b24);
  transition: all 0.3s ease;
}

.site-header.shrink {
  padding: 4px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.site-header.shrink img {
  height: 36px !important;
}
/* MEGA MENU */
.mega-menu {
  background: #0f2430;
  border-top: 3px solid #2aa05a;
}

.mega-menu .mega-title {
  color: #2aa05a;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.mega-menu .dropdown-item {
  color: #dce7f1;
  padding: 6px 0;
  font-size: 14px;
}

.mega-menu .dropdown-item:hover {
  background: transparent;
  color: #2aa05a;
}

.mega-icon {
  font-size: 28px;
  color: #2aa05a;
  margin-bottom: 8px;
}

.mega-image {
  width: 100%;
  border-radius: 6px;
  margin-top: 10px;
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
  background: linear-gradient(
    rgba(11, 27, 36, 0.92),
    rgba(11, 27, 36, 0.92)
  ),
  url("../../assets/images/hero-bg.webp") center/cover no-repeat;
  padding: 100px 0;
  color: #ffffff;
}

.hero-badge {
  display: inline-block;
  background: rgba(42, 160, 90, 0.15);
  color: #2aa05a;
  border: 1px solid rgba(42, 160, 90, 0.6);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-radius: 999px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text {
  margin-top: 16px;
  color: #d6e3ec;
  font-size: 16px;
  max-width: 520px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* RIGHT MEDIA */
.hero-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.hero-media img {
  width: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.overlay-box {
  background: rgba(15, 36, 48, 0.9);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.overlay-box i {
  color: #2aa05a;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }
}
 


.industry-box {
  background: #f8f9fa;
  padding: 22px;
  border-radius: 10px;
  font-weight: 600;
  border-left: 4px solid #2aa05a;
}
.why-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.why-box i {
  font-size: 36px;
  color: #2aa05a;
  margin-bottom: 14px;
}


.product-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

/* ---------------- SECTION ---------------- */
.product-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

/* Section heading */
.product-section h2 {
  color: var(--blue);
}

.product-section p {
  color: var(--grey);
  font-style: italic;
}

/* ---------------- CATEGORY CARDS ---------------- */
.category-card {
  display: block;
  text-decoration: none;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 8px 20px var(--shadow);
  backdrop-filter: blur(4px); /* subtle frosted glass effect */
}

/* Icon styling */
.category-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Card title & description */
.category-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--grey);
  font-size: 0.9rem;
}

/* Hover effect */
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
}

/* ---------------- UNIQUE GRADIENTS ---------------- */

/* CCTV */
.category-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(30,111,185,0.85), rgba(15,36,48,0.9));
}

.category-card:nth-child(1) i {
  color: #1e6fb9; /* brand blue */
}

.category-card:nth-child(1):hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(30,111,185,0.95));
  i {
    color: #2aa05a;
  }
}

/* Military */
.category-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(42,160,90,0.85), rgba(15,36,48,0.9));
}

.category-card:nth-child(2) i {
  color: #2aa05a; /* brand green */
}

.category-card:nth-child(2):hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(42,160,90,0.95));
  i {
    color: #1e6fb9;
  }
}

/* Access Control */
.category-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(255,215,0,0.85), rgba(15,36,48,0.9)); /* gold accent */
}

.category-card:nth-child(3) i {
  color: #ffd700; /* gold */
}

.category-card:nth-child(3):hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(255,215,0,0.95));
  i {
    color: #2aa05a;
  }
}

/* Alarm Systems */
.category-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(185,30,30,0.85), rgba(15,36,48,0.9)); /* deep red accent */
}

.category-card:nth-child(4) i {
  color: #b91e1e; /* red */
}

.category-card:nth-child(4):hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(185,30,30,0.95));
  i {
    color: #1e6fb9;
  }
}

/* Optional: fade-in animation for all cards */
.category-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CCTV */
.row .col-md-6.col-lg-3:nth-child(1) .category-card {
  background: linear-gradient(145deg, rgba(30,111,185,0.85), rgba(15,36,48,0.9));
}

.row .col-md-6.col-lg-3:nth-child(1) .category-card i {
  color: #1e6fb9;
}

.row .col-md-6.col-lg-3:nth-child(1) .category-card:hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(30,111,185,0.95));
  i {
    color: #2aa05a;
  }
}

/* Military */
.row .col-md-6.col-lg-3:nth-child(2) .category-card {
  background: linear-gradient(145deg, rgba(42,160,90,0.85), rgba(15,36,48,0.9));
}

.row .col-md-6.col-lg-3:nth-child(2) .category-card i {
  color: #2aa05a;
}

.row .col-md-6.col-lg-3:nth-child(2) .category-card:hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(42,160,90,0.95));
}

/* Access Control */
.row .col-md-6.col-lg-3:nth-child(3) .category-card {
  background: linear-gradient(145deg, rgba(255,215,0,0.85), rgba(15,36,48,0.9));
}

.row .col-md-6.col-lg-3:nth-child(3) .category-card i {
  color: #ffd700;
}

.row .col-md-6.col-lg-3:nth-child(3) .category-card:hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(255,215,0,0.95));
}

/* Alarm Systems */
.row .col-md-6.col-lg-3:nth-child(4) .category-card {
  background: linear-gradient(145deg, rgba(185,30,30,0.85), rgba(15,36,48,0.9));
}

.row .col-md-6.col-lg-3:nth-child(4) .category-card i {
  color: #b91e1e;
}

.row .col-md-6.col-lg-3:nth-child(4) .category-card:hover {
  background: linear-gradient(145deg, rgba(15,36,48,0.9), rgba(185,30,30,0.95));
}

/* ---------------- PREMIUM DIAGONAL SPLIT ABOUT US ---------------- */
.about-section {
  position: relative;
  padding: 5rem 0;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

/* Container is above overlays */
.about-section .container {
  position: relative;
  z-index: 2;
}

/* Diagonal split overlay using clip-path */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11,27,36,0.9) 50%, transparent 50%);
  clip-path: polygon(0 0, 55% 0, 45% 100%, 0% 100%);
  z-index: 1;
}

/* Text side styling */
.about-section h2 {
  color: var(--blue);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.about-section h5 {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.about-section p {
  color: var(--white);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Mission & Vision small text */
.about-section p.small {
  color: var(--grey);
}

/* Image side styling */
.about-section .col-lg-6:last-child {
  position: relative;
  z-index: 2;
}

.about-section img {
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  position: relative;
}

/* Glow effect for image */
.about-section .col-lg-6:last-child::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(30,111,185,0.3), transparent 70%);
  filter: blur(60px);
  z-index: 1;
  border-radius: 1rem;
  pointer-events: none;
}

/* Image hover effect */
.about-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

/* Fade-in animation for text and image */
.about-section .row > div {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.about-section .row > div:nth-child(1) {
  animation-delay: 0.2s;
}

.about-section .row > div:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-section::before {
    clip-path: none;
    background: rgba(11,27,36,0.9);
  }

  .about-section .col-lg-6:last-child::before {
    display: none;
  }
}

/* ---------------- DIAGONAL SPLIT PARTNERSHIPS ---------------- */
.partnership-section {
  position: relative;
  padding: 5rem 0;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

/* Container above overlays */
.partnership-section .container {
  position: relative;
  z-index: 2;
}

/* Diagonal split overlay on text side */
.partnership-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11,27,36,0.95) 50%, transparent 50%);
  clip-path: polygon(0 0, 60% 0, 50% 100%, 0 100%);
  z-index: 1;
}

/* Text side styling */
.partnership-section h2 {
  color: var(--blue);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.partnership-section strong {
  color: var(--green);
  position: relative;
  z-index: 2;
}

.partnership-section p {
  color: var(--grey);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.partnership-section p.text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.partnership-section p.small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Image side styling */
.partnership-section .col-lg-4 {
  position: relative;
  z-index: 2;
}

.partnership-section img {
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  position: relative;
}

/* Glow/angled gradient behind image */
.partnership-section .col-lg-4::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  background: linear-gradient(145deg, rgba(30,111,185,0.3), transparent 70%);
  filter: blur(60px);
  z-index: 1;
  border-radius: 1rem;
  pointer-events: none;
}

/* Image hover effect */
.partnership-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

/* Fade-in animation for text and image */
.partnership-section .row > div {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.partnership-section .row > div:nth-child(1) {
  animation-delay: 0.2s;
}

.partnership-section .row > div:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .partnership-section::before {
    clip-path: none;
    background: rgba(11,27,36,0.95);
  }

  .partnership-section .col-lg-4::before {
    display: none;
  }
}

/* ---------------- INDUSTRIES WE SERVE PREMIUM ---------------- */
.industry-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 5rem 0;
}

/* Tiles */
.industry-box {
  position: relative;
  background: linear-gradient(145deg, rgba(30,111,185,0.85), rgba(15,36,48,0.9));
  color: var(--white);
  padding: 2rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: default;
  overflow: hidden;
}

/* Icons */
.industry-box i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effect */
.industry-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.3);
  background: linear-gradient(145deg, rgba(42,160,90,0.85), rgba(15,36,48,0.95));
}

/* Icon glow on hover */
.industry-box:hover i {
  transform: scale(1.15);
  color: #ffd700; /* luxury gold glow */
  text-shadow: 0 0 8px #ffd700, 0 0 16px #ffd700;
}

/* Optional fade-in animation */
.industry-box {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.industry-box:nth-child(1) { animation-delay: 0.1s; }
.industry-box:nth-child(2) { animation-delay: 0.2s; }
.industry-box:nth-child(3) { animation-delay: 0.3s; }
.industry-box:nth-child(4) { animation-delay: 0.4s; }
.industry-box:nth-child(5) { animation-delay: 0.5s; }
.industry-box:nth-child(6) { animation-delay: 0.6s; }
.industry-box:nth-child(7) { animation-delay: 0.7s; }
.industry-box:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Unique gradients for each industry box */
.industry-box:nth-child(1) { background: linear-gradient(145deg, #1e6fb9, #0b1b24); }
.industry-box:nth-child(2) { background: linear-gradient(145deg, #2aa05a, #0b1b24); }
.industry-box:nth-child(3) { background: linear-gradient(145deg, #ffd700, #0b1b24); }
.industry-box:nth-child(4) { background: linear-gradient(145deg, #b91e1e, #0b1b24); }
.industry-box:nth-child(5) { background: linear-gradient(145deg, #1e6fb9, #0b1b24); }
.industry-box:nth-child(6) { background: linear-gradient(145deg, #2aa05a, #0b1b24); }
.industry-box:nth-child(7) { background: linear-gradient(145deg, #ffd700, #0b1b24); }
.industry-box:nth-child(8) { background: linear-gradient(145deg, #b91e1e, #0b1b24); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .industry-box {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
  }
}


/* ---------------- WHY CHOOSE US ---------------- */
.why-section {
  background: linear-gradient(135deg, #f5f7fa, #eef1f5);
}

.why-box {
  position: relative;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.95),
    rgba(245,247,250,0.95)
  );
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Subtle diagonal polish */
.why-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,111,185,0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0f2430, #16384d);
  box-shadow: 0 0 0 6px rgba(30,111,185,0.12);
  transition: all 0.4s ease;
}

.icon-wrap i {
  font-size: 2rem;
  color: #ffffff;
}

.why-box h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0f2430;
}

.why-box p {
  font-size: 0.95rem;
  color: #5f6c76;
  line-height: 1.6;
}

/* Hover effects */
.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.why-box:hover::before {
  opacity: 1;
}

.why-box:hover .icon-wrap {
  background: linear-gradient(145deg, #1e6fb9, #2aa05a);
  box-shadow:
    0 0 0 8px rgba(42,160,90,0.15),
    0 0 25px rgba(42,160,90,0.35);
}
/* ---------------- CTA SECTION ---------------- */
.cta-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--navy-dark),
    var(--navy)
  );
  color: var(--white);
  overflow: hidden;
}

/* Diagonal luxury overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(30,111,185,0.35),
    transparent 55%
  );
  pointer-events: none;
}

/* Typography */
.cta-section h2 {
  font-size: 2rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 700px;
}

/* Buttons */
.btn-cta-primary {
  background: linear-gradient(145deg, var(--green), #1f7f48);
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  box-shadow: 0 10px 25px rgba(42,160,90,0.4);
  transition: all 0.35s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(42,160,90,0.55);
  color: #fff;
}

/* Outline button */
.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.35s ease;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

/* Mobile alignment */
@media (max-width: 768px) {
  .cta-section {
    text-align: center;
  }

  .cta-section .btn {
    margin-top: 1rem;
  }
}

.capabilities-section {
  background: #f7f9fb;
}

.cap-box {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.cap-box i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.cap-box h6 {
  font-weight: 600;
  color: var(--navy);
}

.cap-box p {
  font-size: 0.9rem;
  color: #6c757d;
}

.cap-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.certifications-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
}

.cert-box {
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 600;
  transition: all 0.3s ease;
}

.cert-box:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.contact-section {
  background: #f8fafc;
}

.rfq-form .form-control {
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.footer-section {
  background: var(--navy-dark);
  color: #cbd5e1;
}

.footer-section h6 {
  color: #ffffff;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.footer-section hr {
  border-color: rgba(255,255,255,0.15);
}


 
.mega-footer {
  border-color: rgba(255,255,255,0.1);
}

.mega-footer .btn {
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mega-footer .btn:hover {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  border-color: transparent;
  transform: translateY(-2px);
}

 
 
 
 
 .mega-menu {
  background: #0b1b24;
  border-top: 3px solid var(--blue);
}

.mega-icon {
  font-size: 1.7rem;
  color: var(--blue);
}

.mega-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: .5rem;
}

.dropdown-item {
  color: rgba(255,255,255,.85);
  padding-left: 0;
}

/* Desktop-only separators */
@media (min-width: 992px) {
  .mega-menu .col-lg-3 {
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .mega-menu .col-lg-3:last-child {
    border-right: none;
  }
}

 /* Full-height, scrollable mega menu on mobile */
@media (max-width: 991.98px) {
  .mega-menu {
    position: fixed; /* cover the screen */
    top: 56px; /* adjust based on your navbar height */
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 56px);
    overflow-y: auto; /* scrollable */
    overflow-x: hidden;
    z-index: 1050; /* above content */
    padding: 1rem 0;
    background-color: #0b1b24;
  }

  /* Make columns stack nicely */
  .mega-menu .row {
    flex-wrap: wrap;
    margin: 0;
  }

  .mega-menu .col-6 {
    padding: 1rem;
  }

  /* Optional: hide desktop-only borders */
  .mega-menu .col-lg-3 {
    border-right: none;
  }
}

.services-mega {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mega-service-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.mega-service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(30,111,185,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}

.mega-icon {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.mega-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.services-mega .dropdown-item {
  color: rgba(255,255,255,0.75);
  padding-left: 0;
  background: transparent;
  font-size: 0.9rem;
}

.services-mega .dropdown-item:hover {
  color: #fff;
  background: transparent;
  padding-left: 6px;
}

@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(30,111,185,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(30,111,185,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,111,185,0); }
}

.mega-service-card:hover .mega-icon {
  animation: softPulse 1.6s ease-out;
  border-radius: 50%;
}