/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}



/* Ensure Main sections cover background */
main {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* Global Responsive Fixes */
img {
  max-width: 100%;
  height: auto;
}

/* Scroll Animation Utilities */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease-out;
  will-change: opacity;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-fade.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered delays for children */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Improved Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Enhanced Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: #003b80;
  color: white;
}

.btn-primary:hover {
  background: #002a5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 59, 128, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #003b80;
  border: 2px solid #003b80;
}

.btn-secondary:hover {
  background: #003b80;
  color: white;
}

/* Ensure slider starts from top */
main {
  margin-top: 0;
  padding-top: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Styles - White theme */
/* Header Styles - Modern Glassmorphism */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

/* Fix mobile breadcrumb overlap */
@media (max-width: 768px) {
  .about-hero-content, 
  .contact-hero-content, 
  .cert-hero-content, 
  .products-hero-content {
    padding-top: 5rem;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
}

/* Logo Section */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
  flex: 0 0 auto;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
  display: none; /* Hide text if logo is sufficient, or style it */
}

/* Navigation */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #009DE0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #009DE0;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #003b80;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: #94a3b8;
  margin-left: 4px;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
  color: #009DE0;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f1f5f9;
  color: #009DE0;
  padding-left: 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: #003b80;
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #003b80;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Large screen slider optimizations */
@media (min-width: 1600px) {
  .slide-content {
    max-width: 1000px;
    padding: 3rem;
  }
  
  .slide-title-line,
  .slide-title-highlight {
    font-size: 4rem;
  }
  
  .highlight-text {
    font-size: 4rem;
  }
  
  .slide-subtitle {
    font-size: 1.4rem;
  }
  
  .slide-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
  }
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 59, 128, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
  animation: slideInUp 1s ease-out;
}

/* Individual slide styling */
.slide:nth-child(1) .slide-content {
  animation: fadeInScale 1.2s ease-out;
}

.slide:nth-child(2) .slide-content {
  animation: slideInLeft 1s ease-out;
}

.slide:nth-child(3) .slide-content {
  animation: slideInRight 1s ease-out;
}

.slide:nth-child(4) .slide-content {
  animation: bounceIn 1.2s ease-out;
}

.slide-text-group {
  margin-bottom: 2.5rem;
  text-align: center;
}

.slide-title-line,
.slide-title-highlight {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.slide-title-highlight {
  margin: 0.8rem 0;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.highlight-text {
  color: #4fc3f7;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}

/* Clean highlight text without complex animations */
.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4fc3f7;
  border-radius: 1px;
}

.slide-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-btn {
  display: inline-block;
  background: #003b80;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 59, 128, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.slide-btn:hover {
  background: #002a5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 59, 128, 0.4);
}

/* Different button colors for variety */
.slide:nth-child(1) .slide-btn {
  background: #4fc3f7;
}

.slide:nth-child(1) .slide-btn:hover {
  background: #29b6f6;
}

.slide:nth-child(4) .slide-btn {
  background: #ff6b35;
}

.slide:nth-child(4) .slide-btn:hover {
  background: #f7931e;
}



/* Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: #003b80;
  border-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 59, 128, 0.5);
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (min-width: 1600px) {
  .container {
    max-width: none;
    padding: 0;
  }
  
  .navbar {
    padding: 0;
  }
  
  .nav-menu {
    gap: 3rem;
    padding: 1rem 4rem;
  }
  
  .logo-container {
    padding: 1rem 2.5rem;
    max-width: 350px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-img {
    height: 45px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .container {
    padding: 0;
  }
  
  .navbar {
    padding: 0;
  }
  
  .nav-menu {
    gap: 2.5rem;
    padding: 0.75rem 3rem;
  }
  
  .logo-container {
    padding: 0.75rem 2rem;
    max-width: 320px;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .navbar {
    gap: 0;
    padding: 0.35rem 0;
  }
  
  .nav-menu {
    gap: 1.25rem;
    padding: 0.65rem 1.25rem;
    min-width: auto;
  }
  
  .logo-container {
    padding: 0.65rem 1.25rem;
    min-width: 170px;
    max-width: 230px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-img {
    height: 36px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    gap: 1rem;
    padding: 0.25rem 0;
  }
  
  .nav-menu {
    gap: 1rem;
    padding: 0.65rem 1rem;
    min-width: auto;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .logo-container {
    padding: 0.65rem 1rem;
    min-width: 160px;
    max-width: 210px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-img {
    height: 34px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Ensure desktop pill visual is reset for mobile */
  .navbar {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.8rem 1rem;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: none;
    gap: 0;
    justify-content: space-between;
    width: 100%;
    margin-top: 0;
  }

  .logo-container {
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    flex: 0 0 auto;
    /* Ensure logo doesn't shrink */
    max-width: 200px;
    height: auto;
  }

  /* Force Hamburger to the right */
  .mobile-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
    margin-right: 0;
    padding: 0.5rem;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff; /* White menu background for clean look */
    border-top: 1px solid #f1f5f9;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 1rem 0;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    border: none; /* Remove desktop border */
  }
  
  .nav-menu.mobile-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Reset items styling for minimal look */
  .nav-item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 1.5rem;
    justify-content: space-between; /* If you add an arrow icon later */
    color: #334155; /* Dark text on white background */
    text-shadow: none;
    font-size: 1rem;
    font-weight: 500;
  }

  /* Disable desktop underline effect on mobile */
  .nav-link:hover::after,
  .nav-link.active::after {
    display: none;
    content: none;
  }

  .nav-link:hover {
    color: #003b80;
    background: #f8fafc; /* Very subtle hover bg */
    padding-left: 1.5rem;
    border-radius: 0;
  }

  /* Minimal Active State - Color Only */
  .nav-link.active {
    color: #009DE0;
    background: transparent;
    font-weight: 700;
    padding-left: 1.5rem; /* Keep strictly consistent with default padding */
    border: none;
  }
  
  /* Slider Mobile Styles */
  .hero-slider {
    height: 80vh;
  }
  
  .slide-content {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  
  .slide-text-group {
    margin-bottom: 2rem;
  }
  
  .slide-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .slide-title-line,
  .slide-title-highlight {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  .highlight-text {
    font-size: 2rem;
  }
  
  .slide-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .slide-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  .slide-content {
    padding: 1rem;
  }
  

  
  .slider-dots {
    bottom: 1rem;
    gap: 0.75rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.9rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .logo-container {
    width: auto;
    padding: 0.45rem 0.9rem;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .nav-menu {
    left: 0.75rem;
    right: 0.75rem;
    padding: 1rem;
  }
  
  /* Slider Mobile Styles */
  .hero-slider {
    height: 70vh;
  }
  
  .slide-content {
    padding: 1rem 0.75rem;
  }
  
  .slide-text-group {
    margin-bottom: 1.5rem;
  }
  
  .slide-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .slide-title-line,
  .slide-title-highlight {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }
  
  .highlight-text {
    font-size: 1.6rem;
  }
  
  .slide-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .slide-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .slider-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .slide-title-line,
  .slide-title-highlight {
    font-size: 1.4rem;
  }
  
  .highlight-text {
    font-size: 1.4rem;
  }
  
  .slide-subtitle {
    font-size: 0.9rem;
  }
  
  .slide-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* About Highlight Section */
.about-highlight {
  padding: 2rem 6rem;
  background: #f3f7fb;
}

.about-highlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: center;
}

.about-highlight-left {
  display: flex;
  justify-content: center;
}

.about-images-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.about-main-image img,
.about-secondary-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.about-main-image {
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.about-secondary-image {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 62%;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
}

.about-experience-badge {
  position: absolute;
  left: 40px;
  bottom: -25px;
  background: #003b80;
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
  text-align: center;
}

.experience-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.experience-years {
  font-size: 1.4rem;
  font-weight: 700;
}

.experience-years span {
  color: #4fc3f7;
}

.experience-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-highlight-right {
  padding: 40px;
  max-width: 560px;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f97316;
  margin-bottom: 0.75rem;
}

.about-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #003b80;
  margin-bottom: 1rem;
}

.about-description {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: #e5f3ff;
  border-radius: 18px;
  border: 1px solid #bfdbfe;
}

.about-feature-card:nth-child(2) {
  background: #e0f2fe;
  border-color: #bae6fd;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  color: #003b80;
  font-size: 1.3rem;
}

.about-feature-card:nth-child(2) .feature-icon {
  background: #e0f2fe;
  color: #0284c7;
}

.feature-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #003b80;
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.9rem;
  color: #6b7280;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.about-primary-btn,
.about-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-primary-btn {
  background: #009DE0;
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 157, 224, 0.4);
}

.about-primary-btn:hover {
  background: #003b80;
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(0, 59, 128, 0.45);
}

.about-secondary-btn {
  background: #ffffff;
  color: #003b80;
  border: 1px solid #bfdbfe;
}

.about-secondary-btn:hover {
  background: #eff6ff;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .about-highlight {
    padding: 3rem 2rem;
  }

  .about-highlight-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-highlight-right {
    max-width: 100%;
  }

  .about-secondary-image {
    right: -10px;
    bottom: -30px;
  }

  .about-experience-badge {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .about-highlight {
    padding: 2.5rem 1.5rem;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-images-wrapper {
    max-width: 360px;
  }

  .about-secondary-image {
    right: -5px;
    bottom: -25px;
  }

  .about-experience-badge {
    left: 10px;
    bottom: -30px;
    padding: 1rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .about-highlight {
    padding: 2rem 1.25rem;
  }

  .about-images-wrapper {
    max-width: 320px;
  }

  .about-experience-badge {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -32px;
    width: fit-content;
  }

  .about-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Stats Strip Section */
.stats-strip {
  position: relative;
  padding: 6rem 0 6.5rem;
  background:
    linear-gradient(180deg, rgba(0, 59, 128, 0.75), rgba(0, 59, 128, 0.9)),
    url('banner_img/two.png') center/cover no-repeat;
}

.stats-strip-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.stat-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7ed;
  color: #f97316;
  font-size: 2rem;
  flex: 0 0 auto;
}

.stat-card:nth-child(2) .stat-icon-circle {
  background: #e0f2fe;
  color: #0284c7;
}

.stat-card:nth-child(3) .stat-icon-circle {
  background: #e0f2fe;
  color: #0ea5e9;
}

.stat-card:nth-child(4) .stat-icon-circle {
  background: #ecfdf3;
  color: #16a34a;
}

.stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: #003b80;
  margin-bottom: 0.15rem;
}

.stat-label {
  font-size: 1rem;
  color: #4b5563;
}

.stat-icon {
  width: 36px;
  height: 36px;
}

@media (max-width: 1024px) {
  .stats-strip-inner {
    padding: 0 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .stats-strip-inner {
    padding: 0 1.5rem;
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.2rem 1.3rem;
  }
}

/* Services / Popular Logistics Section */
.services-section {
  padding: 4rem 5rem 4.5rem;
  background: #f3f7fb;
}

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

.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.services-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #009DE0;
  margin-bottom: 0.4rem;
}

.services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003b80;
}

.services-viewall-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  background: #009DE0;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 157, 224, 0.4);
  transition: all 0.25s ease;
}

.services-viewall-btn:hover {
  background: #003b80;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 59, 128, 0.45);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
}

.service-image {
  padding-top: 10px;
  width: 100%;
  display: block;
  height: 210px;
  object-fit: cover;
}

.service-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 0;
  transform: translateY(40%);
}

.service-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px 12px 0 0;
  background: #009DE0;
  color: #ffffff;
}

.service-tag-icon svg {
  width: 22px;
  height: 22px;
}

.service-content {
  padding: 2.5rem 1.75rem 1.75rem;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003b80;
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #009DE0;
  text-decoration: none;
}

.service-link:hover {
  color: #003b80;
}

@media (max-width: 1024px) {
  .services-section {
    padding: 3.5rem 3rem 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1.75rem 3.5rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 190px;
  }

  .service-content {
    padding: 2.2rem 1.5rem 1.5rem;
  }
}

/* Why Choose Us Section */
.why-section {
  padding: 4rem 6rem 3.5rem;
  background: #f9fafb;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #009DE0;
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003b80;
}

.why-image-wrapper {
  margin-top: 0.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.why-image {
  width: 100%;
  display: block;
  height: 260px;
  object-fit: cover;
}

.why-right {
  display: flex;
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  width: 100%;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.3rem 1.4rem 1.3rem 1.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.why-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(0, 157, 224, 0.25);
  background: #e0f2fe;
  color: #009DE0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.why-icon {
  width: 22px;
  height: 22px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.why-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #003b80;
}

.why-text {
  font-size: 0.95rem;
  color: #4b5563;
}

@media (max-width: 1024px) {
  .why-section {
    padding: 3.5rem 3rem 4rem;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-right {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 3rem 1.75rem 3.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    height: 230px;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 2.5rem 1.5rem 3rem;
  }

  .why-card {
    padding: 1.2rem 1.25rem;
  }
}
/* Testimonials Section */
.testimonials-section {
  padding: 4rem 5rem 4rem;
  background: #e4f0ff;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  margin-bottom: 1.5rem;
}

.testimonials-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #009DE0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.testimonials-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316;
}

.testimonials-title {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #003b80;
}

.testimonials-content {
  position: relative;
  margin: 0 auto;
  padding: 2.6rem 3.8rem 2.9rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.testimonials-slider {
  position: relative;
  min-height: 230px;
}

.testimonial-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  position: absolute;
  inset: 0;
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonials-quote-icon {
  margin-bottom: 0.6rem;
}

.testimonials-quote-mark {
  font-size: 2.4rem;
  color: #f97316;
}

.testimonials-text {
  max-width: 780px;
  margin: 0 auto 1.7rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.testimonials-stars {
  color: #f97316;
  font-size: 1rem;
  margin-bottom: 1.6rem;
}

.testimonials-stars .bi {
  margin: 0 1px;
}

.testimonials-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.testimonials-avatar-main {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(135deg, #009DE0, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.avatar-initials {
  letter-spacing: 0.04em;
}

.testimonials-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #003b80;
}

.testimonials-role {
  font-size: 0.9rem;
  color: #6b7280;
}

.testimonials-faces {
  pointer-events: none;
}

.testimonials-face {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

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

.face-top-left    { top: 3.5rem; left: 4rem; }
.face-mid-left    { top: 52%; left: 2.2rem; transform: translateY(-50%); width: 60px; height: 60px; }
.face-bottom-left { bottom: 3rem; left: 6.2rem; }

.face-top-right    { top: 3.5rem; right: 4rem; }
.face-mid-right    { top: 52%; right: 2.2rem; transform: translateY(-50%); width: 60px; height: 60px; }
.face-bottom-right { bottom: 3rem; right: 6.2rem; }

@media (max-width: 1024px) {
  .testimonials-section {
    padding: 3.5rem 3rem 4.3rem;
  }

  .testimonials-content {
    padding: 2rem 2.4rem 2.4rem;
  }

  .face-top-left,
  .face-top-right,
  .face-mid-left,
  .face-mid-right,
  .face-bottom-left,
  .face-bottom-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 1.75rem 3.6rem;
  }

  .testimonials-title {
    font-size: 1.7rem;
  }

  .testimonials-text {
    font-size: 0.95rem;
  }
}

/* Assurance Banner Section */
.assurance-strip {
  padding: 4rem 5rem 4.5rem;
  background: #003B7F
}

.assurance-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  align-items: center;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.15) 0, transparent 55%),
              linear-gradient(115deg, #007adf 0%, #00b4ff 45%, #ff8a00 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.45);
  color: #ffffff;
}

.assurance-left {
  padding: 2.8rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.assurance-kicker {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 246, 255, 0.9);
}

.assurance-title {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.assurance-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.92);
  max-width: 430px;
}

.assurance-call {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.45);
  background: rgba(15, 23, 42, 0.12);
  text-decoration: none;
  color: #e5f4ff;
}

.assurance-call-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.25);
  color: #f97316;
}

.assurance-call-icon .bi {
  font-size: 1rem;
}

.assurance-call-copy {
  display: flex;
  flex-direction: column;
}

.assurance-call-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(226, 232, 240, 0.9);
}

.assurance-call-number {
  font-size: 0.96rem;
  font-weight: 600;
  color: #ffffff;
}

.assurance-call:hover {
  background: rgba(15, 23, 42, 0.18);
}

.assurance-right {
  position: relative;
}

.assurance-image {
  width: 100%;  
  max-width: 520px;
  border-radius: 22px;
  object-fit: cover;
  padding: 10px;
  display: block;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.40);
}

@media (max-width: 1024px) {
  .assurance-strip {
    padding: 3.5rem 3rem 4rem;
  }

  .assurance-inner {
    grid-template-columns: 1.3fr 1.1fr;
  }
}

@media (max-width: 768px) {
  .assurance-strip {
    padding: 3rem 1.75rem 3.5rem;
  }

  .assurance-inner {
    grid-template-columns: 1fr;
  }

  .assurance-right {
    display: none;
  }

  .assurance-left {
    padding: 2.4rem 2.1rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2.7rem 1.5rem 3rem;
  }

  .testimonials-content {
    padding: 1.8rem 1.6rem 2.2rem;
  }
}

/* CTA Strip Section */
.cta-strip {
  padding: 2.5rem 0 4rem;
  background: #f4f7fc;
}

.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.1fr;
  align-items: stretch;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.cta-cell {
  position: relative;
  min-height: 210px;
}

.cta-cell-image {
  overflow: hidden;
  height: 100%;
}

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

.cta-cell-primary,
.cta-cell-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 2.25rem;
}

.cta-cell-primary {
  background: #003b80;
  color: #ffffff;
}

.cta-cell-secondary {
  background: #fffbeb;
  color: #0f172a;
}

.cta-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #4fc3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-cell-secondary .cta-icon-circle {
  background: #ffffff;
  color: #009DE0;
}

.cta-icon {
  width: 26px;
  height: 26px;
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-cell-primary .cta-title {
  color: #ffffff;
}

.cta-cell-secondary .cta-title {
  color: #003b80;
}

.cta-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.1rem;
}

.cta-cell-secondary .cta-text {
  color: #4b5563;
}

.cta-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4fc3f7;
  text-decoration: none;
}

.cta-cell-secondary .cta-link {
  color: #009DE0;
}

.cta-link:hover {
  text-decoration: underline;
}

.cta-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.cta-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}

.cta-play-icon {
  width: 32px;
  height: 32px;
}

@media (max-width: 1024px) {
  .cta-strip-inner {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-cell {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .cta-strip {
    padding: 0 0 3rem;
  }

  .cta-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem 5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 6rem;
  align-items: flex-start;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 2rem;
}

.faq-kicker {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f97316;
  margin-bottom: 1rem;
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.faq-image-wrapper {
  margin-top: 1rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.faq-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.faq-right {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item-header {
  width: 100%;
  border: none;
  outline: none;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item-header.active {
  background: linear-gradient(135deg, #003b80, #0056b3);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 59, 128, 0.25);
}

.faq-item-header:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 59, 128, 0.1);
}

.faq-item-header.active:hover {
  background: linear-gradient(135deg, #0056b3, #003b80);
}

.faq-question {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.4;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1.2rem;
}

.faq-item-header.active .faq-icon {
  color: #fbbf24;
}

.faq-item-body {
  display: none;
  margin-top: 1rem;
  border-radius: 20px;
  background: #ffffff;
  padding: 2rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 59, 128, 0.1);
}

@media (max-width: 1200px) {
  .faq-section {
    padding: 3.5rem 1.5rem 4.5rem;
  }

  .faq-inner {
    gap: 3rem;
  }

  .faq-title {
    font-size: 2.4rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 3rem 1.5rem 4rem;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-left {
    position: static;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-right {
    padding: 2rem;
  }

  .faq-item-header {
    padding: 1.25rem 1.75rem;
    font-size: 0.95rem;
  }

  .faq-item-body {
    padding: 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem 4rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-image {
    height: 250px;
  }

  .faq-right {
    padding: 2rem;
  }

  .faq-item-header {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-item-body {
    padding: 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2.5rem 1rem 3rem;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-kicker {
    font-size: 1rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-image {
    height: 200px;
  }

  .faq-right {
    padding: 1.5rem;
  }

  .faq-accordion {
    gap: 1rem;
  }

  .faq-item-header {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-item-body {
    padding: 1.25rem;
    font-size: 0.9rem;
  }
}

/* Footer */
/* Footer Modern Redesign */
.site-footer {
  background: #020617;
  color: #cbd5e1;
  padding: 10rem 5rem 3rem;
  position: relative;
  z-index: 0;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 380px;
}

.footer-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 12px;
  border: none;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: none; /* Show original colors */
}

.footer-description {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #009DE0;
  border-radius: 1px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  font-size: 0.95rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-link:hover {
  color: #38bdf8;
  padding-left: 5px;
}

.footer-contact-text {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: fit-content;
  white-space: nowrap;
}

.footer-call:hover {
  background: #009DE0;
  border-color: #009DE0;
  transform: translateY(-2px);
}

.footer-call-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #009DE0;
  font-size: 1rem;
}

.footer-call-copy {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0;
}

.footer-copy {
  font-size: 0.9rem;
  color: #64748b;
}

.footer-copy a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.footer-social-link:hover {
  background: #009DE0;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 157, 224, 0.4);
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 11rem 2.5rem 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 12rem 1.75rem 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.6rem 1rem;
  }
  
  .logo-img {
    height: 36px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .logo-container {
    padding-left: 0;
  }
  
  .site-footer {
    padding: 13rem 1.25rem 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-cta-strip {
  padding: 0 5rem;
  height: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.contact-cta-inner {
  max-width: 1150px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 2rem;
  background:
    linear-gradient(115deg, rgba(0, 59, 128, 0.98) 0%, #009DE0 50%, #f97316 100%),
    url('banner_img/two.png') center/cover no-repeat;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  transform: translateY(-50%);
}

/* Ensure the last section of main has space for the overlapping card */
main > section:last-child {
  padding-bottom: 12rem !important;
}

@media (max-width: 1024px) {
  .contact-cta-strip {
    padding: 0 3rem;
  }
  
  main > section:last-child {
    padding-bottom: 13rem !important;
  }
}

@media (max-width: 768px) {
   .contact-cta-strip {
    padding: 0 1.5rem;
  }

  main > section:last-child {
    padding-bottom: 14rem !important;
  }
}

@media (max-width: 480px) {
  .contact-cta-strip {
    padding: 0 1rem;
  }

  main > section:last-child {
    padding-bottom: 15rem !important;
  }
}

.contact-cta-left {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-cta-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(226, 232, 240, 0.95);
}

.contact-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.contact-cta-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.92);
  max-width: 520px;
}

.contact-cta-right {
  display: flex;
  justify-content: flex-end;
}

.contact-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: #ffffff;
  color: #003B7F;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-cta-button:hover {
  background: #f97316;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

@media (max-width: 1024px) {
  .contact-cta-strip {
    padding: 2.2rem 3rem 2.7rem;
  }

  .contact-cta-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 768px) {
  .contact-cta-strip {
    padding: 2rem 1.75rem 2.5rem;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    padding: 1.7rem 1.8rem;
    row-gap: 1.5rem;
  }

  .contact-cta-right {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .contact-cta-strip {
    padding: 1.8rem 1.25rem 2.2rem;
  }

  .contact-cta-title {
    font-size: 1.35rem;
  }
}

/* About Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 59, 128, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Vision & Mission */
.vision-mission {
  padding: 7rem 1.5rem 8rem;
  background:
    linear-gradient(135deg, rgba(0, 59, 128, 0.65) 0%, rgba(0, 0, 0, 0.4) 100%),
    radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.12) 0, transparent 55%),
    url('banner_img/seven.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 3rem;
}

.vision-mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vm-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vm-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009DE0;
}

.vm-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.vm-card {
  background: #ffffff;
  border: 1px solid rgba(0, 59, 128, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  border-color: rgba(0, 59, 128, 0.2);
}

.vm-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003b80;
  margin: 0;
}

.vm-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.vm-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #009DE0, #4fc3f7);
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 15px 30px rgba(0, 157, 224, 0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vision-mission {
    padding: 3.2rem 1.25rem 3.5rem;
  }

  .vm-title {
    font-size: 2rem;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .vm-card {
    padding: 1.75rem 1.6rem;
  }
}

/* Why Choose Volschendorf (Short) */
.why-short {
  padding-top: 25px;
  padding-bottom: 55px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin-top: 3rem;
}

.why-short-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.why-short-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.why-short-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009DE0;
}

.why-short-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003b80;
  line-height: 1.2;
}

.why-short-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.why-short-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
  border: 1px solid rgba(0, 59, 128, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.why-short-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
  border-color: rgba(0, 59, 128, 0.2);
}

.why-short-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #009DE0, #4fc3f7);
  color: #ffffff;
  font-size: 1.4rem;
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(0, 157, 224, 0.3);
}

.why-short-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .why-short {
    padding: 4rem 1.5rem 5rem;
  }

  .why-short-title {
    font-size: 2.2rem;
  }

  .why-short-grid {
    gap: 1.5rem;
  }

  .why-short-card {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .why-short {
    padding: 3.5rem 1rem 4rem;
  }

  .why-short-title {
    font-size: 1.9rem;
  }

  .why-short-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-short-card {
    padding: 1.5rem;
  }

  .why-short-text {
    font-size: 1rem;
  }

  .why-short-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .why-short {
    padding: 3rem 1rem;
  }

  .why-short-title {
    font-size: 1.6rem;
  }

  .why-short-kicker {
    font-size: 0.85rem;
  }

  .why-short-card {
    padding: 1.25rem;
    gap: 1rem;
  }
}


/* Operational Excellence */
.ops-promise {
  padding-top: -10px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin-top: 3rem;
}

.ops-promise-inner {
  padding-top: 25px;
  padding-bottom: 65px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.ops-promise-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.ops-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009DE0;
}

.ops-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003b80;
  line-height: 1.2;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.ops-card {
  background: #ffffff;
  border: 1px solid rgba(0, 59, 128, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.ops-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
  border-color: rgba(0, 59, 128, 0.2);
}

.ops-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #009DE0, #4fc3f7);
  color: #ffffff;
  font-size: 1.4rem;
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(0, 157, 224, 0.3);
}

.ops-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ops-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
}

.ops-text {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .ops-promise {
    padding: 4rem 1.5rem 5rem;
  }

  .ops-title {
    font-size: 2.2rem;
  }

  .ops-grid {
    gap: 1.5rem;
  }

  .ops-card {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .ops-promise {
    padding: 3.5rem 1rem 4rem;
  }

  .ops-title {
    font-size: 1.9rem;
  }

  .ops-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ops-card {
    padding: 1.5rem;
  }

  .ops-heading {
    font-size: 1.2rem;
  }

  .ops-text {
    font-size: 1rem;
  }

  .ops-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .ops-promise {
    padding: 3rem 1rem;
  }

  .ops-title {
    font-size: 1.6rem;
  }

  .ops-kicker {
    font-size: 0.85rem;
  }

  .ops-card {
    padding: 1.25rem;
    gap: 1rem;
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #cbd5e1;
  font-weight: 600;
  margin: 0 0.25rem;
}

.breadcrumb-current {
  color: #fbbf24;
  font-weight: 600;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.about-hero-subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
}

.about-hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.about-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.about-hero-btn-primary {
  background: #4fc3f7;
  color: #0f172a;
  box-shadow: 0 12px 25px rgba(79, 195, 247, 0.35);
}

.about-hero-btn-primary:hover {
  background: #29b6f6;
  transform: translateY(-1px);
}

.about-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.about-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* About Content Section */
.about-content {
  padding: 6rem 2rem 4rem;
  background: #ffffff;
}


/* Contact Hero */
.contact-hero {
  position: relative;
  padding: 7rem 1.5rem 8rem;
  background: url('images/about.png') center/cover no-repeat;
  margin-top: 3rem;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 59, 128, 0.7) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.contact-hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-hero-kicker {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4fc3f7;
}

.contact-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-hero-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.contact-hero-btn-primary {
  background: #4fc3f7;
  color: #0f172a;
  box-shadow: 0 12px 24px rgba(79, 195, 247, 0.35);
}

.contact-hero-btn-primary:hover {
  background: #29b6f6;
  transform: translateY(-1px);
}

.contact-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Contact Main */
.contact-main {
  padding: 5rem 1.5rem 5.5rem;
  background: #ffffff;
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 59, 128, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.contact-info-card {
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #009DE0, #4fc3f7);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(0, 157, 224, 0.25);
}

.contact-info-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009DE0;
  margin: 0;
}

.contact-info-title {
  font-size: 1.6rem;
  margin: 0.2rem 0 0;
  color: #003b80;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.35rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #009DE0, #4fc3f7);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.contact-info-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #003b80;
  margin: 0;
}

.contact-info-text {
  margin: 0.15rem 0 0;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-social-label {
  font-weight: 700;
  color: #003b80;
}

.contact-social-row {
  display: inline-flex;
  gap: 0.6rem;
}

.contact-social-row a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  color: #009DE0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-social-row a:hover {
  background: #009DE0;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-form-card {
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-header {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.contact-form-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #003b80;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(0, 59, 128, 0.25);
}

.contact-form-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009DE0;
  margin: 0;
}

.contact-form-title {
  font-size: 1.5rem;
  margin: 0.2rem 0 0;
  color: #003b80;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 59, 128, 0.18);
  background: #f8fafc;
  font-size: 0.98rem;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #009DE0;
  box-shadow: 0 0 0 3px rgba(0, 157, 224, 0.15);
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  align-self: flex-start;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #009DE0, #003b80);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0, 59, 128, 0.2);
  transition: all 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 59, 128, 0.25);
}

.contact-submit-btn.is-loading,
.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 10px 20px rgba(0, 59, 128, 0.15);
}

/* Contact Map */
.contact-map {
  padding: 0 0 4rem;
  background: #ffffff;
}

.contact-map-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.contact-map iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}

/* Certificates Page */
.cert-hero {
  position: relative;
  padding: 7rem 1.5rem 8rem;
  background: url('images/about.png') center/cover no-repeat;
  margin-top: 3rem;
}

.cert-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 59, 128, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.cert-hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-hero-kicker {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4fc3f7;
}

.cert-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cert-hero-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.certificates-main {
  padding: 5rem 1.5rem 5.5rem;
  background: #ffffff;
}

.certificates-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cert-intro-block {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.cert-intro-text {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.cert-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.cert-feature-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 59, 128, 0.08);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.07);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.cert-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #009DE0, #4fc3f7);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.cert-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #003b80;
}

.cert-feature-text {
  font-size: 0.94rem;
  color: #4b5563;
  line-height: 1.6;
}

.cert-list-header {
  text-align: center;
  margin-top: 3rem;
}

.cert-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009DE0;
  margin-bottom: 0.6rem;
}

.cert-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #003b80;
  line-height: 1.3;
}

.cert-intro {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.7;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.cert-row-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 59, 128, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  padding: 1.6rem 1.8rem;
  align-items: center;
}

.cert-row-image img {
  width: 100%;
  max-width: 260px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.cert-row-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #003b80;
  margin-bottom: 0.4rem;
}

.cert-row-text {
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .cert-hero {
    padding: 5rem 1.25rem 6rem;
  }

  .cert-hero-title {
    font-size: 2.4rem;
  }

  .certificates-main {
    padding: 4.5rem 1.25rem 5rem;
  }

  .cert-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cert-row-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 768px) {
  .cert-hero {
    padding: 4rem 1rem 5rem;
    margin-top: 1.5rem;
  }

  .cert-hero-title {
    font-size: 2rem;
  }

  .certificates-main {
    padding: 4rem 1rem 4.5rem;
  }

  .cert-feature-row {
    grid-template-columns: 1fr;
  }

  .cert-row-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cert-hero {
    padding: 3.2rem 1rem 4.2rem;
    margin-top: 1rem;
  }

  .cert-hero-title {
    font-size: 1.7rem;
  }

  .certificates-main {
    padding: 3.5rem 1rem 4rem;
  }

  .cert-row-card {
    padding: 1.4rem 1.3rem;
  }
}

@media (max-width: 1024px) {
  .contact-hero {
    padding: 5rem 1.25rem 6rem;
  }

  .contact-hero-title {
    font-size: 2.4rem;
  }

  .contact-main {
    padding: 4.5rem 1.25rem 5rem;
  }

  .contact-main-inner {
    grid-template-columns: 1fr;
  }

  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 4rem 1rem 5rem;
    margin-top: 1.5rem;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .contact-main {
    padding: 4rem 1rem 4.5rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 3.2rem 1rem 4.2rem;
    margin-top: 1rem;
  }

  .contact-hero-title {
    font-size: 1.7rem;
  }

  .contact-main {
    padding: 3.5rem 1rem 4rem;
  }

  .contact-map iframe {
    min-height: 280px;
  }
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .about-hero {
    height: 50vh;
    min-height: 350px;
    padding: 0 1.5rem;
  }

  .about-hero-title {
    font-size: 3rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-hero-actions {
    gap: 0.6rem;
  }

  .about-content {
    padding: 4rem 1.5rem;
  }

  .about-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
    min-height: 300px;
    padding: 0 1rem;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .about-content {
    padding: 3rem 1rem;
  }

  .about-section-title {
    font-size: 1.75rem;
  }

  .about-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh;
    min-height: 280px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 0.9rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }

  .about-content {
    padding: 2.5rem 1rem;
  }

  .about-section-title {
    font-size: 1.5rem;
  }
}

.vm-icon {
  font-size: 28px;
background: linear-gradient(135deg, #4fc3f7, #009DE0);
  color: #ffffff;  margin-bottom: 12px;
}
.vm-header-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}/* 
Responsive Section Spacing */
@media (max-width: 1024px) {
  .vision-mission {
    padding: 5rem 1.5rem 6rem;
    margin-top: 2rem;
  }

  .why-short {
    padding: 5rem 1.5rem 6rem;
    margin-top: 2rem;
  }

  .ops-promise {
    padding: 5rem 1.5rem 6rem;
    margin-top: 2rem;
  }

  .about-content {
    padding: 4rem 1.5rem 3rem;
  }
}

@media (max-width: 768px) {
  .vision-mission {
    padding: 4rem 1rem 5rem;
    margin-top: 1.5rem;
  }

  .why-short {
    padding: 4rem 1rem 5rem;
    margin-top: 1.5rem;
  }

  .ops-promise {
    padding: 4rem 1rem 5rem;
    margin-top: 1.5rem;
  }

  .about-content {
    padding: 3rem 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .vision-mission {
    padding: 3rem 1rem 4rem;
    margin-top: 1rem;
  }

  .why-short {
    padding: 3rem 1rem 4rem;
    margin-top: 1rem;
  }

  .ops-promise {
    padding: 3rem 1rem 4rem;
    margin-top: 1rem;
  }

  .about-content {
    padding: 2.5rem 1rem 1.5rem;
  }
}

/* Products Hero Section */
.products-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
}

.products-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 59, 128, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.products-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.products-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.products-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Products Manufacturing Section */
.products-manufacturing {
  padding: 5rem 2rem;
  background: #f3f7fb;
}

.products-manufacturing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.products-manufacturing-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.products-title-black {
  color: #003b80;
}

.products-title-orange {
  color: #009DE0;
}

.products-manufacturing-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}

.products-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.products-stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.products-stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #009DE0;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.products-stat-label {
  font-size: 1.1rem;
  color: #003b80;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .products-hero {
    height: 50vh;
    min-height: 400px;
    padding: 0 1.5rem;
  }

  .products-hero-title {
    font-size: 2.8rem;
  }

  .products-hero-subtitle {
    font-size: 1.05rem;
  }

  .products-manufacturing {
    padding: 4rem 1.5rem;
  }

  .products-manufacturing-title {
    font-size: 2.4rem;
  }

  .products-stats-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .products-hero {
    height: 45vh;
    min-height: 350px;
    padding: 0 1rem;
  }

  .products-hero-title {
    font-size: 2.2rem;
  }

  .products-hero-subtitle {
    font-size: 1rem;
  }

  .products-manufacturing {
    padding: 3.5rem 1.25rem;
  }

  .products-manufacturing-title {
    font-size: 2rem;
    flex-direction: column;
  }

  .products-manufacturing-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .products-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .products-stat-card {
    padding: 2rem 1.5rem;
  }

  .products-stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .products-hero {
    height: 40vh;
    min-height: 300px;
  }

  .products-hero-title {
    font-size: 1.8rem;
  }

  .products-hero-subtitle {
    font-size: 0.95rem;
  }

  .products-manufacturing {
    padding: 3rem 1rem;
  }

  .products-manufacturing-title {
    font-size: 1.75rem;
  }

  .products-manufacturing-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .products-stat-number {
    font-size: 2.5rem;
  }

  .products-stat-label {
    font-size: 1rem;
  }
}

/* Products Grid Section */
.products-grid-section {
  padding: 5rem 2rem;
  background: #ffffff;
}

.products-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #003b80;
  text-align: center;
  margin-bottom: 0.75rem;
}

.products-grid-subtitle {
  font-size: 1rem;
  color: #4b5563;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .products-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns on tablets */
     gap: 1.5rem;
  }
  
  .products-grid-section {
     padding: 3rem 1.5rem; /* Reduced padding for mobile */
  }
}

@media (max-width: 480px) {
  .products-grid {
     grid-template-columns: 1fr; /* Stack vertically on small screens */
     gap: 1.5rem;
  }
  
  .product-card {
      width: 100%; /* Ensure full width */
  }
  
  .product-image {
      height: 200px; /* Reduced image height for mobile */
  }
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f3f7fb;
}

.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003b80;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-description {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: #009DE0;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 157, 224, 0.3);
  align-self: flex-start;
  margin-top: auto;
}

.product-learn-more:hover {
  background: #003b80;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 59, 128, 0.35);
}

/* Category Detail Layout (e.g., Pellet Binder page) */
.category-detail-section {
  padding: 4rem 2rem 5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.category-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
  padding: 2.5rem 2.75rem;
}

.category-detail-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #003b80;
  text-align: center;
  margin-bottom: 0.75rem;
}

.category-detail-intro {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.category-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center; /* vertically center image and content within the card */
}

.category-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-detail-product-name {
  width: 100%;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0f172a;
}

.category-detail-description {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.8;
}

.category-detail-benefits h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #003b80;
  margin-bottom: 0.5rem;
}

.category-detail-benefits ul {
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.category-detail-benefits li + li {
  margin-top: 0.2rem;
}

.category-detail-pack {
  font-size: 0.95rem;
  color: #111827;
}

.category-detail-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.category-detail-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.category-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
}

.category-detail-extra {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.category-detail-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #003b80;
  margin-bottom: 0.4rem;
}

.category-detail-column ul {
  padding-left: 1.2rem;
  font-size: 0.93rem;
  color: #4b5563;
  line-height: 1.7;
}

.category-detail-back-link {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #009DE0;
  text-decoration: none;
}

.category-detail-back-link:hover {
  color: #003b80;
  text-decoration: underline;
}

/* Image hover swap animation */
.category-image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
  background: #f3f7fb;
}

.category-image-stack img {
  width: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.category-image-main {
  position: relative;
  height: auto;
  display: block;
  opacity: 1;
  transform: scale(1);
}

.category-image-hover {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
}

.category-image-stack:hover .category-image-main {
  opacity: 0;
  transform: scale(1.05);
}

.category-image-stack:hover .category-image-hover {
  opacity: 1;
  transform: scale(1);
}

/* Small metric cards under benefits */
.category-metrics {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-metric-card {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.category-metric-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.category-metric-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

@media (max-width: 768px) {
  .category-metrics {
    grid-template-columns: 1fr;
  }
}

.category-detail-layout-multi {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.enzymes-pack-note {
  margin-top: 2.5rem;
}

/* Individual product boxes for category pages (e.g., Grainase products) */
.category-product-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.75rem 2rem;
  border-radius: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.category-product-card + .category-product-card {
  margin-top: 1.5rem;
}

/* Left accent strip per product to visually differentiate cards */
.category-product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
}

.product-grainase-p::before {
  background: linear-gradient(180deg, #0ea5e9, #22c55e);
}

.product-grainase-p5000::before {
  background: linear-gradient(180deg, #6366f1, #0ea5e9);
}

.product-grainase-xap::before {
  background: linear-gradient(180deg, #f97316, #ec4899);
}

/* Slightly tint backgrounds differently for each card */
.product-grainase-p {
  background: linear-gradient(135deg, #f0f9ff 0%, #f9fafb 40%);
}

.product-grainase-p5000 {
  background: linear-gradient(135deg, #eef2ff 0%, #f9fafb 40%);
}

.product-grainase-xap {
  background: linear-gradient(135deg, #fff7ed 0%, #f9fafb 40%);
}

/* Accent + background for PELLBIND card so it matches enzyme cards visually */
.product-pellbind::before {
  background: linear-gradient(180deg, #0ea5e9, #f97316);
}

.product-pellbind {
  background: linear-gradient(135deg, #eff6ff 0%, #f9fafb 40%);
}

@media (max-width: 768px) {
  .category-product-card {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  .products-grid-section {
    padding: 4rem 1.5rem;
  }

  .products-grid-heading {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .products-grid-section {
    padding: 3.5rem 1.25rem;
  }

   .products-grid-heading {
    font-size: 1.6rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-image {
    height: 220px;
  }

  .product-content {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .product-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .products-grid-section {
    padding: 3rem 1rem;
  }

  .product-image {
    height: 200px;
  }

  .product-content {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .product-learn-more {
    width: 100%;
    text-align: center;
  }
}

.pack-size{
  font-size: 1rem;
  font-weight: 600;
  color: #003b80;
  margin-bottom: 0.5rem;

}


.category-image-hover{
    object-fit: contain !important; 
}


 .category-image-main{
    object-fit: contain !important;
 } 

/* Blog Page Specific Styles */
.blog-hero {
  background-image: url('banner_img/three.png'); /* Fallback/Placeholder */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 180px 0 100px;
  margin-bottom: 4rem;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 59, 128, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: white;
}

.blog-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 1rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.blog-grid-section {
  padding: 0 0 5rem;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 59, 128, 0.15);
}

.blog-image-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-category {
  color: #009DE0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  background: #e0f2fe;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-link {
  color: #003b80;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 0.8rem;
  color: #009DE0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link.active, .page-link:hover {
  background: #003b80;
  color: white;
}

@media (max-width: 768px) {
  .blog-hero-title {
    font-size: 2.5rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile UI Refinements for Product Detail Pages */
@media (max-width: 768px) {
  /* Reduce excessive outer spacing */
  .category-detail-section {
    padding: 2rem 1rem 3rem;
  }

  /* Maximize width of the inner container */
  .category-detail-inner {
    padding: 1.5rem 1rem;
    width: 100%;
    border-radius: 16px;
  }

  .category-detail-intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  /* Stack product layout vertically */
  .category-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Center and scale product images */
  .category-detail-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .category-image-stack {
    max-width: 280px; /* Prevent images from being too large on mobile */
    width: 100%;
  }

  /* Adjust Product Card styling */
  .category-product-card {
    padding: 1.5rem 1rem 1.5rem 1.5rem; /* Ensure left padding clears the accent line */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
  }

  /* Align header content */
  .category-detail-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .category-detail-product-name {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  /* Improve tag visibility and wrapping */
  .category-detail-tags {
    gap: 0.5rem;
  }

  .category-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  /* Improve text readability */
  .category-detail-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Fix list spacing */
  .category-detail-benefits {
    margin-top: 0.5rem;
  }

  .category-detail-benefits ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
  }

  .category-detail-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
  }

  /* Metrics grid adjustments */
  .category-metrics {
    grid-template-columns: 1fr; /* Stack metrics vertically */
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .category-metric-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    text-align: left;
  }

  .category-metric-label {
    margin-bottom: 0;
    font-size: 0.75rem;
  }

  .category-metric-value {
    text-align: right;
    font-size: 0.9rem;
  }

  /* Ensure accent line is visible and aligned */
  .category-product-card::before {
    width: 5px;
    border-radius: 4px 0 0 4px;
  }

  /* Back link adjustments */
  .category-detail-back-link {
    display: block;
    text-align: center;
    margin-top: 2rem;
    padding: 0.8rem;
    background: #f1f5f9;
    border-radius: 8px;
  }
}

/* Error 404 Page Simple Styles */
.error-page-simple {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa; /* Light clean background */
  text-align: center;
  padding: 1rem;
}

.error-content-simple {
  max-width: 500px;
}

.error-code-simple {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: #003b80; /* Primary brand color */
  margin-bottom: 0.5rem;
}

.error-title-simple {
  font-size: 2rem;
  color: #334155;
  margin-bottom: 1rem;
}

.error-text-simple {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}/* F
loating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
  text-decoration: none;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* WhatsApp SVG Icon */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
    font-size: 26px;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 12px;
    right: 12px;
    font-size: 24px;
  }
  
  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}