@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #0086C8;
  --primary-dark: #006ca1;
  --primary-light: #2da1db;
  --secondary: #009fe3;
  --secondary-dark: #0081b8;
  --secondary-light: #33b2e9;
  --accent: #00a3d2;
  --dark: #111827;
  --slate: #1f2937;
  --muted: #4b5563;
  --light-gray: #f3f4f6;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --whatsapp: #25d366;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 12px;
}

/* Global Reset */
body {
  font-family: var(--font-body);
  color: var(--slate);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
}

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

a:hover {
  color: var(--primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Helper Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.bg-gradient-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.text-primary-color {
  color: var(--primary);
}

.text-secondary-color {
  color: var(--secondary);
}

.btn-custom-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.btn-custom-primary:hover {
  background-color: #404757;
  border-color: #404757;
  color: var(--white);
}

.btn-custom-secondary {
  background-color: var(--secondary);
  color: var(--white);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--secondary);
  transition: var(--transition);
}

.btn-custom-secondary:hover {
  background-color: #404757;
  border-color: #404757;
  color: var(--white);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
}

.section-title span {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-title.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.4);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 0 0 30px rgba(37, 211, 102, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Top bar style */
.top-bar {
  background-color: var(--primary-dark);
  font-size: 0.85rem;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--white);
}

/* Sticky Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 0 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 0 0;
  background-color: var(--white);
}

.navbar-custom .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-custom .navbar-brand img {
  height: 80px;
  transition: var(--transition);
}

.navbar-custom.scrolled .navbar-brand img {
  height: 68px;
}

.navbar-custom .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--slate);
  padding: 10px 16px !important;
  border-radius: 4px;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-item.active .nav-link {
  color: var(--primary);
  background-color: rgba(6, 78, 119, 0.05);
}

/* Hero Carousel */
.hero-section {
  position: relative;
}

.hero-section .carousel-item {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(4, 56, 86, 0.55), rgba(0, 159, 227, 0.25));
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--white);
}

.hero-caption h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-caption p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Service Card Component */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 35px 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--secondary);
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  background-color: rgba(6, 78, 119, 0.02);
  border-radius: 50%;
  z-index: -1;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(6, 78, 119, 0.1);
}

.service-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.service-card:hover::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 159, 227, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Feature/Counter Box */
.counter-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.counter-text {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* About Overview Section Image Height */
.about-overview-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .about-overview-img {
    height: 520px;
  }
}

/* Industry Showcase Card */
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 300px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 20%, rgba(17, 24, 39, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
  transition: var(--transition);
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, var(--primary-dark) 40%, rgba(6, 78, 119, 0.5) 100%);
}

.industry-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.industry-overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.industry-card:hover .industry-overlay p {
  height: 50px;
  margin-top: 5px;
}

/* Testimonial Box */
.testimonial-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 15px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 100px;
  color: rgba(0, 159, 227, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-company {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Timeline Components */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--light-gray);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--secondary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--bg-light);
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 21px;
    right: auto;
  }

  .timeline-right {
    left: 0%;
  }
}

/* Gallery Portfolio Filters */
.gallery-filter-btn {
  background-color: var(--light-gray);
  border: none;
  padding: 8px 24px;
  border-radius: 20px;
  margin: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  height: 250px;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 78, 119, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

/* CSS-Only Lightbox modal styling */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* Quote Page Multi-step wizard styling */
.quote-wizard {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--light-gray);
  z-index: 1;
}

.wizard-step-progress {
  position: absolute;
  top: 25px;
  left: 0;
  height: 4px;
  background-color: var(--secondary);
  z-index: 1;
  width: 0%;
  transition: var(--transition);
}

.wizard-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.wizard-circle {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border: 4px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 10px auto;
  transition: var(--transition);
}

.wizard-step.active .wizard-circle {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
}

.wizard-step.completed .wizard-circle {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.wizard-step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.wizard-step.active .wizard-step-title {
  color: var(--secondary);
}

.wizard-content-step {
  display: none;
}

.wizard-content-step.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

/* Contact page elements */
.contact-info-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
  border-left: 5px solid var(--primary);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(6, 78, 119, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--muted);
}

/* Blog layouts */
.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 25px;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-meta span {
  margin-right: 15px;
}

.blog-meta i {
  color: var(--secondary);
  margin-right: 5px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--dark);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Blog detail rich content styling */
.blog-detail-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px 0;
  color: var(--white);
  margin-bottom: 50px;
}

.blog-detail-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 56, 86, 0.85);
}

.blog-detail-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
}

.blog-content-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
}

.blog-content-body blockquote {
  border-left: 4px solid var(--secondary);
  padding: 15px 25px;
  background-color: var(--light-gray);
  font-style: italic;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 30px 0;
}

.blog-sidebar {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* Footer Section */
.footer-section {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px 0;
  font-size: 0.95rem;
  border-top: 5px solid var(--secondary);
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--secondary);
  margin-right: 15px;
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}

/* Interactive Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: ripple 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
}

.whatsapp-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.3s ease-out;
}

.whatsapp-popup.active {
  display: block;
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #128c7e 100%);
  color: var(--white);
  padding: 20px;
}

.whatsapp-popup-header h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.whatsapp-popup-header p {
  font-size: 0.8rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.whatsapp-popup-body {
  padding: 15px;
  background-color: #efeae2;
  /* WhatsApp chat background pattern mimic color */
}

.whatsapp-chat-item {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.whatsapp-chat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.whatsapp-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-right: 12px;
}

.whatsapp-chat-avatar.ad {
  background-color: var(--primary);
}

.whatsapp-chat-avatar.ops1 {
  background-color: var(--secondary);
}

.whatsapp-chat-avatar.ops2 {
  background-color: var(--accent);
}

.whatsapp-chat-info {
  flex: 1;
}

.whatsapp-chat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.whatsapp-chat-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0;
}

.whatsapp-chat-link {
  color: var(--whatsapp);
  font-size: 1.25rem;
}

/* Page Header component */
.page-header {
  background: linear-gradient(135deg, rgba(6, 78, 119, 0.95), rgba(0, 159, 227, 0.85)), url('../images/customs_warehouse.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--white);
  position: relative;
  margin-bottom: 60px;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
  color: var(--secondary-light);
  font-weight: 600;
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
  padding: 0 10px;
}

.breadcrumb-item.active {
  color: var(--white);
}

/* Service Card Version 2 (Image-based with overlays) */
.service-card-v2 {
  position: relative;
  margin-bottom: 50px;
  background: transparent;
  border: none;
}

.service-card-v2-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  height: auto;
  box-shadow: var(--shadow);
}

.service-card-v2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card-v2:hover .service-card-v2-img-wrap img {
  transform: scale(1.05);
}

/* Triangle overlay on top-left */
.service-card-v2-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 10;
}

.service-card-v2-badge i {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 32px;
  color: var(--secondary);
  /* Cyan Accent */
  transition: var(--transition);
}

.service-card-v2:hover .service-card-v2-badge i {
  transform: scale(1.1) rotate(-10deg);
}

/* Content card overlapping bottom */
.service-card-v2-content {
  background-color: var(--white);
  padding: 25px 25px 35px 25px;
  margin: -60px 15px 0 15px;
  position: relative;
  z-index: 20;
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow-lg);
  border-radius: 0 4px 4px 0;
  transition: var(--transition);
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-v2:hover .service-card-v2-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-card-v2-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  /* Deep Navy */
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.service-card-v2:hover .service-card-v2-content h3 {
  color: var(--secondary);
}

.service-card-v2-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Bottom right ribbon button */
.service-card-v2-btn {
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 55px;
  height: 45px;
  background-color: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 25;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

/* Left fold triangle for ribbon shape */
.service-card-v2-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-right: 15px solid var(--secondary-dark);
}

.service-card-v2:hover .service-card-v2-btn {
  background-color: var(--primary);
  color: var(--white);
}

.service-card-v2:hover .service-card-v2-btn::before {
  border-right-color: var(--primary-dark);
}

/* Why Choose Us Section */
.why-choose-section {
  background-image: url('../images/cargo_ship_night.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.96);
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
}

.why-choose-container {
  padding: 60px 0;
}

.why-choose-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.2rem;
  transition: var(--transition);
}

.why-choose-item:last-child {
  margin-bottom: 0;
}

/* Left items: text left, icon right (desktop) */
@media (min-width: 992px) {
  .why-choose-item.left-item {
    text-align: right;
    justify-content: flex-end;
  }

  .why-choose-item.left-item .why-choose-text {
    margin-right: 1.25rem;
    order: 1;
  }

  .why-choose-item.left-item .why-choose-icon-box {
    order: 2;
  }
}

/* Right items: icon left, text right (desktop & mobile) */
.why-choose-item.right-item {
  text-align: left;
  justify-content: flex-start;
}

.why-choose-item.right-item .why-choose-text {
  margin-left: 1.25rem;
}

/* Mobile responsive alignment */
@media (max-width: 991.98px) {
  .why-choose-item.left-item {
    text-align: left;
    justify-content: flex-start;
  }

  .why-choose-item.left-item .why-choose-text {
    margin-left: 1.25rem;
    margin-right: 0;
    order: 2;
  }

  .why-choose-item.left-item .why-choose-icon-box {
    order: 1;
  }
}

.why-choose-icon-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background-color: rgba(6, 78, 119, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.45rem;
  box-shadow: 0 4px 6px rgba(6, 78, 119, 0.05);
  transition: var(--transition);
}

.why-choose-item:hover .why-choose-icon-box {
  background-color: var(--secondary);
  color: var(--primary-dark);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 6px 12px rgba(0, 159, 227, 0.2);
}

.why-choose-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.why-choose-oval-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.why-choose-oval-img {
  width: 100%;
  max-width: 320px;
  height: 480px;
  object-fit: cover;
  border-radius: 50% / 35%;
  /* Mathematical vertical ellipse */
  border: 6px solid #eef3f7;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.why-choose-item:hover {
  transform: translateX(3px);
}

.why-choose-item.left-item:hover {
  @media (min-width: 992px) {
    transform: translateX(-3px);
  }
}

/* Testimonials V3 (Satisfied People Say) */
.feedback-section {
  padding: 80px 0;
  position: relative;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  background-color: var(--white);
}

.feedback-subtitle {
  color: #ff7a00;
  /* Vibrant Orange */
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.feedback-title {
  color: var(--primary);
  /* Deep Navy */
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

.testimonial-card-v3 {
  background-color: #f8f9fa;
  /* Light Gray Card */
  padding: 45px 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.testimonial-card-v3:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 78, 119, 0.08);
}

.testimonial-text-v3 {
  font-size: 0.98rem;
  color: #555555;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-card-v3-watermark {
  position: absolute;
  bottom: 15px;
  right: 25px;
  font-size: 5.5rem;
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  z-index: 1;
  transition: var(--transition);
}

.testimonial-card-v3:hover .testimonial-card-v3-watermark {
  color: rgba(0, 159, 227, 0.05);
  /* Fade Cyan in watermark on hover */
  transform: scale(1.05);
}

.testimonial-footer-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.testimonial-user-v3 {
  display: flex;
  align-items: center;
}

.testimonial-user-v3 img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
}

.testimonial-user-info-v3 {
  margin-left: 15px;
  text-align: left;
}

.testimonial-user-name-v3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.testimonial-user-company-v3 {
  font-size: 0.75rem;
  color: var(--muted);
}

.testimonial-stars-v3 {
  color: #ffb800;
  /* Gold Yellow Stars */
  font-size: 1.15rem;
}

.feedback-indicators {
  position: static;
  margin-top: 2.5rem;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.feedback-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  padding: 0;
  opacity: 1;
  transition: var(--transition);
}

.feedback-indicators .active {
  background-color: var(--secondary);
  /* Cyan dot for active */
  width: 24px;
  border-radius: 5px;
}

/* Home Page Quick Quote Section */
.home-quote-section {
  background: linear-gradient(rgba(17, 24, 39, 0.55), rgba(17, 24, 39, 0.55)), url('../images/air_freight.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 85px 0 100px 0;
}

.home-quote-man-wrap {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 110%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-left: 20px;
}

.home-quote-man-img {
  max-width: 95%;
  max-height: 100%;
  object-fit: contain;
}

.home-quote-card {
  background-color: var(--white);
  padding: 55px 45px;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 10;
}

.home-quote-subtitle {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.home-quote-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.home-quote-card .form-control,
.home-quote-card .form-select {
  border-radius: 2px;
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  font-size: 0.95rem;
  background-color: #f8fafc;
  color: var(--slate);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.home-quote-card .form-control:focus,
.home-quote-card .form-select:focus {
  border-color: var(--secondary);
  box-shadow: none;
  background-color: var(--white);
}

.home-quote-card .btn-submit-quote {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 2px;
  width: 100%;
  padding: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.home-quote-card .btn-submit-quote:hover {
  background-color: #404757;
  border-color: #404757;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(64, 71, 87, 0.25);
}

/* Global Button Hover Override */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-custom-primary:hover,
.btn-custom-secondary:hover {
  background-color: #404757 !important;
  border-color: #404757 !important;
  color: var(--white) !important;
}

/* Custom Placeholder Styles */
::placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
  /* Firefox override */
}

input::placeholder,
textarea::placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

/* Logo Ticker Container */
.logo-ticker-wrap {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  position: relative;
  display: flex;
}

/* Background fade overlay left and right for premium look */
.logo-ticker-wrap::before,
.logo-ticker-wrap::after {
  background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.logo-ticker-wrap::before {
  left: 0;
  top: 0;
}
.logo-ticker-wrap::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

/* The marquee rail running the animation */
.logo-ticker-track {
  display: flex;
  width: calc(250px * 16);
  animation: logo-scroll 35s linear infinite;
}

.logo-ticker-item {
  width: 250px;
  padding: 0 15px;
  flex-shrink: 0;
}

.client-logo-card-ticker {
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.client-logo-card-ticker:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow) !important;
  border-color: var(--secondary);
}
.client-logo-card-ticker img {
  max-width: 170px;
  max-height: 75px;
  object-fit: contain;
  transition: var(--transition);
}
.client-logo-card-ticker:hover img {
  transform: scale(1.05);
}
.client-logo-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 8));
  }
}

/* Hero Carousel Controls Pointer Events Overlap Fix */
.carousel-control-prev,
.carousel-control-next {
  pointer-events: none;
}
.carousel-control-prev-icon,
.carousel-control-next-icon,
.carousel-indicators button {
  pointer-events: auto;
}