/* Modern Design System for Angel Shipping Website */

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

/* Modern Color Palette */
:root {
  /* Primary Colors */
  --primary-blue: #2563eb;
  --primary-blue-dark: #1d4ed8;
  --primary-blue-light: #3b82f6;
  
  /* Secondary Colors */
  --secondary-orange: #f97316;
  --secondary-orange-dark: #ea580c;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #1e293b;
  
  /* Text Colors */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --text-white: #ffffff;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* Modern Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

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

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

/* Modern Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 2.5rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-orange);
  color: var(--text-white);
  border-color: var(--secondary-orange);
}

.btn-secondary:hover {
  background-color: var(--secondary-orange-dark);
  border-color: var(--secondary-orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--text-white);
}

/* Modern Card Styles */
.card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  overflow: hidden;
}

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

.card-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--gray-200);
  background-color: var(--bg-secondary);
}

.card-body {
  padding: var(--space-lg);
}

.card-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--gray-200);
  background-color: var(--bg-secondary);
}

/* Modern Form Styles */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--text-primary);
}

/* Modern Navigation */
.navbar-custom {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
}

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

.navbar-custom .navbar-nav > li > a {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  transition: all var(--transition-normal);
}

.navbar-custom .navbar-nav > li > a:hover {
  color: var(--primary-blue);
}

.navbar-custom .dropdown-menu {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-sm);
}

.navbar-custom .dropdown-menu > li > a {
  padding: var(--space-sm) var(--space-md);
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.navbar-custom .dropdown-menu > li > a:hover {
  background-color: var(--bg-secondary);
  color: var(--primary-blue);
}

/* Top Bar Modernization */
.top-bar {
  background-color: var(--gray-800);
  color: var(--text-white);
  padding: var(--space-sm) 0;
  font-size: 0.875rem;
}

.top-bar .contact li {
  margin-right: var(--space-lg);
}

.top-bar .contact li i {
  margin-right: var(--space-xs);
  color: var(--primary-blue);
}

.top-bar .social li a {
  color: var(--text-white);
  transition: all var(--transition-normal);
}

.top-bar .social li a:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

/* Modern Section Headings */
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange));
  margin: var(--space-md) auto;
  border-radius: var(--radius-sm);
}

/* Modern Spacing */
.section-pad {
  padding: var(--space-3xl) 0;
}

/* Modern Background Colors */
.bg-light {
  background-color: var(--bg-secondary);
}

.bg-grey {
  background-color: var(--gray-100);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .section-pad {
    padding: var(--space-2xl) 0;
  }
  
  .btn {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .section-heading {
    font-size: 1.5rem;
  }
}

/* Modern Banner/Hero Section */
.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.banner .fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner .fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(249, 115, 22, 0.6));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.banner-text h1 span {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: var(--space-sm);
}

.banner-text p {
  font-size: 1.25rem;
  color: var(--text-white);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

/* Modern Service Cards */
.service-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  height: 100%;
}

.service-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-normal);
}

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

.service-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.service-item p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* Modern About Section */
.about-section {
  background: var(--bg-secondary);
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.about-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* Modern Contact Form */
.contact-form {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form .form-group {
  margin-bottom: var(--space-lg);
}

.contact-form .form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.contact-form .btn {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
}

/* Modern Footer */
.footer-widget {
  background: var(--gray-800);
  color: var(--text-white);
}

.footer-widget h5 {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.footer-widget ul li {
  margin-bottom: var(--space-sm);
}

.footer-widget ul li a {
  color: var(--gray-300);
  transition: all var(--transition-normal);
}

.footer-widget ul li a:hover {
  color: var(--primary-blue);
}

.copyright {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-lg) 0;
}

/* Modern Statistics Section */
.stat-section {
  background: var(--primary-blue);
  color: var(--text-white);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.stat-item p {
  font-size: 1.125rem;
  color: var(--text-white);
  opacity: 0.9;
}

/* Modern Call to Action */
.call-action {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  color: var(--text-white);
  padding: var(--space-3xl) 0;
}

.call-action h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.call-action p {
  color: var(--text-white);
  opacity: 0.9;
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

/* Modern Testimonial Section */
.testimonial-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.testimonial-item p {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.testimonial-item h5 {
  color: var(--text-primary);
  font-weight: 600;
}

/* Modern Client Logos */
.client-logos {
  background: var(--bg-secondary);
  padding: var(--space-xl) 0;
}

.client-logo {
  text-align: center;
  padding: var(--space-lg);
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.client-logo img {
  max-height: 60px;
  width: auto;
}

/* Enhanced Service Page Styles */
.service-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.service-banner .banner-text {
  color: var(--text-white);
}

.service-banner .page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.service-banner .page-breadcrumb {
  color: var(--text-white);
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.service-intro {
  max-width: 600px;
  margin: 0 auto;
}

.service-intro p {
  font-size: 1.25rem;
  color: var(--text-white);
  opacity: 0.9;
}

/* Modern Service Cards */
.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.service-features {
  margin-bottom: var(--space-lg);
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-features li i {
  color: var(--success);
  margin-right: var(--space-xs);
}

.service-btn {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Why Choose Us Section */
.why-choose-us {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--gray-200);
}

.feature-box {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  height: 100%;
}

.feature-box:hover {
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.feature-box:hover .feature-icon {
  background: var(--secondary-orange);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--text-white);
}

.feature-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.feature-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Enhanced Call to Action */
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-white);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  width: 200px;
  min-width: 200px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  box-sizing: border-box;
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--primary-blue);
}

/* Enhanced Client Logos */
.cl-logo {
  background: var(--bg-secondary);
}

.logo-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-carousel img {
  max-height: 60px;
  width: auto;
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.logo-carousel img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Design for Service Page */
@media (max-width: 768px) {
  .service-banner .page-title {
    font-size: 2.5rem;
  }
  
  .service-intro p {
    font-size: 1.125rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .service-card {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .service-banner .page-title {
    font-size: 2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.25rem;
  }
}

/* Enhanced Air Freight Page Styles */
.air-freight-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.air-freight-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.air-freight-banner .banner-text {
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-xl);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.service-icon-large i {
  font-size: 3rem;
  color: var(--text-white);
}

.air-freight-banner .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.banner-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-white);
  opacity: 0.9;
}

/* Hero Image Section */
.hero-image-section {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image-section:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--space-xl);
  color: var(--text-white);
}

.overlay-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-white);
}

.overlay-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0;
}

/* Service Overview */
.service-overview {
  margin-bottom: var(--space-xl);
}

.overview-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.card-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.card-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

/* Section Titles */
.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.section-title i {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

/* Advantages Section */
.advantages-section {
  margin-bottom: var(--space-xl);
}

.advantage-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  height: 100%;
}

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

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.advantage-icon i {
  font-size: 1.5rem;
  color: var(--text-white);
}

.advantage-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.advantage-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Service Options Section */
.service-options-section {
  margin-bottom: var(--space-xl);
}

.option-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  height: 100%;
  overflow: hidden;
}

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

.option-header {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.option-header i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.option-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.option-content {
  padding: var(--space-lg);
}

.option-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.option-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.option-content li {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--space-lg);
}

.option-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Capabilities Section */
.capabilities-section {
  margin-bottom: var(--space-xl);
}

.capability-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  height: 100%;
}

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

.capability-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.capability-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.capability-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.capability-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Service CTA */
.service-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  color: var(--text-white);
  margin-top: var(--space-xl);
}

.service-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.service-cta p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Sidebar Styles */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: var(--space-lg);
  overflow: hidden;
}

.card-header {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 1px solid var(--gray-200);
}

.card-header i {
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.card-body {
  padding: var(--space-lg);
}

/* Service Links */
.service-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.service-link:hover {
  background: var(--bg-secondary);
  color: var(--primary-blue);
}

.service-link.active {
  background: var(--primary-blue);
  color: var(--text-white);
}

.service-link i {
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-top: var(--space-xs);
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-details p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.feature-item i {
  color: var(--success);
  font-size: 1.125rem;
}

.feature-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Responsive Design for Air Freight Page */
@media (max-width: 768px) {
  .air-freight-banner .page-title {
    font-size: 2.5rem;
  }
  
  .service-icon-large {
    width: 80px;
    height: 80px;
  }
  
  .service-icon-large i {
    font-size: 2rem;
  }
  
  .banner-stats {
    gap: var(--space-md);
  }
  
  .stat-item {
    min-width: 100px;
    padding: var(--space-md);
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .overview-card {
    flex-direction: column;
    text-align: center;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
  
  .overlay-content h2 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .air-freight-banner .page-title {
    font-size: 2rem;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .overlay-content h2 {
    font-size: 1.25rem;
  }
  
  .overlay-content p {
    font-size: 1rem;
  }
  
  .banner-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 200px;
  }
}

/* Additional Banner Classes for Service Pages */
.customs-clearance-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.customs-clearance-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.lcl-consolidation-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lcl-consolidation-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.ocean-freight-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ocean-freight-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.road-rail-freight-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.road-rail-freight-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.warehousing-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.warehousing-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Process Image Styling */
.process-image {
  text-align: center;
  margin-top: var(--space-lg);
}

.process-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Compact Modern Banner Design - Smaller & Professional */
.modern-banner {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 30%, #475569 70%, #64748b 100%);
    overflow: hidden;
}

/* Compact Banner for All Pages Except Index */
.compact-banner {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 30%, #475569 70%, #64748b 100%);
    overflow: hidden;
}

.compact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="compact-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.8"/><circle cx="20" cy="20" r="2" fill="rgba(37,99,235,0.15)"/><circle cx="10" cy="10" r="1.5" fill="rgba(249,115,22,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23compact-grid)"/></svg>');
    opacity: 0.7;
}

.compact-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0.8;
}

.compact-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%, 
        rgba(51, 65, 85, 0.5) 50%, 
        rgba(100, 116, 139, 0.6) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.compact-banner .banner-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.compact-banner .banner-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: text-glow 3s ease-in-out infinite alternate;
}

.compact-banner .banner-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.6;
}

.compact-banner .banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.compact-banner .banner-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 60px;
    border: none;
}

.compact-banner .banner-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.compact-banner .banner-buttons .btn:hover::before {
    left: 100%;
}

.compact-banner .banner-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    border: 2px solid transparent;
}

.compact-banner .banner-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.compact-banner .banner-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.compact-banner .banner-buttons .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 60px;
}

.compact-banner .banner-buttons .btn-outline:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.3);
}

.compact-banner .banner-buttons .btn-outline:hover::after {
    opacity: 1;
}

.compact-banner .banner-buttons .btn-outline span {
    position: relative;
    z-index: 2;
}

/* Responsive Compact Banner Design */
@media (max-width: 768px) {
    .compact-banner {
        min-height: 45vh;
    }
    
    .compact-banner .banner-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .compact-banner .banner-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .compact-banner .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .compact-banner .banner-buttons .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Enhanced Service Page Design */
.ser-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.ser-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(37,99,235,0.05)"/><circle cx="15" cy="15" r="0.5" fill="rgba(249,115,22,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23service-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 0;
}

.ser-page .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Service Cards */
.service-grid {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.service-grid .col-lg-4 {
    margin-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.service-grid .col-md-6 {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--primary-blue);
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.service-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Enhanced Why Choose Us Section */
.why-choose-us {
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.why-choose-us .section-heading {
    margin-bottom: 4rem;
}

.why-choose-us .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-us .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    border-radius: 2px;
}

.why-choose-us .section-heading p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Call to Action Section */
.call-action {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%) !important;
    position: relative;
    overflow: hidden;
    margin: 6rem 0 4rem;
}

.call-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="25" cy="25" r="2" fill="rgba(37,99,235,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.8;
}

.call-action .overly {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    width: 200px;
    min-width: 200px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

.cta-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(20px);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Enhanced Client Logo Section */
.cl-logo {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    margin: 4rem 0;
    padding: 3rem 0;
}

.logo-carousel img {
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    max-height: 60px;
    width: auto;
}

.logo-carousel img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Fix Content Cutting Issues on Service Pages */
.ser-single {
    overflow: visible !important;
}

.ser-single .container {
    overflow: visible !important;
}

.ser-single .service-wrapper {
    overflow: visible !important;
}

.ser-single .service-content {
    overflow: visible !important;
}

.ser-single .hero-image-section {
    overflow: visible !important;
}

.ser-single .service-overview {
    overflow: visible !important;
}

.ser-single .overview-card {
    overflow: visible !important;
}

.ser-single .advantages-grid {
    overflow: visible !important;
}

.ser-single .advantage-card {
    overflow: visible !important;
    min-height: auto !important;
}

.ser-single .options-grid {
    overflow: visible !important;
}

.ser-single .option-card {
    overflow: visible !important;
    min-height: auto !important;
}

.ser-single .capabilities-grid {
    overflow: visible !important;
}

.ser-single .capability-card {
    overflow: visible !important;
    min-height: auto !important;
}

/* Ensure proper spacing and prevent content cutting */
.ser-single .section-pad {
    padding: 4rem 0 !important;
}

.ser-single .service-content > * {
    margin-bottom: 2rem;
}

.ser-single .service-content > *:last-child {
    margin-bottom: 0;
}

/* Additional fixes for content visibility */
.ser-single .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ser-single .col-md-8,
.ser-single .col-md-4 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.ser-single .service-wrapper {
    margin: 0 !important;
}

.ser-single .service-content {
    padding: 0 !important;
}

/* Fix any height constraints that might cut content */
.ser-single .advantage-card,
.ser-single .option-card,
.ser-single .capability-card {
    min-height: auto !important;
    height: auto !important;
}

/* Ensure text content is fully visible */
.ser-single p,
.ser-single h1,
.ser-single h2,
.ser-single h3,
.ser-single h4,
.ser-single h5,
.ser-single h6 {
    overflow: visible !important;
    word-wrap: break-word;
    white-space: normal !important;
}

/* Specific fixes for air-freight.html text cutting */
.air-freight-banner .banner-text {
    overflow: visible !important;
    padding: 2rem 0 !important;
}

.air-freight-banner .page-title {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 1rem !important;
}

.air-freight-banner .page-breadcrumb {
    overflow: visible !important;
    white-space: normal !important;
    margin-bottom: 1rem !important;
}

.air-freight-banner .service-intro {
    overflow: visible !important;
    margin-bottom: 2rem !important;
}

.air-freight-banner .service-intro p {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

.air-freight-banner .banner-stats {
    overflow: visible !important;
    margin-top: 2rem !important;
}

.air-freight-banner .stat-item {
    overflow: visible !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    vertical-align: top !important;
}

.air-freight-banner .stat-number {
    overflow: visible !important;
    white-space: nowrap !important;
    display: block !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: white !important;
}

.air-freight-banner .stat-label {
    overflow: visible !important;
    white-space: nowrap !important;
    display: block !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 0.5rem !important;
}

/* Fix service content text cutting */
.ser-single .service-content h2,
.ser-single .service-content h3,
.ser-single .service-content h4 {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 1rem !important;
}

.ser-single .service-content p {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
}

/* Fix sidebar text cutting */
.ser-single .service-sidebar {
    overflow: visible !important;
}

.ser-single .sidebar-card {
    overflow: visible !important;
    margin-bottom: 2rem !important;
}

.ser-single .sidebar-card .card-header {
    overflow: visible !important;
    padding: 1.5rem !important;
}

.ser-single .sidebar-card .card-body {
    overflow: visible !important;
    padding: 1.5rem !important;
}

.ser-single .sidebar-card h3 {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

.ser-single .sidebar-card p {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Fix service links text */
.ser-single .service-link {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 0.8rem 0 !important;
}

.ser-single .service-link span {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Fix contact info text */
.ser-single .contact-item {
    overflow: visible !important;
    margin-bottom: 1rem !important;
}

.ser-single .contact-details {
    overflow: visible !important;
}

.ser-single .contact-details strong {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

.ser-single .contact-details p {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0.5rem 0 !important;
}

/* Fix feature list text */
.ser-single .feature-item {
    overflow: visible !important;
    margin-bottom: 0.8rem !important;
}

.ser-single .feature-item span {
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .why-choose-us .section-heading h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Mobile fixes for content cutting */
    .ser-single .section-pad {
        padding: 2rem 0 !important;
    }
    
    .ser-single .service-content > * {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile banner fixes */
    .air-freight-banner .banner-text {
        padding: 1rem 0 !important;
    }
    
    .air-freight-banner .page-title {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .air-freight-banner .page-breadcrumb {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .air-freight-banner .service-intro p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .air-freight-banner .banner-stats {
        margin-top: 1.5rem !important;
    }
    
    .air-freight-banner .stat-item {
        margin: 0 0.5rem !important;
    }
    
    .air-freight-banner .stat-number {
        font-size: 1.2rem !important;
    }
    
    .air-freight-banner .stat-label {
        font-size: 0.8rem !important;
    }
    
    /* Mobile sidebar fixes */
    .ser-single .sidebar-card .card-header {
        padding: 1rem !important;
    }
    
    .ser-single .sidebar-card .card-body {
        padding: 1rem !important;
    }
    
    .ser-single .service-link {
        padding: 0.6rem 0 !important;
    }
    
    .ser-single .contact-item {
        margin-bottom: 0.8rem !important;
    }
    
    .ser-single .feature-item {
        margin-bottom: 0.6rem !important;
    }
}

/* Expanded Banner for Service Detail Pages */
.expanded-banner {
    position: relative;
    min-height: 70vh; /* Increased height for desktop */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 30%, #475569 70%, #64748b 100%);
    overflow: hidden;
}

.expanded-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="expanded-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.8"/><circle cx="20" cy="20" r="2" fill="rgba(37,99,235,0.15)"/><circle cx="10" cy="10" r="1.5" fill="rgba(249,115,22,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23expanded-grid)"/></svg>');
    opacity: 0.7;
}

.expanded-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0.8;
}

.expanded-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%, 
        rgba(51, 65, 85, 0.5) 50%, 
        rgba(100, 116, 139, 0.6) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.expanded-banner .banner-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem; /* Adjusted padding for larger banner */
    text-align: center;
    width: 100%;
}

.expanded-banner .banner-text h1 {
    font-size: 4.5rem; /* Increased font size */
    font-weight: 900;
    color: white;
    margin-bottom: 2rem; /* Increased margin */
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: text-glow 3s ease-in-out infinite alternate;
}

.expanded-banner .banner-text p {
    font-size: 1.3rem; /* Increased font size */
    margin-bottom: 2.5rem; /* Increased margin */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.6;
}

.expanded-banner .banner-buttons {
    display: flex;
    gap: 2rem; /* Increased gap */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem; /* Increased margin */
}

.expanded-banner .banner-buttons .btn {
    padding: 1.2rem 3rem; /* Increased padding */
    font-size: 1.1rem; /* Increased font size */
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 60px;
    border: none;
}

.expanded-banner .banner-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.expanded-banner .banner-buttons .btn:hover::before {
    left: 100%;
}

.expanded-banner .banner-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    border: 2px solid transparent;
}

.expanded-banner .banner-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.expanded-banner .banner-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.expanded-banner .banner-buttons .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 60px;
}

.expanded-banner .banner-buttons .btn-outline:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.3);
}

.expanded-banner .banner-buttons .btn-outline:hover::after {
    opacity: 1;
}

.expanded-banner .banner-buttons .btn-outline span {
    position: relative;
    z-index: 2;
}

/* Responsive Expanded Banner Design */
@media (max-width: 768px) {
    .expanded-banner {
        min-height: 60vh; /* Increased mobile height */
    }
    
    .expanded-banner .banner-text h1 {
        font-size: 3rem; /* Adjusted mobile font size */
        margin-bottom: 1.5rem;
    }
    
    .expanded-banner .banner-text p {
        font-size: 1.1rem; /* Adjusted mobile font size */
        margin-bottom: 2rem;
    }
    
    .expanded-banner .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .expanded-banner .banner-buttons .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Enhanced Spacing for Service Detail Pages */
.ser-single {
    padding: 0 !important;
}

.ser-single .section-pad {
    padding: 6rem 0 !important; /* Increased from 4rem */
}

.ser-single .service-content {
    padding: 3rem 0 !important; /* Increased padding */
}

.ser-single .service-content > * {
    margin-bottom: 3rem !important; /* Increased from 2rem */
}

.ser-single .service-content > *:last-child {
    margin-bottom: 0 !important;
}

/* Enhanced spacing for service overview cards */
.ser-single .service-overview {
    margin-bottom: 4rem !important; /* Increased margin */
}

.ser-single .overview-card {
    margin-bottom: 3rem !important; /* Increased margin */
    padding: 2.5rem !important; /* Increased padding */
}

/* Enhanced spacing for advantages grid */
.ser-single .advantages-grid {
    margin-bottom: 4rem !important; /* Increased margin */
}

.ser-single .advantage-card {
    margin-bottom: 2.5rem !important; /* Increased margin */
    padding: 2.5rem !important; /* Increased padding */
}

/* Enhanced spacing for options grid */
.ser-single .options-grid {
    margin-bottom: 4rem !important; /* Increased margin */
}

.ser-single .option-card {
    margin-bottom: 2.5rem !important; /* Increased margin */
    padding: 2.5rem !important; /* Increased padding */
}

/* Enhanced spacing for capabilities grid */
.ser-single .capabilities-grid {
    margin-bottom: 4rem !important; /* Increased margin */
}

.ser-single .capability-card {
    margin-bottom: 2.5rem !important; /* Increased margin */
    padding: 2.5rem !important; /* Increased padding */
}

/* Enhanced spacing for sidebar */
.ser-single .service-sidebar {
    padding-top: 2rem !important; /* Added padding */
}

.ser-single .sidebar-card {
    margin-bottom: 3rem !important; /* Increased from 2rem */
    padding: 2.5rem !important; /* Increased padding */
}

.ser-single .sidebar-card .card-header {
    padding: 2rem !important; /* Increased padding */
    margin-bottom: 1.5rem !important; /* Added margin */
}

.ser-single .sidebar-card .card-body {
    padding: 2rem !important; /* Increased padding */
}

/* Enhanced spacing for headings */
.ser-single .service-content h2 {
    margin-bottom: 2rem !important; /* Increased margin */
    margin-top: 3rem !important; /* Added top margin */
}

.ser-single .service-content h3 {
    margin-bottom: 1.5rem !important; /* Increased margin */
    margin-top: 2.5rem !important; /* Added top margin */
}

.ser-single .service-content h4 {
    margin-bottom: 1.5rem !important; /* Increased margin */
    margin-top: 2rem !important; /* Added top margin */
}

/* Enhanced spacing for paragraphs */
.ser-single .service-content p {
    margin-bottom: 1.5rem !important; /* Increased margin */
    line-height: 1.8 !important; /* Increased line height */
}

/* Enhanced spacing for lists */
.ser-single .service-content ul,
.ser-single .service-content ol {
    margin-bottom: 2rem !important; /* Increased margin */
    padding-left: 2rem !important; /* Increased padding */
}

.ser-single .service-content li {
    margin-bottom: 0.8rem !important; /* Increased margin */
    line-height: 1.7 !important; /* Increased line height */
}

/* Enhanced spacing for service links */
.ser-single .service-link {
    padding: 1.2rem 0 !important; /* Increased padding */
    margin-bottom: 1rem !important; /* Added margin */
}

/* Enhanced spacing for contact items */
.ser-single .contact-item {
    margin-bottom: 1.5rem !important; /* Increased margin */
}

.ser-single .contact-details {
    padding: 1rem 0 !important; /* Added padding */
}

/* Enhanced spacing for feature items */
.ser-single .feature-item {
    margin-bottom: 1.2rem !important; /* Increased margin */
    padding: 0.5rem 0 !important; /* Added padding */
}

/* Enhanced spacing for banner content */
.expanded-banner .banner-content {
    padding: 4rem 2rem !important; /* Increased padding */
}

.expanded-banner .banner-text h1 {
    margin-bottom: 2.5rem !important; /* Increased margin */
}

.expanded-banner .banner-text p {
    margin-bottom: 3rem !important; /* Increased margin */
}

.expanded-banner .banner-buttons {
    margin-top: 3rem !important; /* Increased margin */
}

/* Enhanced spacing for service intro */
.ser-single .service-intro {
    margin-bottom: 3rem !important; /* Increased margin */
    padding: 2rem 0 !important; /* Added padding */
}

.ser-single .service-intro p {
    margin-bottom: 2rem !important; /* Increased margin */
    font-size: 1.2rem !important; /* Increased font size */
    line-height: 1.8 !important; /* Increased line height */
}

/* Enhanced spacing for banner stats */
.ser-single .banner-stats {
    margin-top: 3rem !important; /* Increased margin */
    padding: 2rem 0 !important; /* Added padding */
}

.ser-single .stat-item {
    margin: 0 1.5rem !important; /* Increased margin */
    padding: 1rem 0 !important; /* Added padding */
}

/* Enhanced spacing for grid containers */
.ser-single .row {
    margin-bottom: 3rem !important; /* Increased margin */
}

.ser-single .col-md-8,
.ser-single .col-md-4 {
    padding-left: 20px !important; /* Increased padding */
    padding-right: 20px !important; /* Increased padding */
}

/* Enhanced spacing for service wrapper */
.ser-single .service-wrapper {
    margin: 2rem 0 !important; /* Increased margin */
    padding: 2rem 0 !important; /* Added padding */
}

/* Enhanced spacing for call-to-action sections */
.ser-single .call-action {
    margin: 4rem 0 !important; /* Increased margin */
    padding: 4rem 0 !important; /* Increased padding */
}

/* Enhanced spacing for client logo sections */
.ser-single .cl-logo {
    margin: 3rem 0 !important; /* Increased margin */
    padding: 3rem 0 !important; /* Increased padding */
}

/* Responsive spacing adjustments for service detail pages */
@media (max-width: 768px) {
    .ser-single .section-pad {
        padding: 4rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .service-content {
        padding: 2rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .service-content > * {
        margin-bottom: 2rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .overview-card,
    .ser-single .advantage-card,
    .ser-single .option-card,
    .ser-single .capability-card {
        padding: 2rem !important; /* Adjusted mobile padding */
        margin-bottom: 2rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .sidebar-card {
        padding: 2rem !important; /* Adjusted mobile padding */
        margin-bottom: 2rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .sidebar-card .card-header,
    .ser-single .sidebar-card .card-body {
        padding: 1.5rem !important; /* Adjusted mobile padding */
    }
    
    .ser-single .service-content h2 {
        margin-bottom: 1.5rem !important; /* Adjusted mobile margin */
        margin-top: 2rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .service-content h3 {
        margin-bottom: 1rem !important; /* Adjusted mobile margin */
        margin-top: 1.5rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .service-content h4 {
        margin-bottom: 1rem !important; /* Adjusted mobile margin */
        margin-top: 1.5rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .service-content p {
        margin-bottom: 1.2rem !important; /* Adjusted mobile margin */
        line-height: 1.7 !important; /* Adjusted mobile line height */
    }
    
    .ser-single .service-content ul,
    .ser-single .service-content ol {
        margin-bottom: 1.5rem !important; /* Adjusted mobile margin */
        padding-left: 1.5rem !important; /* Adjusted mobile padding */
    }
    
    .ser-single .service-content li {
        margin-bottom: 0.6rem !important; /* Adjusted mobile margin */
        line-height: 1.6 !important; /* Adjusted mobile line height */
    }
    
    .ser-single .service-link {
        padding: 1rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .contact-item {
        margin-bottom: 1.2rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .feature-item {
        margin-bottom: 1rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .service-intro {
        margin-bottom: 2rem !important; /* Adjusted mobile margin */
        padding: 1.5rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .service-intro p {
        margin-bottom: 1.5rem !important; /* Adjusted mobile margin */
        font-size: 1.1rem !important; /* Adjusted mobile font size */
    }
    
    .ser-single .banner-stats {
        margin-top: 2rem !important; /* Adjusted mobile margin */
        padding: 1.5rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .stat-item {
        margin: 0 1rem !important; /* Adjusted mobile margin */
        padding: 0.8rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .row {
        margin-bottom: 2rem !important; /* Adjusted mobile margin */
    }
    
    .ser-single .col-md-8,
    .ser-single .col-md-4 {
        padding-left: 15px !important; /* Adjusted mobile padding */
        padding-right: 15px !important; /* Adjusted mobile padding */
    }
    
    .ser-single .service-wrapper {
        margin: 1.5rem 0 !important; /* Adjusted mobile margin */
        padding: 1.5rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .call-action {
        margin: 3rem 0 !important; /* Adjusted mobile margin */
        padding: 3rem 0 !important; /* Adjusted mobile padding */
    }
    
    .ser-single .cl-logo {
        margin: 2rem 0 !important; /* Adjusted mobile margin */
        padding: 2rem 0 !important; /* Adjusted mobile padding */
    }
}

.modern-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modern-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.8"/><circle cx="20" cy="20" r="2" fill="rgba(37,99,235,0.15)"/><circle cx="10" cy="10" r="1.5" fill="rgba(249,115,22,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23modern-grid)"/></svg>');
    opacity: 0.7;
}

.modern-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0.8;
}

.modern-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%, 
        rgba(51, 65, 85, 0.5) 50%, 
        rgba(100, 116, 139, 0.6) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.modern-banner .banner-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.banner-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 60px;
    border: none;
}

.banner-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.banner-buttons .btn:hover::before {
    left: 100%;
}

.banner-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    border: 2px solid transparent;
}

.banner-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.banner-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.banner-buttons .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 60px;
}

.banner-buttons .btn-outline:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.3);
}

.banner-buttons .btn-outline:hover::after {
    opacity: 1;
}

.banner-buttons .btn-outline span {
    position: relative;
    z-index: 2;
}

/* Responsive Banner Design */
@media (max-width: 768px) {
    .modern-banner {
        min-height: 45vh;
    }
    
    .banner-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .banner-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .banner-buttons .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Enhanced Modern Tabs with Better Design */
.modern-tabs {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(37,99,235,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.modern-tabs .nav-tabs {
    border: none;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.modern-tabs .nav-tabs > li {
    margin-bottom: 0;
    flex: 1;
}

.modern-tabs .nav-tabs > li > a {
    border: none;
    border-radius: 20px;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 140px;
    justify-content: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modern-tabs .nav-tabs > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.modern-tabs .nav-tabs > li > a:hover {
    transform: translateY(-10px) scale(1.03);
    color: white;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
    border-color: rgba(37, 99, 235, 0.3);
}

.modern-tabs .nav-tabs > li > a:hover::before {
    opacity: 1;
}

.modern-tabs .nav-tabs > li.active > a {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    color: white;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.modern-tabs .nav-tabs > li.active > a::before {
    opacity: 1;
}

.tab-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.modern-tabs .nav-tabs > li > a:hover .tab-icon {
    transform: scale(1.3) rotate(10deg);
}

.modern-tabs .nav-tabs > li.active .tab-icon {
    transform: scale(1.1);
}

.tab-content-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.tab-content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tab-icon-large {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: bounce 3s ease-in-out infinite;
    display: block;
    text-align: center;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.tab-content-card h4 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-content-card p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-content-card .btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border: none;
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.tab-content-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tab-content-card .btn:hover::before {
    left: 100%;
}

.tab-content-card .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
}

/* Enhanced Section Badge with Attractive Design */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Enhanced About Section Design */
.about-text {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.about-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.about-text .section-heading {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.about-text .focus-text {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Enhanced About Features */
.about-features {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.08) 0%, 
        rgba(249, 115, 22, 0.08) 50%, 
        rgba(37, 99, 235, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.4);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    color: var(--success);
    font-size: 2.2rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(15deg);
    color: var(--primary-blue);
    filter: drop-shadow(0 6px 20px rgba(37, 99, 235, 0.4));
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item:hover span {
    color: var(--primary-blue);
    transform: translateX(3px);
}

.about-text .btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border: none;
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.about-text .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.about-text .btn:hover::before {
    left: 100%;
}

.about-text .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
}

/* Enhanced About Us Page Styles */
.modern-about {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.modern-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(37,99,235,0.05)"/><circle cx="5" cy="5" r="0.5" fill="rgba(249,115,22,0.05)"/><circle cx="15" cy="15" r="0.5" fill="rgba(37,99,235,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.modern-about .about-wrapper {
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.95) 0%, 
        rgba(249, 115, 22, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 280px;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.about-image-wrapper:hover .image-overlay {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.overlay-content {
    text-align: center;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Enhanced Why Choose Us Section */
.modern-choose-us {
    background: linear-gradient(135deg, white 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.modern-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="choose-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="0.5"/><circle cx="15" cy="15" r="2" fill="rgba(249,115,22,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23choose-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.modern-choose-us .service-des-holder {
    position: relative;
    z-index: 2;
}

.modern-choose-us .service-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
}

.modern-choose-us .service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 20s linear infinite;
}

.modern-choose-us .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.modern-choose-us .service-card:hover::before {
    opacity: 1;
}

.modern-choose-us .icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.modern-choose-us .icon-wrapper i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    display: block;
    text-align: center;
}

.modern-choose-us .service-card:hover .icon-wrapper i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 25px rgba(37, 99, 235, 0.3));
}

.modern-choose-us .service-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.modern-choose-us .service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Enhanced Image Card */
.modern-image-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.modern-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

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

.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.image-badge i {
    margin-right: 0.5rem;
}

/* Enhanced Client Logos */
.modern-clients {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.modern-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="client-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(37,99,235,0.03)"/><circle cx="6" cy="6" r="0.5" fill="rgba(249,115,22,0.03)"/><circle cx="19" cy="19" r="0.5" fill="rgba(37,99,235,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23client-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.modern-clients .section-badge,
.modern-clients .section-heading,
.modern-clients p {
    position: relative;
    z-index: 2;
}

.client-logo {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.client-logo img {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Enhanced Section Spacing and Visual Hierarchy */
.section-pad {
    padding: 6rem 0;
}

.modern-about {
    padding: 8rem 0;
}

.modern-choose-us {
    padding: 8rem 0;
}

.modern-cta {
    padding: 8rem 0;
}

.modern-clients {
    padding: 6rem 0;
}

/* Enhanced About Us Page Layout */
.modern-about .about-wrapper {
    margin-bottom: 6rem;
    align-items: center;
}

.modern-about .about-text {
    margin-top: 0;
    padding-left: 2rem;
}

.modern-choose-us .service-des-holder {
    margin-bottom: 4rem;
}

.modern-choose-us .service-wrapper {
    margin-top: 4rem;
}

.modern-choose-us .ser-col {
    margin-bottom: 3rem;
}

/* Enhanced Visual Hierarchy */
.modern-about .section-heading {
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 1.1;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-choose-us .section-heading {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.modern-clients .section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 800;
}

.modern-clients p {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Enhanced Section Badges */
.modern-about .section-badge,
.modern-choose-us .section-badge,
.modern-clients .section-badge {
    margin-bottom: 2.5rem;
    display: inline-block;
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
}

/* Enhanced About Features Layout */
.modern-about .about-features {
    margin: 4rem 0;
    gap: 2.5rem;
}

.modern-about .feature-item {
    padding: 2.5rem;
    margin-bottom: 0;
}

/* Enhanced Service Card Layout */
.modern-choose-us .service-card {
    margin-bottom: 3rem;
    min-height: 320px;
    padding: 3rem 2.5rem;
}

.modern-choose-us .service-card h4 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.modern-choose-us .service-card p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Enhanced Image Layout */
.modern-image-card {
    margin-top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-badge {
    top: 3rem;
    right: 3rem;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}

/* Enhanced Client Logo Layout */
.client-logo {
    margin: 2rem;
    padding: 3rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced About Text Layout */
.modern-about .about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.modern-about .about-text .btn {
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .section-pad {
        padding: 4rem 0;
    }
    
    .modern-about,
    .modern-choose-us,
    .modern-cta {
        padding: 5rem 0;
    }
    
    .modern-about .section-heading {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .modern-choose-us .section-heading,
    .modern-clients .section-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .modern-about .about-text {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .modern-about .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .modern-choose-us .service-card {
        min-height: auto;
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .image-overlay {
        bottom: 1rem;
        right: 1rem;
        max-width: 200px;
        padding: 1.5rem;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content h4 {
        font-size: 1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
    
    .footer-widget {
        padding: 4rem 0 3rem;
    }
    
    .footer-widget .footer-col {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .client-logo {
        margin: 1rem;
        padding: 2rem;
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .modern-about .section-heading {
        font-size: 1.8rem;
    }
    
    .modern-choose-us .section-heading,
    .modern-clients .section-heading {
        font-size: 1.6rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-item i {
        font-size: 2rem;
        width: auto;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .image-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* Enhanced Modern Services with Attractive Design */
.modern-services {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.modern-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,6 18,14 10,18 2,14 2,6" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.5;
}

.modern-services .service-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.modern-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.05) 0%, 
        rgba(249, 115, 22, 0.05) 50%, 
        rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-services .service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.2);
}

.modern-services .service-card:hover::before {
    opacity: 1;
}

.modern-services .service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.modern-services .service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modern-services .service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
}

.modern-services .service-card:hover .service-icon::before {
    opacity: 0.3;
}

.modern-services .service-card h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.modern-services .service-card:hover h4 {
    color: var(--primary-blue);
}

.modern-services .service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.modern-services .service-card:hover p {
    color: var(--text-primary);
}

/* Modern CTA */
.modern-cta .cta-content {
    padding: 4rem 0;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    width: 200px;
    min-width: 200px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Modern Quote */
.modern-quote {
    background: var(--gray-50);
}

.quote-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-card .form-control {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.quote-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.quote-card .btn-primary {
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quote-card .btn-primary:hover {
    background: transparent;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Completely Redesigned Statistics Section */
.modern-stats {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.modern-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(37, 99, 235, 0.3) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.modern-stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="6" cy="6" r="0.8" fill="rgba(37,99,235,0.2)"/><circle cx="19" cy="19" r="0.8" fill="rgba(249,115,22,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.4;
    animation: twinkle 15s ease-in-out infinite;
    z-index: 2;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.modern-stats .stat-wrapper {
    position: relative;
    z-index: 3;
}

.modern-stats .stat-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.modern-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.1) 0%, 
        rgba(249, 115, 22, 0.1) 50%, 
        rgba(37, 99, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-stats .stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 20s linear infinite;
}

.modern-stats .stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.4);
    border-color: rgba(37, 99, 235, 0.5);
}

.modern-stats .stat-card:hover::before {
    opacity: 1;
}

.modern-stats .stat-card:hover::after {
    opacity: 1;
}

.stat-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    text-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
}

.modern-stats .stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(15deg);
    color: var(--secondary-orange);
    filter: drop-shadow(0 8px 25px rgba(249, 115, 22, 0.4));
}

.stat-top {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.modern-stats .stat-card:hover .stat-top {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-stats .stat-card p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-stats .stat-card:hover p {
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Enhanced Statistics Section Responsive Design */
@media (max-width: 768px) {
    .modern-stats {
        padding: 4rem 0;
    }
    
    .modern-stats .stat-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-top {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .modern-stats .stat-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .modern-stats {
        padding: 3rem 0;
    }
    
    .modern-stats .stat-card {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-top {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .modern-stats .stat-card p {
        font-size: 1rem;
    }
}

/* Modern Clients */
.modern-clients {
    background: white;
}

.modern-clients .logo-carousel img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.modern-clients .logo-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Additional Attractive Effects */
.modern-services .service-wrapper {
    position: relative;
    z-index: 2;
}

.modern-services .service-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Enhanced Quote Section */
.modern-quote {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.modern-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0,20 Q10,0 20,20 T40,20" fill="none" stroke="rgba(37,99,235,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.5;
}

.quote-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

/* Enhanced CTA Section */
.modern-cta {
    position: relative;
    overflow: hidden;
}

.modern-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    opacity: 0.3;
    animation: float-pattern 20s ease-in-out infinite;
}

@keyframes float-pattern {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Clients Section */
.modern-clients {
    background: linear-gradient(135deg, white 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.modern-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-small" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.5" fill="rgba(37,99,235,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-small)"/></svg>');
    opacity: 0.5;
}

.modern-clients .logo-carousel {
    position: relative;
    z-index: 2;
}

.modern-clients .logo-carousel img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 10px;
    padding: 1rem;
}

.modern-clients .logo-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for enhanced index page */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 2.5rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.875rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .modern-tabs .nav-tabs > li > a {
        min-height: 100px;
        padding: 1rem;
        margin-right: 0.5rem;
    }
    
    .tab-icon {
        font-size: 1.5rem;
    }
    
    .tab-icon-large {
        font-size: 3rem;
    }
    
    .modern-services .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .modern-services .service-card {
        padding: 2rem 1.5rem;
    }
    
    .modern-stats .stat-card {
        margin-bottom: 1rem;
        padding: 2rem 1rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-top {
        font-size: 2.5rem;
    }
    
    .quote-card {
        padding: 2rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .banner-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .modern-tabs .nav-tabs > li > a {
        min-height: 80px;
        padding: 0.75rem;
    }
    
    .tab-icon {
        font-size: 1.2rem;
    }
    
    .modern-services .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .modern-services .service-card {
        padding: 1.5rem 1rem;
    }
    
    .modern-stats .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-top {
        font-size: 2rem;
    }
}

/* Enhanced Modern Clients Section */
.modern-clients {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.modern-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-small" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(37,99,235,0.08)"/><circle cx="5" cy="5" r="0.5" fill="rgba(249,115,22,0.05)"/><circle cx="15" cy="15" r="0.5" fill="rgba(37,99,235,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-small)"/></svg>');
    opacity: 0.6;
    animation: float-pattern 25s ease-in-out infinite;
}

.modern-clients .logo-carousel {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.modern-clients .logo-carousel img {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modern-clients .logo-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

/* Brand New Modern Footer Design - Clean & Professional */
.footer-widget {
    background: #0f172a;
    position: relative;
    padding: 5rem 0 3rem;
    margin-top: 5rem;
}

.footer-widget .widget-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-widget .widget-container .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.footer-widget .footer-col {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    min-height: auto;
}

.footer-widget .heading-col {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-widget .heading-col::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

.footer-widget .bottom-des {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-widget .bottom-des p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-widget .bottom-des a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-widget .bottom-des a:hover {
    color: var(--secondary-orange);
}

.footer-widget .bottom-des ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget .bottom-des ul li {
    margin-bottom: 0.8rem;
}

.footer-widget .bottom-des ul li a {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.footer-widget .bottom-des ul li a:hover {
    color: var(--primary-blue);
}

.footer-widget .contact-des li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.footer-widget .contact-des i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-widget .contact-des span {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-widget .contact-des a {
    color: var(--primary-blue);
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-widget .contact-des a:hover {
    color: var(--secondary-orange);
}

/* Clean Copyright Section */
.copyright {
    background: #020617;
    padding: 2rem 0;
    border-top: 1px solid #1e293b;
}

.copyright .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
}

.copyright .social {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.copyright .social li {
    margin: 0;
}

.copyright .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1e293b;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.copyright .social a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive Footer Design */
@media (max-width: 1200px) {
    .footer-widget .widget-container .row {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-widget {
        padding: 4rem 0 2rem;
        margin-top: 4rem;
    }
    
    .footer-widget .widget-container {
        padding: 0 1.5rem;
    }
    
    .footer-widget .widget-container .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-widget .heading-col {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-widget .bottom-des {
        font-size: 0.85rem;
    }
    
    .footer-widget .bottom-des p {
        font-size: 0.85rem;
    }
    
    .footer-widget .bottom-des a {
        font-size: 0.85rem;
    }
    
    .footer-widget .bottom-des ul li a {
        font-size: 0.85rem;
    }
    
    .footer-widget .contact-des li {
        margin-bottom: 0.8rem;
        gap: 0.6rem;
    }
    
    .footer-widget .contact-des i {
        font-size: 0.9rem;
        width: 14px;
    }
    
    .footer-widget .contact-des span {
        font-size: 0.85rem;
    }
    
    .copyright {
        padding: 1.5rem 0;
    }
    
    .copyright .container {
        padding: 0 1.5rem;
    }
    
    .copyright .social {
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .copyright span {
        text-align: center;
        display: block;
        font-size: 0.85rem;
    }
}

/* Enhanced Copyright Section */
.copyright {
    background: linear-gradient(135deg, var(--gray-900) 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="copyright-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.8" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23copyright-pattern)"/></svg>');
    opacity: 0.6;
}

.copyright .container {
    position: relative;
    z-index: 2;
}

.copyright span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.copyright .social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.copyright .social li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.copyright .social li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copyright .social li a:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.copyright .social li a:hover::before {
    opacity: 1;
}

.copyright .social li a i {
    position: relative;
    z-index: 2;
}

/* Enhanced Quote Form Section */
.modern-quote {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.modern-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0,20 Q10,0 20,20 T40,20" fill="none" stroke="rgba(37,99,235,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.5;
}

.quote-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.quote-card .form-control {
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.quote-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    background: white;
    transform: translateY(-2px);
}

.quote-card .area-from {
    min-height: 120px;
    resize: vertical;
}

.quote-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.quote-card .btn-primary:hover::before {
    left: 100%;
}

.quote-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
}

/* Enhanced Section Separators */
.section-pad {
    position: relative;
}

.section-pad::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 2px;
    opacity: 0.3;
}

/* Enhanced Image Wrapper */
.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.img-wrapper img {
    transition: all 0.5s ease;
    border-radius: 20px;
}

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

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.img-wrapper:hover::before {
    opacity: 1;
}
