/*--------------------------------------------------------------
# Design System
--------------------------------------------------------------*/
:root {
  --primary-color: #f16e22;
  --secondary-color: #0d1c32;
  --accent-color: #39475f;
  --heading-color: #2b2b2b;
  --text-color: #444444;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --font-main: "Poppins", sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  color: var(--heading-color);
  font-weight: 600;
}

.section {
  padding: 80px 0;
}

.about .section {
  padding: 80px 0;
  background-color: #0d1c32;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
}

.light-background {
  background-color: var(--light-bg);
}

.dark-background {
  background-color: var(--secondary-color);
  color: var(--white);
}

.text-custom-orange {
  color: #FE6B00 !important;
}

.text-custom-blue {
  color: #0D1C32 !important;
}

.bg-custom-orange {
  background-color: #FE6B00 !important;
}

.bg-custom-blue {
  background-color: #0D1C32 !important;
}

.border-custom-orange {
  border-color: #FE6B00 !important;
}

.border-custom-blue {
  border-color: #FE6B00 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: rgb(255, 255, 255);
  content: var(--bs-breadcrumb-divider, "/");
}

.text-muted {
  font-size:15px;
  line-height:1.9;
}

/*--------------------------------------------------------------
# Header & Navbar
--------------------------------------------------------------*/
.header {
  background: var(--white);
  transition: var(--transition);
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header .logo img {
  max-height: 50px;
}

.navmenu {
  padding: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu .mega-menu-toggle {
  position: static;
}

.navmenu a,
.navmenu a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
}

.navmenu .active {
  color: var(--primary-color) !important;
  border-bottom: 2px solid var(--primary-color);
}

.navmenu a:hover {
  color: var(--primary-color);
}

/* Mega Menu Styles */
.navmenu .mega-menu {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(13, 28, 50, 0.1);
  transition: none;
  padding: 20px 0;
  border-top: 3px solid var(--primary-color);
}

.navmenu .dropdown:hover>.mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-content {
  padding: 30px;
}

.mega-menu-col {
  padding: 15px 25px;
  /* border-right: 1px solid #eee; */
}

.mega-menu-col:last-child {
  border-right: none;
}

.mega-menu-col .col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.mega-menu-col .col-header i {
  font-size: 24px;
  color: var(--primary-color);
}

.mega-menu-col .col-header h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-menu-col ul {
  display: block;
}

.mega-menu-col ul li {
  padding: 0;
  display: block;
}

.mega-menu-col ul li a,
.mega-menu-col ul li a:focus,
.mega-menu-col ul li a:active {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #666;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  white-space: normal;
}

.mega-menu-col ul li a:active,
.mega-menu-col ul li a.active {
  transition: none !important;
  border-bottom: none !important;
  color: var(--primary-color) !important;
}

.mega-menu-col ul li a i {
  font-size: 14px;
  color: var(--primary-color);
  transition: 0.3s;
  margin-top: 2px;
}

.mega-menu-col ul li a:hover {
  color: var(--primary-color);
}

/* .mega-menu-col ul li a:hover i {
  transform: translateX(3px);
} */

/* Mobile Mega Menu */
@media (max-width: 1199px) {
  .navmenu .dropdown>a .toggle-dropdown {
    transition: 0.3s;
  }

  .navmenu .dropdown>a.active .toggle-dropdown {
    transform: rotate(180deg);
  }

  .navmenu .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    padding: 0;
    border-top: none;
    background: transparent;
  }

  .navmenu .mega-menu.show {
    display: block;
  }

  .mega-menu-content {
    padding: 10px 20px;
  }

  .mega-menu-col {
    padding: 15px 0;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .mega-menu-col:last-child {
    border-bottom: none;
  }
}

/* Standard Dropdown Styles */
.navmenu .dropdown > ul {
  margin: 0;
  padding: 10px 0;
  background: var(--white);
  display: block;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 100%;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(13, 28, 50, 0.1);
  transition: none;
  border-top: 3px solid var(--primary-color);
  min-width: 280px;
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
  color: var(--secondary-color);
  letter-spacing: 0;
  white-space: normal;
}

.navmenu .dropdown > ul a:hover {
  color: var(--primary-color);
  padding-left: 25px;
}

/* Mobile Dropdown */
@media (max-width: 1199px) {
  .navmenu .dropdown > ul {
    position: static;
    display: none;
    padding: 5px 0;
    margin: 5px 20px;
    background: #f1f7ff;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: none;
    border-radius: 4px;
    z-index: 1;
  }

  .navmenu .dropdown > ul.show {
    display: block;
  }
}

.btn-get-started {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  margin-left: 30px;
}

.btn-get-started:hover {
  background: #d95d1a;
  color: var(--white);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 85vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: url('../img/hero-bg.png') center center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 28, 50, 0.85), rgba(57, 71, 95, 0.4));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .subtitle {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  color: var(--white);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  max-width: 800px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 650px;
}

.hero .btn-group {
  display: flex;
  gap: 20px;
}

.btn-know-more {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-know-more:hover {
  background: #d95d1a;
  color: var(--white);
}

.btn-verify {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.btn-verify:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 60px 0;
  background: var(--white);
}

.stats .stats-item {
  padding: 20px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1;
}

.stats .stats-item span::after {
  content: "+";
  color: #000000;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 10px 0 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about {
  background-color: #0D1C32;
  /* Dark navy background */
  color: var(--white);
  padding: 100px 0;
}

.about .section-subtitle {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.about .section-title {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about .about-image-wrapper {
  position: relative;
  border: 12px solid #ffffff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.about .about-image-wrapper img {
  filter: grayscale(100%);
  width: 100%;
  display: block;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--primary-color) 50%, rgba(241, 110, 34, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .experience-badge {
  position: absolute;
  bottom: -40px;
  right: -50px;
  background: var(--primary-color);
  color: var(--white);
  padding: 40px;
  height: 150px;
  width: 235px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.about .experience-badge h3 {
  font-size: 54px;
  margin: 0;
  line-height: 1;
  color: var(--white);
  font-weight: 800;
}

.about .experience-badge p {
  margin: 10px 0 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.about .stat-box {
  padding: 10px 0;
}

.about .stat-box span {
  font-size: 38px;
  font-weight: 500;
  display: block;
  color: var(--white);
  line-height: 1.2;
}

.about .stat-box p {
  margin: 5px 0 0 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .about .about-image-wrapper {
    margin-bottom: 80px;
  }

  .about .experience-badge {
    height: 160px;
    width: 160px;
    padding: 20px;
    right: 20px;
  }

  .about .experience-badge h3 {
    font-size: 48px;
  }
}

/*--------------------------------------------------------------
# Who We Are Section
--------------------------------------------------------------*/
.commitment-badge-card {
  transform: translate(-10%, 15%);
  max-width: 250px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.service-card {
  background: #f1f4f9;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  border: 1px solid #1E293B;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card .img {
  height: 250px;
  overflow: hidden;
}

.service-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .content {
  padding: 40px 30px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0d1c32;
  margin-bottom: 25px;
  text-transform: uppercase;
  border-bottom: none;
  padding-bottom: 0;
}

.service-card ul {
  margin-bottom: 30px;
}

.service-card ul li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.service-card ul i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 18px;
}

.service-card .btn-learn-more {
  display: block;
  background: #0d1c32;
  color: var(--white);
  padding: 15px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.service-card .btn-learn-more:hover {
  background: #1a2a44;
  color: var(--white);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  background-color: #0d1c32;
  padding: 100px 0;
  color: var(--white);
}

.why-us .section-subtitle {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.why-us .section-title {
  color: var(--white);
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}


.why-us p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.why-us-img {
  position: relative;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.why-us-img img {
  filter: grayscale(100%);
  width: 100%;
  display: block;
}

/*--------------------------------------------------------------
# Training Section
--------------------------------------------------------------*/
.training {
  padding: 100px 0;
  background: #fff;
}

.training .left-column {
  background-color: #f1f7ff;
}

.training .content-wrapper {
  padding: 60px;
}

.training .training-title {
  font-size: 45px;
  font-weight: 700;
  color: #0d1c32;
  margin-bottom: 30px;
  line-height: 1.1;
  font-family: 'Noto Serif', serif;
}

.training .highlight {
  color: var(--primary-color);
}

.training .description {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.training .badge-list {
  margin-bottom: 40px;
}

.training .badge-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.training .badge-number {
  background: var(--primary-color);
  color: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-right: 15px;
  border-radius: 4px;
}

.training .badge-text {
  font-weight: 700;
  color: #0d1c32;
  font-size: 15px;
}

.training .browse-link {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  font-size: 14px;
}

.training .training-cards {
  padding: 60px 40px;
}

.training .training-card {
  background: #f8fbff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.training .training-card:hover {
  transform: translateX(10px);
}

.training .card-content {
  padding: 30px;
  flex-grow: 1;
}

.training .training-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d1c32;
  margin-bottom: 10px;
}

.training .training-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.training .card-img {
  width: 140px;
  height: 120px;
  overflow: hidden;
  padding: 10px;
}

.training .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-get-started-training {
  background: var(--primary-color);
  color: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  text-transform: none;
}

.btn-get-started-training:hover {
  background: #d95d1a;
  color: #fff;
}

@media (max-width: 991px) {

  .training .content-wrapper,
  .training .training-cards {
    padding: 40px 20px;
  }

  .training .training-title {
    font-size: 36px;
  }

  .training .training-card {
    flex-direction: column;
    text-align: center;
  }

  .training .card-img {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #fff;
}

.cta-banner {
  background: linear-gradient(rgba(13, 28, 50, 0.85), rgba(13, 28, 50, 0.85)), url('../img/cta-bg.jpg') center center;
  background-size: cover;
  padding: 100px 40px;
  border-radius: 15px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta h3 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.1;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 45px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 18px 50px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: var(--transition);
  text-transform: none;
}

.cta-btn:hover {
  background: #d95d1a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(241, 110, 34, 0.3);
}

@media (max-width: 991px) {
  .cta h3 {
    font-size: 36px;
  }

  .cta-banner {
    padding: 60px 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 100px 0;
  background-color: #f1f7ff;
}

.contact .contact-title {
  color: #0d1c32;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 15px;
}

.contact .contact-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 50px;
}

.contact .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact .contact-list i {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
}

.contact .contact-list span {
  font-weight: 600;
  color: #0d1c32;
  font-size: 16px;
}

.contact-card {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 4px;
}

.contact .form-group {
  margin-bottom: 30px;
}

.contact label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.contact .form-control {
  background-color: #f1f7ff;
  border: 1px solid #0d1c32;
  border-radius: 0;
  padding: 12px 15px;
  font-size: 15px;
  color: #333;
}

.contact .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.btn-submit-action {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 18px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-submit-action:hover {
  background-color: #d95d1a;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  background-color: #f8fbff;
  padding: 80px 0;
}

.clients-title {
  font-size: 32px;
  font-weight: 800;
  color: #0d1c32;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
}

.client-logo {
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;

  border: 1px solid #e2e8f0;
  height: 180px;
  transition: all 0.3s ease;
}

.client-logo:hover {
  background-color: #f1f7ff;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .client-logo {
    padding: 30px;
    height: 160px;
  }
}

@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo {
    height: 140px;
  }
}

@media (max-width: 575px) {
  .client-logo {
    padding: 20px;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Certificate Check Banner
--------------------------------------------------------------*/
.cert-check {
  padding: 80px 0;
  background-color: #f8fbff;
}

.cert-banner {
  background: linear-gradient(rgba(13, 28, 50, 0.96), rgba(13, 28, 50, 0.96)), url('../img/cta-bg.png') center center;
  background-size: cover;
  padding: 80px 60px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cert-check h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: #fff !important;
}

.cert-check p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-transform: lowercase;
}

.btn-check-now {
  background: #fff;
  color: #0d1c32;
  padding: 20px 60px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  border: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-check-now:hover {
  background: #f1f7ff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .cert-banner {
    padding: 60px 40px;
  }

  .cert-check h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .cert-banner {
    text-align: center;
  }

  .cert-check .container {
    justify-content: center !important;
  }

  .cert-banner {
    justify-content: center !important;
  }

  .btn-check-now {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 1200px) {
  .navmenu ul {
    display: none;
  }

  .mobile-nav-toggle {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary-color);
  }

  .btn-get-started {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn-group {
    flex-direction: column;
  }

  .btn-know-more,
  .btn-verify {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 26px;
  }

  .cta h3 {
    font-size: 32px;
  }

  .experience-badge {
    padding: 15px;
  }

  .experience-badge h3 {
    font-size: 32px;
  }
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .navmenu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9998;
  display: block !important;
  padding: 80px 20px 40px 20px;
  overflow-y: auto;
}

.mobile-nav-active .navmenu ul {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mobile-nav-active .navmenu>ul>li>a {
  font-size: 24px;
  padding: 15px;
  color: var(--secondary-color);
  justify-content: center;
}

.mobile-nav-active .navmenu .mega-menu {
  background: #f1f7ff;
  border-radius: 8px;
  margin: 10px 0;
  padding: 15px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-active .navmenu .mega-menu .col-header {
  justify-content: flex-start;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.mobile-nav-active .navmenu .mega-menu a {
  font-size: 14px;
  padding: 10px 15px;
  color: #555;
  text-align: left;
  justify-content: flex-start;
}

.mobile-nav-active .navmenu .mega-menu a i {
  margin-right: 8px;
}

.mobile-nav-active .navmenu .btn-get-started-mobile {
  background: var(--primary-color);
  color: var(--white) !important;
  border-radius: 4px;
  margin-top: 20px;
  padding: 10px 30px;
  font-weight: 700;
  border: none !important;
  display: inline-block;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #d95d1a;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Chatbot UI
--------------------------------------------------------------*/
.chatbot-wrapper {
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 99999;
}

.chatbot-trigger {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.chatbot-trigger:hover {
  background-color: #d95d1a;
  transform: scale(1.1);
  color: #fff;
}

.chatbot-window {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background-color: #0d1c32;
  padding: 12px 15px;
  color: #fff;
}

.assistant-avatar {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.chatbot-body {
  flex-grow: 1;
  padding: 15px;
  background-color: #f1f7ff;
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 12px;
}

.chat-message p {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 0;
  max-width: 85%;
}

.chat-message.bot p {
  background-color: #fff;
  color: #333;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chatbot-footer {
  padding: 12px;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.chatbot-footer .form-control {
  font-size: 13px;
  border: 1px solid #eee;
  padding: 8px 12px;
}

@media (max-width: 575px) {
  .chatbot-window {
    width: 280px;
    height: 380px;
    right: -10px;
  }
}

/*--------------------------------------------------------------
# Utility Classes for About Page components
--------------------------------------------------------------*/
.mw-250 {
  max-width: 250px;
}

.mw-600 {
  max-width: 600px;
}

.mw-700 {
  max-width: 700px;
}

.mw-800 {
  max-width: 800px;
}

.text-theme-secondary {
  color: var(--secondary-color) !important;
}

.about-hero-bg {
  height: 366px !important;
  min-height: 366px !important;
  max-height: 366px !important;
  padding-top: 150px;
  background: linear-gradient(rgba(13, 28, 50, 0.8), rgba(13, 28, 50, 0.8)), url('../img/about-hero-bg.png') center center / cover;
}

.img-grayscale-80 {
  filter: grayscale(80%);
}

.commitment-badge {
  transform: translate(-10%, 15%);
  max-width: 250px;
}

.principle-card-light {
  background: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.principle-card-dark {
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.03);
  border-radius: 4px;
}

.industry-service-img {
  filter: grayscale(100%);
  transition: 0.3s;
}

.industry-service-img:hover {
  filter: grayscale(0%);
}

.quality-section-bg {
  background: url('../img/hero-bg.png') center center / cover;
}

.quality-overlay {
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  opacity: 0.95;
}

.py-100 {
  padding: 100px 0 !important;
}

.quality-item {
  transition: 0.3s;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1) !important;
}

.quality-item:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.line-height-18 {
  line-height: 1.8 !important;
}

.cta-banner-bg {
  background: linear-gradient(rgba(13, 28, 50, 0.9), rgba(13, 28, 50, 0.9)), url('../img/cta-bg.png') center center / cover;
  padding: 80px 40px;
  border-radius: 8px;
}

.btn-cta-primary {
  background: var(--primary-color) !important;
  border: none !important;
  letter-spacing: 1px;
}

.btn-cta-outline {
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Accreditation Page Styles
--------------------------------------------------------------*/
.accreditation-hero-bg {
  height: 366px !important;
  min-height: 366px !important;
  max-height: 366px !important;
  padding-top: 150px;
  background: linear-gradient(rgba(13, 28, 50, 0.8), rgba(13, 28, 50, 0.8)), url('../img/hero-bg.png') center center / cover;
}

.accreditation-card {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.accreditation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(241, 110, 34, 0.3) !important;
  border-color: var(--primary-color) !important;
}

.accreditation-card .btn-view-cert {
  transition: 0.3s;
}

.accreditation-card:hover .btn-view-cert {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

/* Interactive Certificate Viewer */
.cert-viewer-container {
  max-width: 500px;
}

.cert-nav .btn-nav {
  background: var(--light-bg);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: 0.3s;
}

.cert-nav .btn-nav:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.cert-perspective {
  perspective: 2000px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1.414;
  /* Standard A4 aspect ratio approximation */
  position: relative;
}

.cert-flipper {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
  transform-origin: center;
}

.cert-face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.cert-back {
  transform: rotateY(180deg);
}

.cert-front img,
.cert-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hover-color {
  cursor: pointer;
}

.z-index-2 {
  z-index: 2;
}

.detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.trust-box:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.btn-view-cert {
  border-color: #FE6B00 !important;
  color: #FE6B00 !important;
  transition: all 0.3s ease;
}

.btn-view-cert:hover,
.btn-view-cert:focus {
  background-color: #FE6B00 !important;
  border-color: #FE6B00 !important;
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #0d1c32;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  font-size: 14px;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-size: 14px;
}

.footer h5 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #FE6B00;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer ul li a::before {
  content: '›';
  color: #FE6B00;
  font-size: 16px;
  line-height: 1;
}

.footer ul li a:hover {
  color: #FE6B00;
  padding-left: 4px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: #FE6B00;
  border-color: #FE6B00;
  color: #ffffff;
}

.btn-footer-office {
  display: inline-block;
  background-color: #FE6B00;
  color: #ffffff;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-footer-office:hover {
  background-color: #e05e00;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.footer-bottom span {
  color: var(--primary-color);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-hero-bg {
  height: 366px !important;
  min-height: 366px !important;
  max-height: 366px !important;
  padding-top: 150px;
  background: linear-gradient(to right, rgba(13, 28, 50, 0.88), rgba(57, 71, 95, 0.5)), url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=1600&auto=format") center center/cover;
}

.svc-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure all cards in row match height */
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 40px rgba(254, 107, 0, 0.18);
  border-color: #FE6B00;
}

.svc-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  filter: grayscale(30%);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.svc-card-body {
  padding: 28px 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.svc-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0d1c32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.svc-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}

.svc-card .btn-svc-learn {
  display: inline-block;
  border: 2px solid #FE6B00;
  color: #FE6B00;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.svc-card .btn-svc-learn:hover {
  background: #FE6B00;
  color: #fff;
}

.detail-svc-section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.detail-svc-section:last-child {
  border-bottom: none;
}

.detail-svc-img {
  overflow: hidden;
  position: relative;
}

.detail-svc-img img {
  width: 100%;
  height: auto;
  min-height: 400px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(20%);
  transition: 0.4s;
}

@media (max-width: 991px) {
  .detail-svc-img img {
    min-height: 300px;
    aspect-ratio: 16 / 9;
  }
}

.detail-svc-img:hover img {
  filter: grayscale(0%);
}

.detail-svc-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: #FE6B00;
}

.detail-svc-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0d1c32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.detail-svc-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.detail-svc-content .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.detail-svc-content .bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.detail-svc-content .bullet-list li:last-child {
  border-bottom: none;
}

.detail-svc-content .bullet-list li i {
  color: #FE6B00;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.process-section {
  background: #0d1c32;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(254, 107, 0, 0.12);
  border: 2px solid rgba(254, 107, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.3s;
  font-size: 30px;
  color: #FE6B00;
}

.process-step:hover .process-step-icon {
  background: #FE6B00;
  color: #fff;
  border-color: #FE6B00;
  transform: scale(1.1);
}

.process-step h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.process-step .step-num {
  font-size: 11px;
  font-weight: 700;
  color: #FE6B00;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.process-connector {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(254, 107, 0, 0.5), rgba(254, 107, 0, 0.15));
  margin-top: -48px;
  position: relative;
  z-index: 0;
}

.benefit-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #FE6B00;
  box-shadow: 0 8px 30px rgba(254, 107, 0, 0.12);
}

.benefit-card .benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(254, 107, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #FE6B00;
  transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: #FE6B00;
  color: #fff;
}

.benefit-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1c32;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.benefit-card p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

.industry-card {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  transition: all 0.45s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 28, 50, 0.88) 0%, rgba(13, 28, 50, 0.2) 60%);
  z-index: 1;
  transition: 0.4s;
}

.industry-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.industry-card:hover::before {
  background: linear-gradient(to top, rgba(254, 107, 0, 0.75) 0%, rgba(13, 28, 50, 0.2) 70%);
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 2;
}

.industry-card-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.industry-card-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 4px 0 0;
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: #0d1c32;
  background: #fff;
  padding: 20px 24px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #FE6B00;
  background: #fff9f5;
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FE6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-item {
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  border-radius: 4px !important;
  overflow: hidden;
}

.faq-section .accordion-body {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  background: #fff9f5;
  padding: 16px 24px 20px;
}

.trust-box {
  transition: all 0.3s ease;
}

.trust-box:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.hover-color {
  transition: filter 0.3s;
}

.hover-color:hover {
  filter: none !important;
}

.page-title {
  height: 366px !important;
  min-height: 366px !important;
  max-height: 366px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  overflow: hidden;
}

.page-title h1 {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-title .lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .about .experience-badge {
    position: static;
    margin: 30px auto 0;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  h1, .hero h1 {
    font-size: 32px !important;
  }

  .page-title h1 {
    font-size: 28px !important;
  }

  /* Fix Inner Page Hero Alignment */
  .page-title {
    height: auto !important;
    min-height: 300px !important;
    padding: 60px 0 !important;
    max-height: none !important;
  }

  .detail-svc-img img,
  .detail-img img {
    min-height: 250px !important;
    aspect-ratio: 16 / 9;
  }

  .industry-card, .ind-card {
    height: 220px !important;
  }

  .process-connector {
    display: none !important;
  }

  .process-step {
    text-align: center;
    margin-bottom: 30px;
  }

  .process-step-icon {
    margin: 0 auto 15px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 28px !important;
  }

  .btn-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn-know-more, .btn-verify {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ============================================================
   INSPECTION SERVICES PAGE – STYLES
   ============================================================ */

/* Hero */
.insp-hero-bg {
  min-height: 60vh;
  padding-top: 150px;
  background: linear-gradient(to right, rgba(13, 28, 50, 0.9), rgba(57, 71, 95, 0.5)),
    url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=1600&auto=format') center center / cover;
}

/* Service Grid Cards */
.insp-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insp-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 40px rgba(254, 107, 0, 0.18);
  border-color: #FE6B00;
}

.insp-card-img {
  height: 230px;
  overflow: hidden;
}

.insp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  filter: grayscale(25%);
}

.insp-card:hover .insp-card-img img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.insp-card-body {
  padding: 24px 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.insp-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0d1c32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.insp-card-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.insp-card-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FE6B00;
}

/* Detail Sections */
.detail-section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.detail-section:last-child {
  border-bottom: none;
}

.detail-img {
  overflow: hidden;
  position: relative;
}

.detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: 0.4s;
}

.detail-img:hover img {
  filter: grayscale(0%);
}

.detail-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #FE6B00;
}

.detail-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0d1c32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.detail-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.detail-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.detail-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.detail-bullets li:last-child {
  border-bottom: none;
}

.detail-bullets li i {
  color: #FE6B00;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Cross-sell section */
.cross-sell-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 32px 28px;
  height: 100%;
  transition: 0.3s;
}

.cross-sell-card:hover {
  border-color: #FE6B00;
  box-shadow: 0 8px 30px rgba(254, 107, 0, 0.1);
  transform: translateY(-4px);
}

.cross-sell-card .cs-icon {
  width: 54px;
  height: 54px;
  background: rgba(254, 107, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: #FE6B00;
  transition: 0.3s;
}

.cross-sell-card:hover .cs-icon {
  background: #FE6B00;
  color: #fff;
}

.cross-sell-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1c32;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.cross-sell-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cross-sell-card ul li {
  font-size: 13px;
  color: #666;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cross-sell-card ul li:last-child {
  border-bottom: none;
}

.cross-sell-card ul li i {
  color: #FE6B00;
  font-size: 13px;
}

/* Process Section */
.process-section {
  background: #0d1c32;
}

.process-step {
  text-align: center;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(254, 107, 0, 0.12);
  border: 2px solid rgba(254, 107, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #FE6B00;
  transition: 0.3s;
}

.process-step:hover .process-step-icon {
  background: #FE6B00;
  color: #fff;
  border-color: #FE6B00;
  transform: scale(1.1);
}

.process-step .step-num {
  font-size: 11px;
  font-weight: 700;
  color: #FE6B00;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process-step h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Benefit Cards */
.benefit-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #FE6B00;
  box-shadow: 0 8px 28px rgba(254, 107, 0, 0.12);
}

.benefit-card .b-icon {
  width: 60px;
  height: 60px;
  background: rgba(254, 107, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: #FE6B00;
  transition: 0.3s;
}

.benefit-card:hover .b-icon {
  background: #FE6B00;
  color: #fff;
}

.benefit-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: #0d1c32;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

/* Industry Cards */
.ind-card {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.ind-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(75%);
  transition: all 0.45s ease;
}

.ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 28, 50, 0.88) 0%, rgba(13, 28, 50, 0.15) 60%);
  z-index: 1;
  transition: 0.4s;
}

.ind-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.ind-card:hover::before {
  background: linear-gradient(to top, rgba(254, 107, 0, 0.75) 0%, rgba(13, 28, 50, 0.15) 70%);
}

.ind-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  z-index: 2;
}

.ind-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.ind-card-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 4px 0 0;
}

/* FAQ */
.faq-section .accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: #0d1c32;
  background: #fff;
  padding: 20px 24px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #FE6B00;
  background: #fff9f5;
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FE6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-item {
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  border-radius: 4px !important;
  overflow: hidden;
}

.faq-section .accordion-body {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  background: #fff9f5;
  padding: 16px 24px 20px;
}

.ind-card {
  height: 210px;
}

/* Responsive Refinements */
@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .svc-card-body {
    padding: 22px 20px;
  }

  .detail-svc-section {
    padding: 50px 0;
  }
}

/* ============================================================
   SERVICE DETAILS PAGE – PREMIUM REFINEMENTS
   ============================================================ */

/* Hero Parallax */
.hero-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Quick Contact Strip (Sticky) */
.quick-contact-strip {
  background: #fff;
  padding: 15px 0;
  border-bottom: 2px solid #FE6B00;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 80px; /* Adjust based on main header height */
  z-index: 996;
}

.contact-strip-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-strip-form .form-control,
.contact-strip-form .form-select {
  border-radius: 4px;
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid #ddd;
}

.contact-strip-form .btn {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 18px;
}

.strip-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: #0d1c32;
  font-weight: 600;
}

.strip-info i {
  color: #FE6B00;
  font-size: 18px;
}

/* Specific responsiveness for sticky strip */
@media (max-width: 991px) {
  .quick-contact-strip {
    position: relative;
    top: 0;
    padding: 25px 0;
  }
}

/* Scope & Features Grid Improvements */
.scope-item {
  background: #fdfdfd;
  padding: 20px;
  border-left: 3px solid #FE6B00;
  transition: 0.3s;
  height: 100%;
}

.scope-item:hover {
  background: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.scope-item i {
  color: #FE6B00;
  margin-right: 10px;
}

/* Horizontal Process Lines (Dashed) */
.process-horizontal {
  position: relative;
}

.process-horizontal::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(254, 107, 0, 0.3);
  z-index: 0;
}

.crane-slider-img {
  height: 400px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .process-horizontal::before {
    display: none;
  }
}

/* Type Cards */
.type-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.4s;
  height: 100%;
}

.type-card:hover {
  border-color: #FE6B00;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.type-card i {
  font-size: 40px;
  color: #FE6B00;
  margin-bottom: 15px;
  display: block;
}

.type-card h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Sidebar Specific Styles */
.service-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.sidebar-box {
  background: #fff;
  padding: 30px;
  border-top: 5px solid #FE6B00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.sidebar-box h4 {
  font-size: 20px;
  font-weight: 800;
  color: #0d1c32;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #f8f8f8;
  padding-bottom: 15px;
}

.sidebar-form .form-group {
  margin-bottom: 18px;
}

.sidebar-form label {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.sidebar-form .form-control,
.sidebar-form .form-select {
  height: 48px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid #eee;
  background: #f9f9f9;
}

.sidebar-form .form-control:focus {
  background: #fff;
  border-color: #FE6B00;
  box-shadow: none;
}

.sidebar-info-box {
  background: #0d1c32;
  padding: 25px;
  color: #fff;
  border-radius: 4px;
  margin-top: 30px;
}

.sidebar-info-box i {
  color: #FE6B00;
  font-size: 30px;
  margin-bottom: 15px;
  display: block;
}

.sidebar-info-box h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.sidebar-info-box p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-sidebar {
    position: relative;
    top: 0;
    margin-top: 50px;
  }
}

.service-featured-img {
  height: 350px;
  object-fit: cover;
}
