@font-face {
  font-family: "Mine";
  src: url("/assest/Fonts/Posterama\ 2001\ W04\ Regular.woff2") format("woff2"),
       url("/assest/Fonts/Posterama\ 2001\ W04\ Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3, h4 {
  font-family: "Mine", "poppins";
  letter-spacing: 0.3px;
  color: #ffffff;
}


:root {
  --primary: #0d1b5c;
  --accent: linear-gradient(135deg,#0d5fff,#15c39a);
}

body {
  font-family: 'Inter', sans-serif;
}

.main-header {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  padding: 14px 0;
  z-index: 999;
  font-family: "Mine", "poppins";
}

.nav-center {
  gap: 40px;
}

.nav-link {
  font-weight:bold;
  color: var(--primary);
  position: relative;
  padding: 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--accent);
  transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #0d5fff;
}

.btn-download {
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 300;
  transition: all .3s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  color: #fff;
}

.social a {
  color: var(--primary);
  margin-left: 10px;
  font-size: 18px;
  transition: .3s;
}

.social a:hover {
  color: #0dff82;
}

.menu-btn {
  font-size: 24px;
  color: var(--primary);
  background: none;
  border: none;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
/* Mobile Offcanvas Enhancements */
.mobile-actions {
  padding-bottom: 20px;
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mobile-social a {
  font-size: 22px;
  color: var(--primary);
  transition: 0.3s ease;
}

.mobile-social a:hover {
  color: #0d5fff;
  transform: translateY(-2px);
}

.offcanvas {
  width: 300px;
}
/* Offcanvas Logo Styling */
.offcanvas-logo img {
  max-height: 42px;
  width: auto;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}
.nav-link.active,
.mobile-nav a.active {
  color: #0d5fff;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Hero Section */

.hero-section {
  position: relative;
  min-height: 80vh;
  background: url("/assest/images/HeroBG.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,15,35,0.85) 0%,
    rgba(5,15,35,0.65) 40%,
    rgba(5,15,35,0.15) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg,#0d5fff,#15c39a);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #ffffff;
  color: #0d1b5c;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-hero-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: #0d1b5c;
}
.company-overview {
  background: #f8fbff;
}

.section-badge {
  display: inline-block;
  background: #eef1f6;
  color: #0d1b5c;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #4a5568;
  letter-spacing: 0.5px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 16px;
}

/* Right Highlight Card */
.overview-highlight {
  background: linear-gradient(135deg, #4c5f70, #1e3a5f);
  color: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.overview-highlight h4 {
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.overview-highlight p {
  opacity: 0.9;
  line-height: 1.7;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  height: 100%;
  transition: 0.3s ease;
}

.feature-card i {
  font-size: 36px;
  color: #0d5fff;
  margin-bottom: 18px;
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #4a5568;
}

.feature-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}


.mission-vision-section {
  background: #f8fbff;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: #eef1f6;
  color: #0d1b5c;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: #4a5568;
}

/* Cards */
.mv-card {
  background: #fff;
  padding: 40px 32px 56px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  position: relative;
  height: 100%;
}

.mv-card h4 {
  font-weight: 700;
  margin: 18px 0 14px;
  color: #2d3748;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

/* Icons */
.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin: 0 auto;
}

.mission .mv-icon {
  background: #27ae60;
}

.vision .mv-icon {
  background: #0d1b2a;
}

/* Accent bar */
.mv-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 10px;
  border-radius: 6px;
}

.mission .mv-accent {
  background: #27ae60;
}

.vision .mv-accent {
  background: #0d1b2a;
}

/* Footer strip */
.mv-footer {
  background: linear-gradient(135deg, #0b1c2d, #020c18);
  color: #d1d5db;
  text-align: center;
  font-size: 14px;
  padding: 18px 20px;
  margin-top: 60px;
}
/* Hover Elevation Animation */
.mv-card {
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.18);
}

/* Icon subtle lift */
.mv-card .mv-icon {
  transition: transform 0.35s ease;
}

.mv-card:hover .mv-icon {
  transform: translateY(-4px) scale(1.05);
}

/* Accent bar animation */
.mv-card .mv-accent {
  transition: width 0.35s ease;
}

.mv-card:hover .mv-accent {
  width: 70px;
}
/* Core Value Section */


.core-values-section {
  background: #f8fbff;
}

.value-card {
  background: #ffffff;
  padding: 36px 26px;
  border-radius: px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card i {
  font-size: 34px;
  color: #0d5fff;
  margin-bottom: 18px;
}

.value-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: #4a5568;
  line-height: 1.4;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

/* Hover Elevation */
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.14);
}

/* Footer Strip */
.core-values-footer {
  background: linear-gradient(135deg, #556371, #0b1c2d);
  color: #e5e7eb;
  text-align: center;
  padding: 18px 20px;
  font-size: 14px;
}

.global-presence-section {
  background: #ffffff;
}

/* Subtitle */
.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* Layout */
.global-presence-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 5vw; /* full-width breathing space */
}

/* Map */
.map-area {
  position: relative;
}

.world-map {
  width: 100%;
  max-width: 820px;
  display: block;
  margin: 0 auto;
  opacity: 0.75;
}

/* Dots */
.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.25);
}

/* Approximate positions */
.map-dot.europe { top: 32%; left: 47%; }
.map-dot.middle-east { top: 42%; left: 55%; }
.map-dot.africa { top: 52%; left: 48%; }
.map-dot.asia { top: 40%; left: 65%; }

/* Regions */
.regions-area {
  max-width: 520px;
}

.region {
  margin-bottom: 26px;
}

.region h5 {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.region h5 span {
  font-weight: 600;
  color: #0d5fff;
}

.region p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .global-presence-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .regions-area {
    max-width: 100%;
  }
}
/* Base Dot */
.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  z-index: 2;
}

/* Pulse Effect */
.map-dot::before,
.map-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.6);
  animation: pulse 2.8s infinite;
}

.map-dot::after {
  animation-delay: 1.4s;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}


/* CTA Section */
.cta-global {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background: url("/assest/images/Global.png") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* Dark Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 18, 32, 0.92),
    rgba(15, 34, 56, 0.88)
  );
  z-index: 1;
}

/* Content Layer */
.cta-global .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Title */
.cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

/* Text */
.cta-text {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 40px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #0d5fff, #22c55e);
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.btn-cta-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-cta-outline:hover {
  background: #ffffff;
  color: #0f172a;
}

/* Trust Indicators */
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #e5e7eb;
}

.cta-trust i {
  color: #22c55e;
  margin-right: 8px;
  font-size: 18px;
}


.divisions-section {
  background: #f8fbff;
}

/* Card */
.division-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.division-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.division-card .card-body {
  padding: 24px 22px 28px;
}

.division-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 10px;
}

.division-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 18px;
}

/* Button */
.btn-division {
  background: #0d5fff;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-division:hover {
  background: #0b4edb;
  color: #fff;
}

/* Hover Elevation */
.division-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}



.advantages-section {
  background: #ffffff;
}

/* Timeline container */
.advantages-timeline {
  position: relative;
  padding-left: 60px;
  max-width: 900px;
}

/* Vertical line */
.advantages-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    #0d5fff,
    #22c55e
  );
}

/* Item */
.adv-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

/* Icon */
.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d5fff, #22c55e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  position: absolute;
  left: -2px;
}

/* Content */
.adv-content {
  padding-left: 70px;
}

.adv-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.adv-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .advantages-timeline {
    padding-left: 0;
  }

  .advantages-timeline::before {
    display: none;
  }

  .adv-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .adv-icon {
    position: static;
    margin-bottom: 14px;
  }

  .adv-content {
    padding-left: 0;
  }
}
/* Scroll reveal base */
.adv-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* Revealed */
.adv-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: icon pop when revealed */
.adv-item .adv-icon {
  transform: scale(0.9);
  transition: transform 0.6s ease;
}
.adv-item.is-visible .adv-icon {
  transform: scale(1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .adv-item,
  .adv-item .adv-icon {
    transition: none;
    transform: none;
    opacity: 1;
  }
}



.roadmap-section {
  background: #f8fbff;
}

/* Card */
.roadmap-card {
  position: relative;
  background: linear-gradient(135deg, #0b3c91, #0d5fff);
  color: #ffffff;
  padding: 84px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(13, 95, 255, 0.35);
  overflow: visible;
  height: 100%;
}

/* Curved Bottom */
.roadmap-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background: inherit;
  border-radius: 0 0 50% 50%;
}

/* Icon */
.roadmap-icon {
  position: absolute;
  top: -36px;                 /* move fully above card */
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  background: #0a2f6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  z-index: 5;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}


/* Title */
.roadmap-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Text */
.roadmap-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e7ff;
}

/* Hover Effect */
.roadmap-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.roadmap-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(13, 95, 255, 0.45);
}

/* Section Background */
.contact-section {
  background: linear-gradient(135deg, #07192c, #0b2a4a);
  padding: 120px 0;
  color: #ffffff;
}

/* Left Content */
.contact-badge {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.8;
}

.contact-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

.contact-text {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.contact-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid #22c55e;
  padding-bottom: 4px;
}

/* Form Card */
.contact-card {
  background: #102f4a;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Inputs */
.contact-card .form-control {
  background: #cfd4d9;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
}

.contact-card .form-control:focus {
  outline: none;
  box-shadow: none;
}

/* Submit Button */
.btn-submit {
  background: #22c55e;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #16a34a;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-card {
    margin-top: 40px;
  }
}

/* Footer */

.site-footer {
  background: linear-gradient(
      rgba(8, 24, 42, 0.95),
      rgba(8, 24, 42, 0.95)
      
    ),
    url("/assest/images/Global.png") center / cover no-repeat;
  padding: 80px 0;
  color: #cbd5e1;
}

/* Logo */
.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
  size: 80px;
}

/* Text */
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #22c55e;
  color: #ffffff;
}

/* Titles */
.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #22c55e;
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact i {
  color: #22c55e;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .site-footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}


#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d5fff, #22c55e);
  color: #ffffff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
}

#scrollTopBtn.show {
  display: flex;
}



/* Section */
.industries-section {
  padding: 100px 0;
  background: #f8fbff;
}

/* Badge (reuse your existing badge style if you have one) */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  background: #e6ebf2;
  color: #0f172a;
}

/* Cards */
.industry-card {
  background: #ffffff;
  padding: 22px 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}











/* HERO */
.about-hero {
  position: relative;
  min-height: 20vh;
  background: url("/assest/images/About-Us-Hero-BG.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(6, 22, 40, 0.85),
    rgba(6, 22, 40, 0.85)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  color: #ffffff;
}

.about-hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 14px;
}

.about-hero-content p {
  font-size: 16px;
  color: #d1d5db;
}


/* OVERVIEW */
.about-overview {
  padding: 100px 0;
  background: #f8fbff;
}

.about-overview p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 14px;
}

/* Highlight Card */
.about-highlight-card {
  background: linear-gradient(135deg, #1e3a5f, #0f2944);
  color: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.about-highlight-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-highlight-card p {
  font-size: 14px;
  color: #e5e7eb;
}


/* FEATURES */
.about-features {
  padding: 60px 0 100px;
  background: #f8fbff;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  font-size: 32px;
  color: #0d5fff;
  margin-bottom: 14px;
}

.feature-card h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}









/* HERO */
.services-hero {
  position: relative;
  min-height: 20vh;
  background: url("/assest/images/About-Us-Hero-BG.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(6, 22, 40, 0.85),
    rgba(6, 22, 40, 0.85)
  );
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  color: #ffffff;
}

.services-hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 14px;
}

.services-hero-content p {
  font-size: 16px;
  color: #d1d5db;
}


/* OVERVIEW */
.services-overview {
  padding: 100px 0;
  background: #f8fbff;
}

.services-overview p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 14px;
}

/* Highlight Card */
.services-highlight-card {
  background: linear-gradient(135deg, #1e3a5f, #0f2944);
  color: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.services-highlight-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-highlight-card p {
  font-size: 14px;
  color: #e5e7eb;
}


/* SERVICES LIST */
.services-list {
  padding: 60px 0 100px;
  background: #f8fbff;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
  font-size: 34px;
  color: #0d5fff;
  margin-bottom: 16px;
}

.service-card h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.services-grid-section {
  padding: 100px 0;
  background: #f8fbff;
}

/* Subtitle */
.section-subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

/* Card */
.service-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 28px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Highlighted card */
.service-box.active {
  background: #f1f6f9;
}

/* Icon */
.service-box i {
  font-size: 34px;
  color: #0d5fff;
  margin-bottom: 16px;
  display: inline-block;
}

/* Title */
.service-box h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #334155;
}

/* Text */
.service-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Hover */
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
/* Wrapper */
.trust-section {
  width: 100%;
}

/* Top grey strip */
.trust-features {
  background: #5f6b75;
  padding: 60px 0;
}

.trust-item i {
  font-size: 36px;
  color: #36b36b;
  margin-bottom: 14px;
  display: inline-block;
}

.trust-item h5 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.trust-item p {
  color: #e6edf3;
  font-size: 14px;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA section */
.trust-cta {
  background: radial-gradient(
    circle at top,
    #0e2338 0%,
    #081a2c 100%
  );
  padding: 90px 0;
}

.trust-cta h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
}

.trust-cta p {
  color: #cfd9e4;
  font-size: 15px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-cta h2 {
    font-size: 26px;
  }
  .trust-features {
    padding: 40px 0;
  }
}
.process-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Header */
.section-header {
  margin-bottom: 60px;
}

.badge-pill {
  display: inline-block;
  padding: 6px 18px;
  background: #e6e7eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #1f2a44;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #5f6b75;
  margin: 0;
}

/* Cards */
.process-row {
  gap: 24px 0;
}

.process-card {
  background: #f9fcff;
  border-radius: 16px;
  padding: 34px 26px;
  height: 100%;
  position: relative;
  border-left: 4px solid #0b5ed7;
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* Step number */
.process-card .step {
  font-size: 32px;
  font-weight: 800;
  color: #2fa86f;
  display: block;
  margin-bottom: 14px;
}

/* Title */
.process-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 10px;
}

/* Text */
.process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 26px;
  }
}



.divisions-hero {
  padding: 110px 0 90px;
  background: linear-gradient(
    rgba(8, 26, 44, 0.65),
    rgba(8, 26, 44, 0.85)
  ),
  url("/assest/images/About-Us-Hero-BG.jpg") center/cover no-repeat;
  color: #ffffff;
}

.divisions-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 18px 0 14px;
}

.divisions-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  color: #d1dae4;
}

.divisions-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.division-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.division-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 60px rgba(0,0,0,0.1);
}

.division-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.division-card:hover img {
  transform: scale(1.08);
}

.division-content {
  padding: 26px 22px 30px;
}

.division-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 8px;
}

.division-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 16px;
}

.btn-link {
  font-size: 14px;
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}
.products-section {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #5f6b77;
  margin-bottom: 12px;
}

.section-header p {
  max-width: 760px;
  margin: auto;
  font-size: 16px;
  color: #6c757d;
}

.section-pill {
  display: inline-block;
  background: #e5e7eb;
  color: #1e3a8a;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Product Cards */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
}

.product-card .icon {
  font-size: 44px;
  color: #0d5db8;
  margin-bottom: 18px;
}

.product-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
}






/* ================= HERO ================= */
.contact-hero {
  padding: 110px 0;
  background: radial-gradient(circle at top left, #0b2a44, #071b2f);
  color: #ffffff;
}

.mini-title {
  font-size: 13px;
  letter-spacing: 1px;
  color: #9ca3af;
  display: inline-block;
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 16px;
  color: #d1d5db;
  max-width: 520px;
}

.contact-hero .small-text {
  font-size: 15px;
  margin-top: 10px;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 4px;
}

/* ================= FORM CARD ================= */
.contact-card {
  background: #0f2f4a;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.contact-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.4;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 15px;
  background: #c7ccd1;
  font-size: 15px;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #6b7280;
}

.contact-card button {
  background: #2bb673;
  border: none;
  color: #ffffff;
  padding: 12px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card button:hover {
  background: #24a867;
}

/* ================= TRUST BAR ================= */
.contact-trust {
  background: #6b7280;
  padding: 60px 0;
  color: #ffffff;
}

.contact-trust i {
  font-size: 34px;
  color: #2bb673;
  margin-bottom: 12px;
}

.contact-trust h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-trust p {
  font-size: 14px;
  color: #e5e7eb;
  max-width: 260px;
  margin: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .contact-hero {
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-card {
    margin-top: 40px;
  }
}



.contact-page {
  padding: 100px 0;
  background: #f8fafc;
}

/* LEFT */
.contact-title {
  font-size: 34px;
  font-weight: 700;
  color: #5f6b77;
  margin-bottom: 15px;
}

.contact-text {
  font-size: 16px;
  color: #6c757d;
  max-width: 420px;
  margin-bottom: 40px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info i {
  font-size: 22px;
  color: #0d5db8;
  margin-right: 15px;
}

.contact-info span {
  font-size: 14px;
  color: #6c757d;
}

.contact-info p {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* FORM CARD */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

.contact-form-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #5f6b77;
  margin-bottom: 30px;
}

.contact-form-card label {
  font-size: 14px;
  color: #0d5db8;
  margin-bottom: 6px;
  display: block;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 18px;
  outline: none;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #0d5db8;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #0d5db8, #2bb673);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-title {
    text-align: center;
  }

  .contact-text {
    margin: auto;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .info-item {
    justify-content: center;
  }

  .contact-form-card {
    margin-top: 50px;
  }
}






/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 300px;
  margin-bottom: 15px;
}

.preloader-text {
  font-size: 22px;
  font-weight: 700;
  color: #0b5ed7;
  letter-spacing: 1px;
  animation: fadePulse 1.5s infinite;
}

@keyframes fadePulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
@media (max-width: 768px) {
  .preloader-logo {
    width: 150px;
  }

  .preloader-text {
    font-size: 18px;
  }
}







